Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function hook_views_query_alter(&$view, &$query) {
  2.  
  3. if ($view->name == 'my_view_name') {
  4.  
  5. //print_r($query);
  6. if (!isset($query->where[1]['conditions'][0] ))
  7. {
  8. $query->where[1]['conditions'][0] = array(
  9. 'field' => 'guarantee.vin',
  10. 'value' => 'X',
  11. 'operator' =>'LIKE'
  12. );
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement