aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext/foo/ext.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extension/ext/foo/ext.php')
-rw-r--r--tests/extension/ext/foo/ext.php15
1 files changed, 15 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..ac6098f2f1
--- /dev/null
+++ b/tests/extension/ext/foo/ext.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace foo;
+
+class ext extends \phpbb\extension\base
+{
+ static public $disabled;
+
+ public function disable_step($old_state)
+ {
+ self::$disabled = true;
+
+ return false;
+ }
+}