home/karenpetzb/application/models/FAQType.php 0000604 00000000535 15071155332 0015412 0 ustar 00 <?php class FAQType extends Zend_Db_Table { protected $_name = 'faq_type'; protected $_primary = 'ID'; public function getTypes() { return $this->select()->where('isACTIVE', 1)->order('NOM ASC')->query()->fetchAll(); } public function getTypesAll() { return $this->select()->order('NOM ASC')->query()->fetchAll(); } } ?>