Example #1
0
 /**
  * Filters the records according to the `email` column.
  */
 public function alter_query_with_filter(Query $query, $filter_value)
 {
     if ($filter_value) {
         $query->filter_by_author_email($filter_value);
     }
     return $query;
 }