Current File : /home/k/a/r/karenpetzb/www/items/category/AnnonceLeft.php.tar |
home/karenpetzb/application/models/AnnonceLeft.php 0000604 00000001071 15071155404 0016331 0 ustar 00 <?php
class AnnonceLeft extends Zend_Db_Table
{
protected $_name = 'annonce_left';
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();
}
}
?>