Completed
Push — master ( 0db593...5f0535 )
by Jean-Christophe
01:58
created

CRUDFiles::getViewForm()   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
	protected $viewBase;
7
	
8
	public function __construct(){
9
		$this->viewBase="@framework/crud";
10
	}
11
	
12
	public function getViewIndex() {
13
		return $this->viewBase."/index.html";
14
	}
15
	
16
	public function getViewForm() {
17
		return $this->viewBase."/form.html";
18
	}
19
}
20
21