public function __construct()
 {
     parent::__construct();
     $this->table = 'casos_usuarios';
     $this->index = 'id_caso';
     $this->columns = array('id_caso', 'id_usuario');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'encuestas_casos';
     $this->index = 'id_caso';
     $this->columns = array('id_caso', 'id_encuesta');
 }
Example #3
0
 public function __construct($cod_usu = NULL)
 {
     Modelo::__construct();
     if (func_num_args() == 1) {
         $this->cod_usu = $cod_usu;
     }
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'casos';
     $this->index = 'telefono';
     $this->singularName = 'comuna';
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'columnas_extra';
     $this->singularName = 'columna';
     $this->index = 'id_columna';
     $this->columns = array('columna');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'roles';
     $this->singularName = 'rol';
     $this->index = 'id_rol';
     $this->columns = array('rol');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'estados';
     $this->singularName = 'estado';
     $this->index = 'id_estado';
     $this->columns = array('estado', 'descripcion', 'visibilidad');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'generales';
     $this->singularName = 'general';
     $this->index = 'id_general';
     $this->columns = array('general', 'valor');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'acciones';
     $this->singularName = 'accion';
     $this->index = 'id_accion';
     $this->columns = array('accion');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'encuestas';
     $this->singularName = 'encuesta';
     $this->index = 'id_encuesta';
     $this->columns = array('encuesta', 'limesurvey_encuesta');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'usuarios';
     $this->singularName = 'usrname';
     $this->index = 'id_usuario';
     $this->columns = array('usrname', 'password', 'ip_estacion', 'num_cdr');
     $this->columnsXupdate = array('usrname', 'ip_estacion', 'num_cdr');
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'columnas_visibilidad';
     $this->index = 'nombre_columna';
     $this->singularName = 'visibilidad';
     $this->columns = array('nombre_columna', 'visibilidad');
     $this->tableBase = 'casos';
     $this->indexBase = 'id_casos';
     $this->singularNameBase = 'telefono';
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'estados_acciones';
     $this->index = 'id_estado';
     $this->columns = array('id_estado', 'id_accion', 'prioridad');
     $this->tizq = 'estados';
     $this->tder = 'acciones';
     $this->indexIzq = 'id_estado';
     $this->indexDer = 'id_accion';
     $this->interes = ',estado, accion, prioridad';
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'roles_usuarios';
     $this->index = 'id_usuario';
     $this->columns = array('id_usuario', 'id_rol');
     $this->tizq = 'usuarios';
     $this->tder = 'roles';
     $this->indexIzq = 'id_usuario';
     $this->indexDer = 'id_rol';
     $this->interes = ',rol, usrname';
 }
Example #15
0
 public function __construct($cod_usu = NULL)
 {
     parent::__construct();
     if (func_num_args() == 1) {
         $this->UsuDetails($cod_usu);
         switch ($this->nombre_tipo_usu) {
             case 'Fan':
                 $this->FuncionEspecial = new Fan($this->cod_usu);
                 break;
             case 'Local':
                 $this->FuncionEspecial = new Local($this->cod_usu);
                 break;
             case 'Músico':
                 $this->FuncionEspecial = new Musico($this->cod_usu);
                 break;
         }
     }
 }
 function __construct()
 {
     parent::__construct();
     $this->nombre_tabla = "users";
 }
Example #17
0
 function __construct()
 {
     parent::__construct();
     $this->nombreTabla = "archivos";
 }
Example #18
0
 function __construct()
 {
     parent::__construct();
     $this->nombreTabla = "semestres";
 }
Example #19
0
 function __construct()
 {
     parent::__construct();
     $this->nombreTabla = "espaciosacademicos";
 }
 function CarroModelo()
 {
     parent::__construct();
 }
 function SolicitudRentaModelo()
 {
     parent::__construct();
 }
Example #22
0
 function __construct()
 {
     parent::__construct();
     $this->nombre_tabla = "subastas";
 }
Example #23
0
 function __construct()
 {
     parent::__construct();
     $this->nombreTabla = "usuario";
 }
 public function __construct()
 {
     parent::__construct();
     $this->table = 'casos';
     $this->index = 'telefono';
 }
Example #25
0
 function __construct()
 {
     parent::__construct();
     $this->nombreTabla = "universidades";
 }
Example #26
0
 function __construct()
 {
     parent::__construct();
     $this->nombreTabla = "programas";
 }
Example #27
0
 public function __construct($id)
 {
     parent::__construct($id);
 }
Example #28
0
 function __construct()
 {
     parent::__construct();
     $this->nombreTabla = "profesores";
 }
Example #29
0
 public function __construct()
 {
     parent::__construct();
 }
 function FacturaModelo()
 {
     parent::__construct();
 }