1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 09:46:46 +02:00

[feature/extension-manager] Support extensions in subdirectories of ext/

PHPBB3-10323
This commit is contained in:
Nils Adermann
2011-10-14 01:30:50 +02:00
parent f53892c838
commit 4fb9f2101d
6 changed files with 28 additions and 22 deletions

13
tests/extension/ext/vendor/moo/ext.php vendored Normal file
View File

@@ -0,0 +1,13 @@
<?php
class phpbb_ext_vendor_moo_ext extends phpbb_extension_base
{
static public $purged;
public function purge_step($old_state)
{
self::$purged = true;
return false;
}
}