aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_extensions.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/15871] Add $php_ini to the class properties listrxu2018-11-151-0/+1
| | | | PHPBB3-15871
* [ticket/15871] Use php_ini servicerxu2018-11-111-2/+5
| | | | PHPBB3-15871
* [ticket/15871] Fix PHP 7.1+ warning in ACR extensions modulerxu2018-11-111-1/+1
| | | | PHPBB3-15871
* Merge branch '3.1.x' into 3.2.xMarc Alexander2017-05-021-0/+9
|\
| * [ticket/15187] Use $this->template propertykasimi2017-04-291-1/+1
| |
| * [ticket/15187] Add ACP style after enabling an extensionkasimi2017-04-291-0/+9
| |
| * Merge pull request #4581 from javiexin/ticket/14919Marc Alexander2017-04-161-62/+62
| |\ | | | | | | | | | [ticket/14919] Do not directly use globals in acp_extensions
| | * [ticket/14919] Do not directly use globals in acp_extensionsjaviexin2016-12-251-1/+1
| | | | | | | | | | | | | | | | | | Declare all used variables (u_action, tpl_name, page_title). Fix typo. PHPBB3-14919
| | * [ticket/14919] Do not directly use globals in acp_extensionsjaviexin2016-12-191-0/+1
| | | | | | | | | | | | | | | | | | Declare all used variables (u_action, tpl_name, page_title). PHPBB3-14919
| | * [ticket/14919] Do not directly use globals in acp_extensionsjaviexin2016-12-171-66/+65
| | | | | | | | | | | | PHPBB3-14919
* | | [ticket/15011] Use exception interface for 3.2javiexin2017-04-211-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Update the mentioned ticket to 3.2 by using exception_inteface instead of the actual exception class. Also, use adm_back_link consistently. PHPBB3-15011
* | | Merge pull request #4698 from javiexin/ticket/15087Marc Alexander2017-04-161-70/+105
|\ \ \ | | | | | | | | | | | | [ticket/15087] Optimize creation of metadata objects by caching
| * | | [ticket/15087] Optimize creation of metadata objects by cachingjaviexin2017-02-121-4/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Caching is done in ext_manager, and metadata_manager is further simplified by reducing the number of parameters needed. Also, move template output function from metadata_manager to acp_extensions, where it belongs. PHPBB3-15087
| * | | [ticket/15087] Optimize creation of metadata objects by cachingjaviexin2017-02-121-73/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Code for [ticket/14919] Do not directly use globals in acp_extensions for phpbb 3.2. PHPBB3-15087
* | | | [ticket/15142] Merge branch 'ticket/15142' into 32xMatt Friedman2017-04-101-4/+1
|\ \ \ \ | | |/ / | |/| | | | | | PHPBB3-15142
| * | | [ticket/15142] Check extension updates on current branchMatt Friedman2017-03-241-6/+3
| | | | | | | | | | | | | | | | PHPBB3-15142
* | | | [ticket/15135] Correctly pass exception arguments and add back link againMarc Alexander2017-03-231-2/+3
| | | | | | | | | | | | | | | | PHPBB3-15135
* | | | [ticket/15135] Parse language files in acp_extensions instead of md managerMarc Alexander2017-03-191-1/+2
| | | | | | | | | | | | | | | | PHPBB3-15135
* | | | Merge pull request #4711 from javiexin/ticket/15102Tristan Darricau2017-03-191-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/15102] Missing parameter calling version_check * github.com:phpbb/phpbb: [ticket/15102] Missing parameter calling version_check
| * | | | [ticket/15102] Missing parameter calling version_checkjaviexin2017-02-241-1/+1
| | |/ / | |/| | | | | | | | | | PHPBB3-15102
* | | | Merge branch '3.1.x' into 3.2.xMarc Alexander2017-03-191-15/+47
|\ \ \ \ | | |/ / | |/| |
| * | | Merge pull request #4578 from javiexin/ticket/14849Marc Alexander2017-03-191-15/+47
| |\ \ \ | | | | | | | | | | | | | | | [ticket/14849] Add core.acp_extensions_run_action
| | * | | [ticket/14849] Add core.acp_extensions_run_actionjaviexin2017-02-191-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename event to core.acp_extensions_run_action_before PHPBB-14849
| | * | | [ticket/14849] Add core.acp_extensions_run_actionjaviexin2016-12-301-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moved the event to a slightly modified position. Added an extra variable to the event. Additional event to be run after the execution of the action in ACP. Added a new action to allow for extension execution control. PHPBB-14849
| | * | | [ticket/14849] Add core.acp_extensions_run_action_afterjaviexin2016-12-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additional event to be run after the execution of the action in ACP. Adding missing var as input to event. PHPBB-14849
| | * | | [ticket/14849] Add core.acp_extensions_run_action_afterjaviexin2016-12-161-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additional event to be run after the execution of the action in ACP PHPBB-14849
| | * | | [ticket/14849] Add core.acp_extensions_run_actionjaviexin2016-12-111-9/+21
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moved the event to a slightly modified position to perform common checks before calling the event, added an extra variable to allow execution control, honor the extension modified value of u_action (if any) PHPBB-14849
* | | | Merge branch '3.1.x' into 3.2.xMarc Alexander2017-03-191-10/+8
|\ \ \ \ | |/ / / | | | / | |_|/ |/| |
| * | [ticket/15011] All errors on metadata throw exceptionsjaviexin2017-02-151-10/+8
| |/ | | | | | | | | | | | | | | | | There is inconsistency in the way error are treated in metadata_manager. Some method return false on error, others throw exception. With this, the usage is homogeneus, and the uses of these are also adapted. Using same ticket as it is the same issue, solved in a different way. PHPBB3-15011
* | [ticket/14901] Remove notice for extension without version checkDerky2016-12-091-16/+24
| | | | | | | | | | | | | | Extensions without version check should not display a notice on the details page in the ACP. PHPBB3-14901
* | [ticket/14900] Do not state missing cached version check means ext is invalidMarc Alexander2016-12-081-1/+5
| | | | | | | | | | | | Also fixed typo in code that was looming there for a while. PHPBB3-14900
* | [ticket/12610] Correctly handle empty cacheTristan Darricau2016-12-031-4/+5
| | | | | | | | PHPBB3-12610
* | [ticket/12610] Ignor exception due to the version check in extensions listTristan Darricau2016-12-031-5/+12
| | | | | | | | PHPBB3-12610
* | [ticket/12610] Skip extensions with no update infoTristan Darricau2016-12-031-15/+36
| | | | | | | | PHPBB3-12610
* | [ticket/12610] Use exception_interfaceTristan Darricau2016-12-031-6/+10
| | | | | | | | PHPBB3-12610
* | [ticket/12610] Add command to check if the board is up to date.Etienne Baroux2016-12-031-37/+9
| | | | | | | | PHPBB3-12610
* | Merge branch '3.1.x' into 3.2.xMarc Alexander2016-11-161-1/+17
|\ \ | |/
| * [ticket/14849] Add core.acp_extensions_run_actionJakub Senko2016-11-131-1/+17
| | | | | | | | PHPBB3-14849
* | Merge branch '3.1.x'Marc Alexander2016-01-121-1/+1
|\ \ | |/
| * Merge pull request #3929 from kilianr/ticket/12618Marc Alexander2016-01-121-1/+1
| |\ | | | | | | | | | [ticket/12618] Allow extension author to use SSL for version-check.
| | * [ticket/12618] Minor fix: Don't cast bool to int anymoreKilian2015-09-291-1/+1
| | | | | | | | | | | | PHPBB3-12618
| | * [ticket/12618] Allow extension author to use SSL for version-checkKilian2015-09-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | For version-check a new parameter 'ssl' is introduced. If set to true, it will use 443 as port for the file_downloader. In file_downloader, the host parameter of fsockopen is appended with 'ssl://' in case the port is 443 in order to use SSL. PHPBB3-12618
* | | Merge branch '3.1.x'Joas Schilling2016-01-091-2/+0
|\ \ \ | |/ / | | | | | | | | | | | | | | | Conflicts: build/build.xml phpBB/docs/CHANGELOG.html phpBB/includes/acp/acp_bbcodes.php
| * | Merge pull request #24 from phpbb/ticket/security-188Joas Schilling2016-01-091-2/+0
| |\ \ | | |/ | |/| | | | [ticket/security-188] Check form key in acp_bbcodes
| | * [ticket/security-188] Remove unused form key from acp_extensionsMarc Alexander2015-12-231-2/+0
| | | | | | | | | | | | SECURITY-188
* | | [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-1/+1
| | | | | | | | | | | | | | | | | | This is the first part of the changes. More to come. PHPBB3-13454
* | | Merge branch '3.1.x'Tristan Darricau2015-09-161-0/+3
|\ \ \ | |/ / | | | | | | | | | * 3.1.x: [ticket/14154] Add extension composer name as tooltip
| * | [ticket/14154] Add extension composer name as tooltipZoddo2015-09-121-0/+3
| | | | | | | | | | | | PHPBB3-14154
| * | [ticket/13930] Add missing spaces to codeMarc Alexander2015-06-081-4/+4
| |/ | | | | | | PHPBB3-13930
* | [ticket/13762] Moving language related functionality into a separate classMateBartus2015-05-021-4/+4
| | | | | | | | PHPBB3-13762