Skip to content

Instantly share code, notes, and snippets.

@notomato
Created August 17, 2012 10:01
Show Gist options
  • Save notomato/3377619 to your computer and use it in GitHub Desktop.
Save notomato/3377619 to your computer and use it in GitHub Desktop.
Query api
<?php
$query = new Query(array(
'type' => 'read',
'model' => 'app\models\Post',
'fields' => array('Post.title', 'Post.body'),
'conditions' => array('Post.id' => new Query(array(
'type' => 'read',
'fields' => array('post_id'),
'model' => 'app\models\Tagging',
'conditions' => array('Tag.name' => array('foo', 'bar', 'baz')),
)))
));
// http://www.slideshare.net/nateabele/the-zen-of-lithium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment