similar_topics_info::module()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 7
rs 10
1
<?php
2
/**
3
 *
4
 * Precise Similar Topics
5
 *
6
 * @copyright (c) 2013 Matt Friedman
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace vse\similartopics\acp;
12
13
/**
14
 * @package module_install
15
 */
16
class similar_topics_info
17
{
18
	public function module()
19
	{
20
		return array(
21
			'filename'	=> '\vse\similartopics\acp\similar_topics_module',
22
			'title'		=> 'PST_TITLE_ACP',
23
			'modes'		=> array(
24
				'settings'	=> array('title' => 'PST_SETTINGS', 'auth' => 'ext_vse/similartopics && acl_a_board', 'cat' => array('PST_TITLE_ACP')),
25
			),
26
		);
27
	}
28
}
29