content_info::module()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 7
ccs 0
cts 7
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 *
4
 * @package sitemaker
5
 * @copyright (c) 2013 Daniel A. (blitze)
6
 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
7
 *
8
 */
9
10
namespace blitze\content\acp;
11
12
class content_info
13
{
14
	public function module()
15
	{
16
		return array(
17
			'filename'	=> '\blitze\content\acp\content_module',
18
			'title'		=> 'ACP_SITEMAKER',
19
			'modes'		=> array(
20
				'content'		=> array('title' => 'CONTENT_TYPES', 'auth' => 'ext_blitze/content', 'before' => 'ACP_MENU', 'cat' => array('ACP_SITEMAKER')),
21
			),
22
		);
23
	}
24
}
25