Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
7 / 7 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| acp_foobar_info | |
100.00% |
7 / 7 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| module | |
100.00% |
7 / 7 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * |
| 4 | * This file is part of the phpBB Forum Software package. |
| 5 | * |
| 6 | * @copyright (c) phpBB Limited <https://www.phpbb.com> |
| 7 | * @license GNU General Public License, version 2 (GPL-2.0) |
| 8 | * |
| 9 | * For full copyright and license information, please see |
| 10 | * the docs/CREDITS.txt file. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | class acp_foobar_info |
| 15 | { |
| 16 | function module() |
| 17 | { |
| 18 | return array( |
| 19 | 'filename' => 'acp_foobar', |
| 20 | 'title' => 'ACP Foobar', |
| 21 | 'modes' => array( |
| 22 | 'test' => array('title' => 'Test', 'auth' => '', 'cat' => array('ACP_GENERAL')), |
| 23 | ), |
| 24 | ); |
| 25 | } |
| 26 | } |