diff options
Diffstat (limited to 'tests/extension/ext/foo/ext.php')
-rw-r--r-- | tests/extension/ext/foo/ext.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/extension/ext/foo/ext.php b/tests/extension/ext/foo/ext.php new file mode 100644 index 0000000000..60b3ad1f16 --- /dev/null +++ b/tests/extension/ext/foo/ext.php @@ -0,0 +1,13 @@ +<?php + +class phpbb_ext_foo_ext extends phpbb_extension_base +{ + static public $disabled; + + public function disable_step($old_state) + { + self::$disabled = true; + + return false; + } +} |