Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. /**
  2.  * Implements hook_views_data_alter().
  3.  *
  4.  * Add the property nid from the url as condition to the table join.
  5.  */
  6. function mh_search_wish_views_data_alter(&$data) {
  7.   if (isset($_GET['property-nid'])) {
  8.     $data['search_wish_hit_status']['table']['join']['node']['extra'] = array(
  9.       array(
  10.         'field' => 'property_nid',
  11.         'value' => $_GET['property-nid'],
  12.       ),
  13.     );
  14.   }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement