Created
May 24, 2012 17:04
-
-
Save tonysm/2782815 to your computer and use it in GitHub Desktop.
Exemplo de listagem de models associados
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
<?php | |
class InscricoesController extends AppController { | |
//seus códigos | |
... | |
public function inscricao (){ | |
$tipos = $this->Inscricao->Tipo->find('list'); | |
$this->set(compact('tipos')); | |
} | |
} |
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
<?php | |
//no model coloca | |
class Tipo extends AppModel { | |
public $displayField = 'nome'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment