<?php
class OptionProfil extends Zend_Db_Table
{
protected $_name = 'optionprofil';
protected $_primary = 'ID';
public function getProfils() {
$select = "
SELECT p.ID ID, p.NOM NOM, p.OPTS OPTS
FROM optionprofil AS p
ORDER BY NOM ASC;";
return $this->getAdapter()->fetchAll($select);
}
}
?>