Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created February 28, 2011 08:26
Show Gist options
  • Save steffenr/847080 to your computer and use it in GitHub Desktop.
Save steffenr/847080 to your computer and use it in GitHub Desktop.
cakephp recursive
<?php
$this->Hour->Job->bindModel(array('hasOne' => array('UsersJob')));
$jobs = $this->Hour->Job->find('all', array(
'fields' => array('Job.id', 'Job.title', 'Job.description'),
'conditions' => array('UsersJob.user_id' => $this->user_id, 'Job.deleted' => 0),
'recursive' => 0
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment