aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/includes/acp/info/acp_foobar.php
blob: b89cfb95749c1f6c77f1676cb81d44558e180de7 (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
25
26
<?php
/**
*
* @package testing
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* @package module_install
*/
class acp_foobar_info
{
	function module()
	{
		return array(
			'filename'	=> 'acp_foobar',
			'title'		=> 'ACP Foobar',
			'version'	=> '3.1.0-dev',
			'modes'		=> array(
				'test'		=> array('title' => 'Test', 'auth' => '', 'cat' => array('ACP_GENERAL')),
			),
		);
	}
}