mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
20 lines
255 B
PHP
20 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;
|
|
}
|
|
}
|