Created
September 18, 2015 21:47
-
-
Save caionorder/dcfb75f5f45a1d4aaf3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$infos = $this->Page->Galeria->find('all', array( | |
'limit' => 10000, | |
'conditions' => array( | |
"Galeria.status" => 1, | |
), | |
'group by' => 'Galeria.categoria_id', | |
)); | |
$this->set('galerias',$infos); | |
$infos = $this->Page->Categoria->find('all', array( | |
'limit' => 10000, | |
'group by' => 'Categoria.id', | |
)); | |
$this->set('categorias',$infos); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment