mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[feature/extension-manager] Support extensions in subdirectories of ext/
PHPBB3-10323
This commit is contained in:
13
tests/extension/ext/vendor/moo/ext.php
vendored
Normal file
13
tests/extension/ext/vendor/moo/ext.php
vendored
Normal 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;
|
||||
}
|
||||
}
|
5
tests/extension/ext/vendor/moo/feature_class.php
vendored
Normal file
5
tests/extension/ext/vendor/moo/feature_class.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class phpbb_ext_vendor_moo_feature_class
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user