Skip to content

Instantly share code, notes, and snippets.

@paulchubatyy
Created April 13, 2011 13:25
Show Gist options
  • Save paulchubatyy/917533 to your computer and use it in GitHub Desktop.
Save paulchubatyy/917533 to your computer and use it in GitHub Desktop.
<?php
class Model_Builder_Comment extends Jelly_Builder {
public function get_user_posts_comments(Model_Author $author)
{
// Get author's posts ids
$post_ids = $author->get('posts')->as_array('id');
// Get the comments that belong to these posts
return $this->where('post_id', 'IN', $post_ids);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment