You are here

function views_handler_argument_many_to_one::ensure_my_table in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 handlers/views_handler_argument_many_to_one.inc \views_handler_argument_many_to_one::ensure_my_table()
  2. 7.3 handlers/views_handler_argument_many_to_one.inc \views_handler_argument_many_to_one::ensure_my_table()

Override ensure_my_table so we can control how this joins in. The operator actually has influence over joining.

Overrides views_handler::ensure_my_table

File

handlers/views_handler_argument_many_to_one.inc, line 72

Class

views_handler_argument_many_to_one
An argument handler for use in fields that have a many to one relationship with the table(s) to the left. This adds a bunch of options that are reasonably common with this type of relationship. Definition terms:

Code

function ensure_my_table() {
  $this->helper
    ->ensure_my_table();
}