diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2019-03-27 12:09:55 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-09-30 20:25:44 +0200 |
commit | 975fe1e153c35d7079d06655c43303b04a6502a7 (patch) | |
tree | bdbf4c6a239e9f751b27c4bb45a679abf94b73b7 /phpBB/phpbb/extension | |
parent | b6c230753ee17fe65b43929d4fc10248ea2a23bf (diff) | |
download | forums-975fe1e153c35d7079d06655c43303b04a6502a7.tar forums-975fe1e153c35d7079d06655c43303b04a6502a7.tar.gz forums-975fe1e153c35d7079d06655c43303b04a6502a7.tar.bz2 forums-975fe1e153c35d7079d06655c43303b04a6502a7.tar.xz forums-975fe1e153c35d7079d06655c43303b04a6502a7.zip |
[ticket/15257] Provide extension not enableable messages
PHPBB3-15257
Diffstat (limited to 'phpBB/phpbb/extension')
-rw-r--r-- | phpBB/phpbb/extension/extension_interface.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/extension/extension_interface.php b/phpBB/phpbb/extension/extension_interface.php index 6a6b6adb8f..46072d420c 100644 --- a/phpBB/phpbb/extension/extension_interface.php +++ b/phpBB/phpbb/extension/extension_interface.php @@ -22,7 +22,8 @@ interface extension_interface /** * Indicate whether or not the extension can be enabled. * - * @return bool + * @return bool|array True if extension is enableable, array of reasons + * if not, false for generic reason. */ public function is_enableable(); |