Exemplo n.º 1
0
 function __construct()
 {
     $this->table = 'noticia';
     $this->fields = array('texto', 'fecha');
     $this->level = 0;
     parent::__construct();
 }
Exemplo n.º 2
0
 function __construct()
 {
     $this->table = 'equipo';
     $this->listTable = 'equipoConCategoria';
     $this->fields = array('nombre', 'foto', 'comentario', 'categoria_id');
     $this->level = 1;
     parent::__construct();
 }
 function __construct()
 {
     $this->table = 'carrera';
     $this->detailView = 'inscripcion';
     $this->fields = array('nombre', 'fecha', 'lugar', 'distancia', 'mapa');
     $this->level = 10;
     parent::__construct();
 }
Exemplo n.º 4
0
 function __construct()
 {
     $this->table = 'foto';
     $this->listTable = 'fotoConMiembro';
     $this->fields = array('titulo', 'foto', 'comentario', 'miembro_id');
     $this->level = 10;
     parent::__construct();
 }
Exemplo n.º 5
0
 function __construct()
 {
     $this->table = 'miembro';
     $this->listTable = 'miembroConEquipo';
     $this->fields = array('nombre', 'foto', 'password', 'telefono', 'correo', 'equipo_id');
     $this->level = 1;
     parent::__construct();
 }
Exemplo n.º 6
0
 function __construct()
 {
     $this->table = 'piloto';
     $this->listTable = 'pilotoConEquipo';
     $this->fields = array('nombre', 'direccion', 'telefono', 'email', 'fecha_de_nacimiento', 'foto', 'equipo_id');
     $this->level = 10;
     parent::__construct();
 }
Exemplo n.º 7
0
 function __construct()
 {
     $this->table = 'pruebas';
     $this->listTable = 'pruebasView';
     $this->detailView = 'fotoDePrueba';
     $this->fields = array('nombre', 'fecha', 'pagado', 'comentario', 'usuario_id', 'foto_id');
     $this->level = 0;
     parent::__construct();
 }
Exemplo n.º 8
0
 function __construct()
 {
     $this->table = 'pruebas';
     $this->listTable = '';
     $this->formTemplate = 'pruebaForm.tpl';
     $this->listTemplate = 'pruebaList.tpl';
     $this->detailView = 'piloto';
     $this->fields = array('nombre', 'fecha', 'pagado', 'comentario', 'usuario_id', 'foto');
     $this->level = 0;
     parent::__construct();
 }
Exemplo n.º 9
0
 function __construct()
 {
     $this->level = 10;
     parent::__construct();
 }