<?php
class AnnonceContent extends Zend_Db_Table
{
protected $_name = 'annonce_content';
protected $_primary = 'ID';
public function getAnnoncesByShow($isShow) {
return $this->select()->where('isSHOW = '.$isShow)->order('isSHOW ASC')->order('TITRE ASC')->query()->fetchAll();
}
}
?>