mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 21:08:53 +00:00
21 lines
427 B
PHP
21 lines
427 B
PHP
<?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',
|
|
'modes' => array(
|
|
'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')),
|
|
),
|
|
);
|
|
}
|
|
}
|