Completed
Push — master ( 987391...82fdfd )
by Angus
02:39
created

Import_AMR   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 0
cts 8
cp 0
rs 10
c 0
b 0
f 0
wmc 2
lcom 1
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A index() 0 6 1
1
<?php defined('BASEPATH') OR exit('No direct script access allowed');
2
3
class Import_AMR extends User_Controller {
4
	public function __construct() {
5
		parent::__construct();
6
	}
7
8
	public function index() {
9
		$this->header_data['title'] = "AMR Importer";
10
		$this->header_data['page']  = "import_amr";
11
12
		$this->_render_page("Import_AMR");
13
	}
14
}
15