1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-06 06:25:04 +02:00
2013-09-17 16:15:44 +02:00

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;
}
}