aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext/vendor2/foo/acp/fail_info.php
blob: d9b435395742294a9b4b49b561a85d118175fca6 (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 vendor2\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'	=> 'vendor2\foo\acp\fail_module',
			'title'		=> 'Foobar',
			'version'	=> '3.1.0-dev',
			'modes'		=> array(
				'config'		=> array('title' => 'Config',	'auth' => '', 'cat' => array('ACP_MODS')),
			),
		);
	}
}