mvc/controladores/dataControlador.php 1 location
|
@@ 46-56 (lines=11) @@
|
| 43 |
|
private $_seg; |
| 44 |
|
private $_sesion; |
| 45 |
|
|
| 46 |
|
public function __construct() { |
| 47 |
|
parent::__construct(); |
| 48 |
|
|
| 49 |
|
$this->_ayuda= new Sisayu\CFPHPAyuda; |
| 50 |
|
//$this->cargaAyudante('CfPHPAyuda'); |
| 51 |
|
//$this->cargaAyudante('CfPHPSeguridad'); |
| 52 |
|
$this->_seg= new Sisayu\CFPHPSeguridad; |
| 53 |
|
|
| 54 |
|
$this->_sesion=new Sisnuc\CFSesion(); |
| 55 |
|
|
| 56 |
|
} |
| 57 |
|
|
| 58 |
|
public function index() |
| 59 |
|
{ |
mvc/controladores/indexControlador.php 1 location
|
@@ 46-56 (lines=11) @@
|
| 43 |
|
private $_seg; |
| 44 |
|
private $_sesion; |
| 45 |
|
|
| 46 |
|
public function __construct() { |
| 47 |
|
parent::__construct(); |
| 48 |
|
|
| 49 |
|
$this->_ayuda= new Sisayu\CFPHPAyuda; |
| 50 |
|
//$this->cargaAyudante('CfPHPAyuda'); |
| 51 |
|
//$this->cargaAyudante('CfPHPSeguridad'); |
| 52 |
|
$this->_seg= new Sisayu\CFPHPSeguridad; |
| 53 |
|
|
| 54 |
|
$this->_sesion=new Sisnuc\CFSesion(); |
| 55 |
|
|
| 56 |
|
} |
| 57 |
|
|
| 58 |
|
public function index() |
| 59 |
|
{ |
mvc/controladores/usuarioControlador.php 1 location
|
@@ 9-16 (lines=8) @@
|
| 6 |
|
private $_ayuda; |
| 7 |
|
private $_seg; |
| 8 |
|
private $_sesion; |
| 9 |
|
public function __construct() { |
| 10 |
|
parent::__construct(); |
| 11 |
|
|
| 12 |
|
// cargamos la clase ayudantes para usar sus metodos de ayuda |
| 13 |
|
$this->_ayuda= new Sistema\Ayudantes\CFPHPAyuda; |
| 14 |
|
$this->_seg= new Sistema\Ayudantes\CFPHPSeguridad; |
| 15 |
|
$this->_sesion=new Sistema\Nucleo\CFSesion(); |
| 16 |
|
} |
| 17 |
|
|
| 18 |
|
public function index(){ |
| 19 |
|
$this->_sesion->iniciarSesion('_s', Cf_SESION_PARAMETRO_SEGURO); |