1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-14 00:17:03 +02:00
Files
php-phpbb/tests/extension/ext/foo/ext.php
2013-09-16 00:25:27 +02:00

14 lines
183 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;
}
}