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

namespace foo\acp;

/*
* Due to the mismatch between the class name and the file name, this module
* file shouldn't be found by the extension finder
*/
class foo_info
{
	public function module()
	{
		return array(
			'filename'	=> 'foo\acp\fail_module',
			'title'		=> 'Foobar',
			'version'	=> '3.1.0-dev',
			'modes'		=> array(
				'config'		=> array('title' => 'Config',	'auth' => '', 'cat' => array('ACP_MODS')),
			),
		);
	}
}