Exemplo n.º 1
0
 function __construct()
 {
     $this->table = 'comentario';
     $this->masterTable = 'noticia';
     $this->masterView = 'noticia';
     $this->externalIndex = 'noticia_id';
     $this->fields = array('texto', 'usuario_id');
     parent::__construct();
 }
Exemplo n.º 2
0
 function __construct()
 {
     $this->table = 'fotosDePrueba';
     $this->listTable = 'fotosDePrueba';
     $this->masterTable = 'pruebas';
     $this->masterView = 'pruebas';
     $this->externalIndex = 'pruebas_id';
     $this->fields = array('image');
     $this->level = 0;
     parent::__construct();
 }
Exemplo n.º 3
0
 function __construct()
 {
     $this->table = 'llegada';
     $this->listTable = 'llegadaList';
     $this->masterTable = 'carrera';
     $this->masterView = 'carreraConLlegadas';
     $this->externalIndex = 'carrera_id';
     $this->fields = array('tiempo', 'puesto', 'inscripcion_id');
     $this->level = 10;
     parent::__construct();
 }
Exemplo n.º 4
0
 function __construct()
 {
     $this->table = 'inscripcion';
     $this->listTable = 'inscripcionList';
     $this->masterTable = 'carrera';
     $this->masterView = 'carreraConInscripciones';
     $this->externalIndex = 'carrera_id';
     $this->fields = array('equipo_id', 'categoria_id');
     $this->level = 10;
     parent::__construct();
 }