mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-12 03:34:04 +02:00
[feature/extension-manager] Extension Manager & Finder
Extensions RFC: http://area51.phpbb.com/phpBB/viewtopic.php?f=84&t=41499 Ticket: http://tracker.phpbb.com/browse/PHPBB3-10323 PHPBB3-10323
This commit is contained in:
5
tests/extension/ext/foo/a_class.php
Normal file
5
tests/extension/ext/foo/a_class.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class phpbb_ext_foo_a_class
|
||||
{
|
||||
}
|
5
tests/extension/ext/foo/b_class.php
Normal file
5
tests/extension/ext/foo/b_class.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class phpbb_ext_foo_b_class
|
||||
{
|
||||
}
|
5
tests/extension/ext/foo/foo.php
Normal file
5
tests/extension/ext/foo/foo.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class phpbb_ext_foo extends phpbb_extension_base
|
||||
{
|
||||
}
|
5
tests/extension/ext/foo/sub/type/alternative.php
Normal file
5
tests/extension/ext/foo/sub/type/alternative.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class phpbb_ext_foo_sub_type_alternative
|
||||
{
|
||||
}
|
5
tests/extension/ext/foo/type/alternative.php
Normal file
5
tests/extension/ext/foo/type/alternative.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class phpbb_ext_foo_type_alternative
|
||||
{
|
||||
}
|
5
tests/extension/ext/foo/typewrong/error.php
Normal file
5
tests/extension/ext/foo/typewrong/error.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
class phpbb_ext_foo_typewrong_error
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user