<?php
class AnnonceFrontHeader extends Zend_Db_Table
{
protected $_name = 'annonce_front_header';
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();
}
}
?>