aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/extension
Commit message (Collapse)AuthorAgeFilesLines
...
* [feature/extension-manager] Use an incremental process for enable and purgeNils Adermann2011-09-293-18/+128
| | | | | | | | | | | The enable or purge operation of an extension could take a long time if an expensive operation needs to be executed on a large set of data. To allow this to succeed from a web interface with max_execution_time set in the webserver's php configuration, subsequent requests must continue the operation started earlier. So individual enable and purge implementations must be able to spread their work across multiple steps. PHPBB3-10323
* [feature/extension-manager] Add missing sql_freeresult callNils Adermann2011-09-291-0/+1
| | | | PHPBB3-10323
* [feature/extension-manager] Add filename prefix matching in extension finderNils Adermann2011-09-291-5/+42
| | | | PHPBB3-10323
* [feature/extension-manager] Never cache extension finder queries in debug modeNils Adermann2011-09-291-1/+1
| | | | | | | During development the detection of files should happen immediately and performance is less of a concern. PHPBB3-10323
* [feature/extension-manager] Extension Manager & FinderNils Adermann2011-09-294-0/+609
Extensions RFC: http://area51.phpbb.com/phpBB/viewtopic.php?f=84&t=41499 Ticket: http://tracker.phpbb.com/browse/PHPBB3-10323 PHPBB3-10323