mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-06 06:25:04 +02:00
16 lines
185 B
PHP
16 lines
185 B
PHP
<?php
|
|
|
|
namespace foo;
|
|
|
|
class ext extends \phpbb\extension\base
|
|
{
|
|
static public $disabled;
|
|
|
|
public function disable_step($old_state)
|
|
{
|
|
self::$disabled = true;
|
|
|
|
return false;
|
|
}
|
|
}
|