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

namespace foo;

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

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

		return false;
	}
}