Skip to content

Instantly share code, notes, and snippets.

@tonysm
Created May 24, 2012 17:04
Show Gist options
  • Save tonysm/2782815 to your computer and use it in GitHub Desktop.
Save tonysm/2782815 to your computer and use it in GitHub Desktop.
Exemplo de listagem de models associados
<?php
class InscricoesController extends AppController {
//seus códigos
...
public function inscricao (){
$tipos = $this->Inscricao->Tipo->find('list');
$this->set(compact('tipos'));
}
}
<?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