aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext/bar/bar.php
blob: c25f8156493de74858e7d6db1d9ddc4e84599742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

class phpbb_ext_bar extends phpbb_extension_base
{
	static public $state;

	public function enable_step($old_state)
	{
		// run 4 steps, then quit
		if ($old_state === 4)
		{
			return false;
		}

		if ($old_state === false)
		{
			$old_state = 0;
		}

		self::$state = ++$old_state;

		return self::$state;
	}
}