1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 20:10:18 +02:00
Files
php-phpbb/tests/extension/ext/vendor3/foo/ext.php
2014-07-13 18:09:34 +02:00

21 lines
255 B
PHP

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