Skip to content

Instantly share code, notes, and snippets.

@cpierce
Created January 12, 2015 15:36
Show Gist options
  • Save cpierce/7f471a0ea32fbc310e49 to your computer and use it in GitHub Desktop.
Save cpierce/7f471a0ea32fbc310e49 to your computer and use it in GitHub Desktop.
class SponsorDivisionsController extends AppController {
public function index() {
$this->SponsorDivision->Behaviors->load('Containable');
$sponsordivisions = $this->SponsorDivision->find('all', array(
'contain' => array(
'Sponsor',
),
'order' => array(
'SponsorDivision.SponsorDivision' => 'asc'),
),
);
debug($sponsordivisions);
$this->set(compact('sponsordivisions'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment