aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_extensions.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/13612] Always display success message if extension was enabledMarc Alexander2015-02-141-5/+0
| | | | | | | An error will already be triggered if enable_step() is not successful. Redirecting for no obvious reason will just confuse users. PHPBB3-13612
* [ticket/13358] Correctly create version_helper in acp_extensionsMarc Alexander2014-11-221-1/+1
| | | | | | | The full namespace for the file_downloader is now also being used in version_helper. PHPBB3-13358
* [ticket/12847] Allow the extensions to say if they can be enabledTristan Darricau2014-07-131-0/+12
| | | | PHPBB3-12847
* [ticket/12777] Rename extension status functions and add is_configured()Tristan Darricau2014-06-271-6/+6
| | | | PHPBB3-12777
* [ticket/12721] Add Squiz.Arrays.ArrayBracketSpacing in the legacy rulesetTristan Darricau2014-06-161-1/+1
| | | | PHPBB3-12721
* [ticket/11467] Add language variables for extension exception messagesn-aleha2014-05-291-1/+1
| | | | | | | Remove hard-coded messages and add language variables for extension exception messages. PHPBB3-11467
* [ticket/11366] Add $config['extension_force_unstable']Tristan Darricau2014-05-281-1/+31
| | | | PHPBB3-11366
* [ticket/11366] Use force_cache on the list pageTristan Darricau2014-05-281-6/+10
| | | | PHPBB3-11366
* [ticket/11366] Add recheck-all linkTristan Darricau2014-05-281-0/+2
| | | | PHPBB3-11366
* [ticket/11366] Force the use of the cache on the list pageTristan Darricau2014-05-281-4/+7
| | | | PHPBB3-11366
* [ticket/11366] Fix whitespacesTristan Darricau2014-05-281-3/+3
| | | | PHPBB3-11366
* [ticket/11366] Update var namesTristan Darricau2014-05-281-16/+13
| | | | PHPBB3-11366
* [ticket/11366] Fix detailed viewTristan Darricau2014-05-281-2/+4
| | | | PHPBB3-11366
* [ticket/11366] Remove the double spacesTristan Darricau2014-05-281-1/+1
| | | | PHPBB3-11366
* [ticket/11366] Coding styleTristan Darricau2014-05-281-33/+33
| | | | PHPBB3-11366
* [ticket/11366] Adding a missing commitNicofuma2014-05-281-4/+4
| | | | PHPBB3-11366
* [ticket/11366] Bug Fix: Extensions removed but still registred in DBNicofuma2014-05-281-8/+8
| | | | | | Fix the bug with the Extensions removed but still registred in DB PHPBB3-11366
* [ticket/11366] Moving to \phpbb\version_helperNicofuma2014-05-281-30/+47
| | | | | | | | | | | | | | | | | | | | | | | + bug fix (missing exception) + Using \phpbb\version_helper So, now, the version file have a new format : { "stable": { "<branch>": { "current": "<version>", [ "announcement": "<announcement link>", ] [ "download": "<download link>", ] }, "<branch>": { ... } }, "unstable": { } } PHPBB3-11366
* [ticket/11366] Extension's version's checkNicofuma2014-05-281-26/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a feature to check automatically the version of the installed extensions. The informations are cached for 24 hours (like for the global update check on the main page of the acp). The informations about the versions are display both on the global list and on the detailled page. To do this the developper has to to let the composer.json of the latest version available and add some informations into it : "extra": { "version-check": { "host": "<the host>", "directory": "<the directory containing the file>", "filename": "<the composer.json of the latest version>" } } He can also add two extra informations which will be displayed if a new version is available : "extra": { "download": "<download link>", "annoucement": "<announcement link>", } Currently a notice is displayed when the "extra.version-check" informations are missing. Ticket: https://tracker.phpbb.com/browse/PHPBB3-11366 Signed-off-by: Nicofuma <github@nicofuma.fr> PHPBB3-11366
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-6/+7
| | | | PHPBB3-12594
* [ticket/12074] Don't log errorsTristan Darricau2014-05-091-12/+0
| | | | PHPBB3-12074
* [ticket/12074] Managing extensions doesn't produce any log entryTristan Darricau2014-05-091-1/+33
| | | | PHPBB3-12074
* [ticket/12458] Apply Squiz.WhiteSpace.SuperfluousWhitespace.* to legacy code.Andreas Fischer2014-04-291-3/+3
| | | | | | | | | * There MUST NOT be trailing whitespace at the end of lines. * There MUST NOT be whitespace before the first content of a file. * There MUST NOT be whitespace after the last content of a file. * Functions MUST NOT contain multiple empty lines in a row. PHPBB3-12458
* [ticket/12043] Correct try/catch exceptions for invalid extensionsMatt Friedman2014-03-291-49/+49
| | | | PHPBB3-12043
* [ticket/12043] Sort Extensions by Display Name in ACP Extension manangerMatt Friedman2014-03-291-3/+30
| | | | PHPBB3-12043
* [ticket/12009] Prevent user from enabling invalid extension through direct URLCesar G2013-12-121-0/+10
| | | | PHPBB3-12009
* [ticket/12002] Add link hash to extension manager linksJoas Schilling2013-11-081-6/+11
| | | | PHPBB3-12002
* [ticket/11994] Change error level for missing .json fileJoas Schilling2013-11-081-1/+1
| | | | PHPBB3-11994
* [ticket/11994] Rename "uninstall" to "delete data"Joas Schilling2013-11-081-9/+12
| | | | PHPBB3-11994
* [ticket/11994] Make install/enable just one UI thingJoas Schilling2013-11-081-8/+4
| | | | PHPBB3-11994
* [ticket/11994] Use display name on confirmation screenJoas Schilling2013-11-081-3/+3
| | | | PHPBB3-11994
* [ticket/11994] Make extension manager UI less misleadingJoas Schilling2013-11-081-13/+21
| | | | | | | Enable and Install were split into two different expressions. Purge was renamed to uninstall to make clearer what is going to happen. PHPBB3-11994
* [ticket/11700] Move all recent code to namespacesNils Adermann2013-09-161-10/+10
| | | | PHPBB3-11700
* Merge remote-tracking branch 'EXreaction/ticket/11415' into developDavid King2013-05-181-9/+25
|\ | | | | | | | | | | | | | | | | | | | | | | * EXreaction/ticket/11415: [ticket/11415] Add test for find_from_extension() [ticket/11415] Send the extension base the finder rather than the manager [ticket/11415] Create function in finder find_from_extension [ticket/11415] Fix ext.manager constructor in tests [ticket/11415] Make migrator/ext.manager dependencies of the base ext class [ticket/11415] Remove migrator dependency from extension manager [ticket/11415] Move migrator to base extension class from ext.manager [ticket/11415] Move while loop from ext manager to acp_extensions.php
| * [ticket/11415] Move while loop from ext manager to acp_extensions.phpNathaniel Guse2013-05-011-9/+25
| | | | | | | | | | | | | | Now enable_step works as it's supposed to (do one step at a time) and less refreshes are required for the user. PHPBB3-11415
* | [ticket/11450] Fix all instances of phpbb_extension_metadata_managerJoas Schilling2013-05-081-1/+1
|/ | | | PHPBB3-11450
* [ticket/11335] Replace "$phpEx" with $phpExNathaniel Guse2013-04-241-1/+1
| | | | PHPBB3-11335
* [ticket/11335] (more) Make php_ext 'php' not '.php'Nathan Guse2013-04-241-1/+1
| | | | PHPBB3-11335
* [ticket/11116] Made ACP "extension not available" error message E_USER_WARNINGrechosen2013-04-111-2/+2
| | | | | | | | | The error message generated when an administrator tries to enable an incompatible extension used to be displayed in the green of the default E_USER_NOTICE. Changed it to E_USER_WARNING to make it appear in red, as requested in the ticket. PHPBB3-11116
* [feature/migrations] Use getLocalisedMessage() function to get error messageNathan Guse2013-02-151-2/+2
| | | | PHPBB3-11318
* [feature/migrations] Catch and display errors from the migratorNathaniel Guse2013-02-091-7/+21
| | | | PHPBB3-11318
* [ticket/10631] Fix a spelling typoMichael C.2012-09-011-1/+1
| | | PHPBB3-10631
* [ticket/10631] Adjust prefixes to be easier to understandUnknown Bliss2012-09-011-6/+6
| | | | PHPBB3-10631
* [ticket/10631] Make failure to meet ext enable requirements clearerNathan Guse2012-09-011-5/+10
| | | | | | | | | Turn the blocks red on the details page if requirement is not met. Also changing a how the errors come up when trying to enable/disable an extension when they cannot be. PHPBB3-10631
* [ticket/10631] Various front-end fixes (extensions manager)Nathan Guse2012-09-011-0/+9
| | | | | | | | | | Add Back button from details Add cancel button from actions Correct language strings PHPBB3-10631
* [ticket/10631] Functional acp_extensions test, cleanupNathan Guse2012-09-011-18/+20
| | | | PHPBB3-10631
* [ticket/10631] get_extension_metadata_manager -> ↵Nathan Guse2012-09-011-3/+3
| | | | | | create_extension_metadata_manager PHPBB3-10631
* [ticket/10631] Simplify exceptionsNathan Guse2012-09-011-8/+20
| | | | PHPBB-10631
* [ticket/10631] Use exceptions for errors. Build action list dynamically.Nathan Guse2012-09-011-28/+83
| | | | PHPBB3-10631
* [ticket/10631] Fix some issues as noted in github comments, significantly ↵Nathan Guse2012-09-011-6/+6
| | | | | | simplified validation PHPBB3-10631