Current File : /home/k/a/r/karenpetzb/www/items/category/AnnonceRight.php.tar |
home/karenpetzb/application/models/AnnonceRight.php 0000604 00000001073 15071364541 0016522 0 ustar 00 <?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();
}
}
?>