array( 'left_field' => 'lid', 'field' => 'lid', ), // location_fax links to node through location_instance via lid. 'node' => array( 'left_table' => 'location_instance', 'left_field' => 'lid', 'field' => 'lid', ), // location_fax links to node_revisions through location_instance via lid. 'node_revisions' => array( 'left_table' => 'location_instance', 'left_field' => 'lid', 'field' => 'lid', ), // location_fax links to users through location_instance via lid. 'users' => array( 'left_table' => 'location_instance', 'left_field' => 'lid', 'field' => 'lid', ), ); // ---------------------------------------------------------------- // location_fax table -- fields $data['location_fax']['fax'] = array( 'title' => t('Fax'), 'help' => t('The fax number of the selected location.'), 'field' => array( 'click sortable' => TRUE, ), 'argument' => array( 'handler' => 'views_handler_argument_string', 'empty field name' => t('None'), ), 'filter' => array( 'handler' => 'views_handler_filter_string', 'allow empty' => TRUE, ), ); return $data; }