Ubiquity  2.0.3
php rapid development framework
UbiquityMyAdminFiles.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7  private $viewBase="@framework/Admin";
8 
9  public function getAdminBaseRoute() {
10  return "Admin";
11  }
12 
13  public function getViewDataIndex() {
14  return $this->viewBase."/data/index.html";
15  }
16 
17  public function getViewRoutesIndex() {
18  return $this->viewBase."/routes/index.html";
19  }
20 
21  public function getViewRestIndex() {
22  return $this->viewBase."/rest/index.html";
23  }
24 
25  public function getViewLogsIndex() {
26  return $this->viewBase."/logs/index.html";
27  }
28 
29  public function getViewSeoIndex() {
30  return $this->viewBase."/seo/index.html";
31  }
32 
33  public function getViewRestFormTester() {
34  return $this->viewBase."/rest/formTester.html";
35  }
36 
37  public function getViewCacheIndex() {
38  return $this->viewBase."/cache/index.html";
39  }
40 
41  public function getViewControllersIndex() {
42  return $this->viewBase."/controllers/index.html";
43  }
44 
45  public function getViewControllersFiltering(){
46  return $this->viewBase."/controllers/FormFiltering.html";
47  }
48 
49  public function getViewAddCrudController(){
50  return $this->viewBase."/controllers/FormCrudController.html";
51  }
52 
53  public function getViewAddAuthController(){
54  return $this->viewBase."/controllers/FormAuthController.html";
55  }
56 
57  public function getViewConfigIndex() {
58  return $this->viewBase."/config/index.html";
59  }
60 
61  public function getViewConfigForm(){
62  return $this->viewBase."/config/form.html";
63  }
64 
65  public function getViewIndex() {
66  return $this->viewBase."/index.html";
67  }
68 
69  public function getViewShowTable() {
70  return $this->viewBase."/data/showTable.html";
71  }
72 
73  public function getViewEditTable() {
74  return $this->viewBase."/data/editTable.html";
75  }
76 
77  public function getViewHeader() {
78  return $this->viewBase."/main/vHeader.html";
79  }
80 
81  public function getViewClassesDiagram() {
82  return $this->viewBase."/data/diagClasses.html";
83  }
84 
85  public function getViewYumlReverse() {
86  return $this->viewBase."/data/yumlReverse.html";
87  }
88 
89  public function getViewDatabaseIndex() {
90  return $this->viewBase."/database/index.html";
91  }
92 
93  public function getViewDatabaseCreate() {
94  return $this->viewBase."/database/create.html";
95  }
96 
97  public function getViewDatasExport() {
98  return $this->viewBase."/database/export.html";
99  }
100 
101  public function getViewSeoDetails() {
102  return $this->viewBase."/seo/seoDetails.html";
103  }
104 
105  public function getViewGitIndex() {
106  return $this->viewBase."/git/index.html";
107  }
108 
109  public function getViewGitSettings() {
110  return $this->viewBase."/git/formSettings.html";
111  }
112 
113  public function getViewGitIgnore() {
114  return $this->viewBase."/git/formGitIgnore.html";
115  }
116 }