18 lines
337 B
PHP
18 lines
337 B
PHP
<?php
|
|
class Application_Model_Aide extends Zend_Db_Table_Abstract
|
|
{
|
|
protected $_name = 'aide';
|
|
|
|
/**
|
|
* Enter description here ...
|
|
* @param array $keys
|
|
*/
|
|
public function texte($methode, $keys)
|
|
{
|
|
$sql = $this->select()
|
|
->where('methode = ?', $methode)
|
|
->where('champ IN ?', $keys);
|
|
return $this->fetchAll($sql);
|
|
}
|
|
|
|
} |