This repository has been archived by the owner on Apr 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathController.php
95 lines (86 loc) · 2.26 KB
/
Controller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* Clase 'Padre' para los controladores
* @author Sergio
* @version v.0.2
*/
abstract class IF_CONTROLLER
{
private $_renderLayout;
private $_View;
private $_Request;
private $_noRender;
/**
* Función que ejecuta la action de la clase(contolador) hija
* @param clase hija $Instance
* @param IF_VIEW $View
* @param string $action
*/
public function exec($View, $action)
{
$this->_Request = new IF_REQUEST();
$this->_renderLayout = true;
$this->_View = $View;
$this->_noRender = false;
//llamamos a la action del Controller Hijo
$data = $this->$action();
//renderizamos la vista
if (!$this->_noRender) {
$View->renderPHP($data, $this->_renderLayout);
} else {
$View->renderAjax($data);
}
}
/**
* Funcion que deniega el renderizado del Layout
*/
public function noLayout()
{
$this->_renderLayout = false;
}
/**
* Funcion que establece el Layout a usar por la APP.
* @param string $name
*/
public function setLayout($layoutName)
{
$this->_View->setLayout($layoutName);
}
/**
* Función que establece una Vista especificada por el usuario.
* @param string $viewName
*/
public function setView($viewName)
{
$this->_View->setView($viewName);
}
/**
* Función que establece comportamiento para Ajax.
* Implica que desactiva el layout y lo vincula con una vista si se define, sino no.
* @param string $viewName
*/
public function ajax($viewName = null)
{
$this->_renderLayout = false;
$this->_noRender = true;
if ($viewName) {
$this->_View->setView($viewName);
}
}
public function getParams()
{
return $this->_Request->getParams();
}
public function getParam($key)
{
return $this->_Request->getParam($key);
}
/**
* Funtion que nos dice si tenemos o no parámetros GET o POST
* @return boolean
*/
public function haveRequest()
{
return $this->_Request->haveRequest();
}
}