1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-20 08:31:32 +02:00
Files
php-phpbb/tests/extension/ext/vendor2/foo/ext.php
2013-12-12 10:52:51 -08:00

16 lines
193 B
PHP

<?php
namespace vendor2\foo;
class ext extends \phpbb\extension\base
{
static public $disabled;
public function disable_step($old_state)
{
self::$disabled = true;
return false;
}
}