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

Import_AMR::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
ccs 0
cts 5
cp 0
crap 2
rs 9.4285
c 0
b 0
f 0
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