Skip to content

Instantly share code, notes, and snippets.

@silasrm
Created October 25, 2013 23:13
Show Gist options
  • Save silasrm/7163251 to your computer and use it in GitHub Desktop.
Save silasrm/7163251 to your computer and use it in GitHub Desktop.
controller:
public function buscaItensAction()
{
$query = $this->getRequest()->getParam('q');
$limit = $this->getRequest()->getParam('limit');
$reg = $this->model->buscaSelect(
$query,
$limit,
array(
'campo = ?' => $outraCondicao,
)
);
$this->getHelper('json')->sendJson($reg);
}
model:
public function buscaSelect($query, $limite = 8, array $conditions = array())
{
$_conditions = array(
'condicao_fixa = ?' => 0,
);
$conditions = array_merge($conditions, $_conditions);
return $this->fetchAll(
$conditions,
$limite,
null,
null,
array('id', 'campo1', 'campo2', 'campo3')
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment