<?php
class AnnonceFooter extends Zend_Db_Table
{
protected $_name = 'annonce_footer';
protected $_primary = 'ID';
public function getAnnoncesByShow($isShow, $controller) {
return $this->select()->where('isSHOW = '.$isShow)->where("CONT_NAME LIKE '%".$controller."%' ")->order('isSHOW ASC')->order('TITRE ASC')->query()->fetchAll();
}
}
?>