Current File : /home/karenpetzb/application/models/AnnonceRight.php |
<?php
class AnnonceRight extends Zend_Db_Table
{
protected $_name = 'annonce_right';
protected $_primary = 'ID';
public function getAnnonces() {
return $this->select()->where('isSHOW = 0')->order('NOM ASC')->query()->fetchAll();
}
public function getAllAnnonces() {
return $this->select()->order('NOM ASC')->query()->fetchAll();
}
public function getAnnoncesByShow($idCat) {
return $this->select()->where('isSHOW = 0')->where("ID_CATS LIKE '%:".$idCat.":%' OR ID_CATS LIKE '%:0:%' ")->order('NOM ASC')->query()->fetchAll();
}
}
?>