Ubiquity
2.0.3
php rapid development framework
CRUDFiles.php
Go to the documentation of this file.
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
public
function
getViewDisplay
() {
21
return
$this->viewBase.
"/display.html"
;
22
}
23
28
public
function
getViewBaseTemplate
() {
29
return
$this->viewBase.
"/baseTemplate.html"
;
30
}
31
36
public
function
getBaseTemplate
(){
37
return
;
38
}
39
}
40
Ubiquity\controllers\crud\CRUDFiles\getBaseTemplate
getBaseTemplate()
To override Returns the base template filename, default : null.
Definition:
CRUDFiles.php:36
Ubiquity\controllers\crud\CRUDFiles\getViewDisplay
getViewDisplay()
Definition:
CRUDFiles.php:20
Ubiquity\controllers\crud\CRUDFiles\getViewBaseTemplate
getViewBaseTemplate()
Returns the base template for all Auth actions if getBaseTemplate return a base template filename...
Definition:
CRUDFiles.php:28
Ubiquity\controllers\crud\CRUDFiles\__construct
__construct()
Definition:
CRUDFiles.php:8
Ubiquity\controllers\crud\CRUDFiles\getViewIndex
getViewIndex()
Definition:
CRUDFiles.php:12
Ubiquity\controllers\crud\CRUDFiles\$viewBase
$viewBase
Definition:
CRUDFiles.php:6
Ubiquity\controllers\crud\CRUDFiles\getViewForm
getViewForm()
Definition:
CRUDFiles.php:16
Ubiquity\controllers\crud\CRUDFiles
Definition:
CRUDFiles.php:5
Ubiquity\controllers\crud
Definition:
CRUDController.php:3
Ubiquity
controllers
crud
CRUDFiles.php
Generated on Thu May 31 2018 02:05:13 for
Ubiquity
by
doxygen
1.8.13