mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 20:10:18 +02:00
21 lines
255 B
PHP
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;
|
|
}
|
|
}
|