1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-15 22:26:32 +02:00
Files
php-phpbb/tests/extension/ext/foo/ext.php
2011-11-18 18:24:18 +01:00

14 lines
182 B
PHP

<?php
class phpbb_ext_foo_ext extends phpbb_extension_base
{
static public $disabled;
public function disable_step($old_state)
{
self::$disabled = true;
return false;
}
}