extranet/application/models/PaysGiants.php
2013-09-10 13:53:27 +00:00

21 lines
428 B
PHP

<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
class Application_Model_PaysGiants extends Zend_Db_Table_Abstract
{
protected $_name = 'pays_giants';
public function getPays($pays)
{
$sql = $this->select()
->where('pays = ?', $pays);
$result = $this->getAdapter()->fetchRow($sql);
return ($result);
}
}
?>