content_info   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 9
ccs 0
cts 7
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A module() 0 7 1
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