review_info::module()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
c 1
b 0
f 0
dl 0
loc 10
rs 10
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 *
4
 * Member Avatar & Status [MAS]. An extension for the phpBB Forum Software package.
5
 *
6
 * @copyright (c) 2018-forever, Dark❶ [dark1]
7
 * @license GNU General Public License, version 2 (GPL-2.0-only)
8
 *
9
 */
10
11
namespace dark1\memberavatarstatus\acp;
12
13
/**
14
 * Member Avatar & Status [MAS] ACP module info.
15
 */
16
class review_info
17
{
18
	public function module()
19
	{
20
		return [
21
			'filename'	=> '\dark1\memberavatarstatus\acp\review_module',
22
			'title'		=> 'ACP_MAS_TITLE',
23
			'modes'		=> [
24
				'review'	=> [
25
						'title'	=> 'ACP_MAS_MODE_REVIEW',
26
						'auth'	=> 'ext_dark1/memberavatarstatus && acl_a_board',
27
						'cat'	=> ['ACP_MAS_TITLE']
28
				],
29
			],
30
		];
31
	}
32
}
33