Current File : /home/k/a/r/karenpetzb/www/items/category/AnnonceCms.php.tar |
home/karenpetzb/application/models/AnnonceCms.php 0000604 00000001524 15071177237 0016174 0 ustar 00 <?php
class AnnonceCms extends Zend_Db_Table
{
protected $_name = 'annonce_cms';
protected $_primary = 'ID';
public function getAnnonces() {
return $this->select()->where('isSHOW = 0')->order('POSITION ASC')->order('NOM ASC')->query()->fetchAll();
}
public function getAllAnnonces() {
return $this->select()->order('POSITION ASC')->order('NOM ASC')->query()->fetchAll();
}
public function getAllAnnoncesByCategory($idCat) {
return $this->select()->where("ID_CATS LIKE '%:".$idCat.":%' OR ID_CATS LIKE '%:0:%' ")->order('POSITION ASC')->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('POSITION ASC')->order('NOM ASC')->query()->fetchAll();
}
}
?>