aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext/moo/ext.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-10-14 00:52:36 +0200
committerNils Adermann <naderman@naderman.de>2011-10-14 00:52:36 +0200
commitf53892c838dfa3638a47b60b394a948db4873466 (patch)
treea065caf5eb4b9fae3c1a1d84d22ea364c73ac388 /tests/extension/ext/moo/ext.php
parent639e3b9f17c9bac668b4ad24bb9861d8006fa396 (diff)
downloadforums-f53892c838dfa3638a47b60b394a948db4873466.tar
forums-f53892c838dfa3638a47b60b394a948db4873466.tar.gz
forums-f53892c838dfa3638a47b60b394a948db4873466.tar.bz2
forums-f53892c838dfa3638a47b60b394a948db4873466.tar.xz
forums-f53892c838dfa3638a47b60b394a948db4873466.zip
[feature/extension-manager] Add prefix to extension meta data / install classes
PHPBB3-10323
Diffstat (limited to 'tests/extension/ext/moo/ext.php')
-rw-r--r--tests/extension/ext/moo/ext.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/extension/ext/moo/ext.php b/tests/extension/ext/moo/ext.php
new file mode 100644
index 0000000000..8b534380f2
--- /dev/null
+++ b/tests/extension/ext/moo/ext.php
@@ -0,0 +1,13 @@
+<?php
+
+class phpbb_ext_moo_ext extends phpbb_extension_base
+{
+ static public $purged;
+
+ public function purge_step($old_state)
+ {
+ self::$purged = true;
+
+ return false;
+ }
+}