mirror of
https://github.com/phpbb/phpbb.git
synced 2025-10-14 00:17:03 +02:00
14 lines
183 B
PHP
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;
|
|
}
|
|
}
|