Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created January 11, 2013 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pedroelsner/4510729 to your computer and use it in GitHub Desktop.
Save pedroelsner/4510729 to your computer and use it in GitHub Desktop.
Exemplo(Geazi) - Filter Results com agregação de filtros no mesmo campo
<?php
$this->FilterResults->addFilters(
array(
'OR' => array(
'filter1' => array(
'TABELA.CAMPO'=> array('operator' => '=')
)
'filter2' => array(
'TABELA.CAMPO'=> array('operator' => '=')
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment