aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext/foo/ext.php
blob: f604dcab5f5cce4721de70e86980a17c0dc05e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class phpbb_ext_foo_ext extends \phpbb\extension\base
{
	static public $disabled;

	public function disable_step($old_state)
	{
		self::$disabled = true;

		return false;
	}
}