function views_many_to_one_helper::get_join in Views (for Drupal 7) 6.2
Same name and namespace in other branches
- 6.3 includes/handlers.inc \views_many_to_one_helper::get_join()
 - 7.3 includes/handlers.inc \views_many_to_one_helper::get_join()
 
3 calls to views_many_to_one_helper::get_join()
- views_many_to_one_helper::add_table in includes/
handlers.inc  - Add a table to the query.
 - views_many_to_one_helper::ensure_my_table in includes/
handlers.inc  - Override ensure_my_table so we can control how this joins in. The operator actually has influence over joining.
 - views_many_to_one_helper::summary_join in includes/
handlers.inc  - Provide the proper join for summary queries. This is important in part because it will cooperate with other arguments if possible.
 
File
- includes/
handlers.inc, line 598  - handlers.inc Defines the various handler objects to help build and display views.
 
Class
- views_many_to_one_helper
 - This many to one helper object is used on both arguments and filters.
 
Code
function get_join() {
  return $this->handler
    ->get_join();
}