Skip to content

Instantly share code, notes, and snippets.

@andreia
Created January 4, 2011 13:18
Show Gist options
  • Save andreia/764750 to your computer and use it in GitHub Desktop.
Save andreia/764750 to your computer and use it in GitHub Desktop.
<?php
class MyFormFilter extends BaseMyFormFilter{
public function doBuildQuery(array $values){
$query = parent::doBuildQuery($values);
$query->leftJoin($query->getRootAlias().".Translation t");
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment