Completed
Push — master ( 84905b...948707 )
by Jean-Christophe
01:52
created

CRUDFiles::getViewEditTable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Ubiquity\controllers\crud;
4
5
class CRUDFiles {
6
	private $viewBase="@framework/crud";
7
	
8
	public function getViewDataIndex() {
9
		return $this->viewBase."/index.html";
10
	}
11
	
12
	public function getViewShowTable() {
13
		return $this->viewBase."/showTable.html";
14
	}
15
	
16
	public function getViewEditTable() {
17
		return $this->viewBase."/editTable.html";
18
	}
19
}
20
21