mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 04:48:53 +00:00
13 lines
182 B
PHP
13 lines
182 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;
|
|
}
|
|
}
|