You are here

public function print_join_page_counter::construct in Printer, email and PDF versions 7.2

Same name and namespace in other branches
  1. 6 print_join_page_counter.inc \print_join_page_counter::construct()
  2. 7 print_join_page_counter.inc \print_join_page_counter::construct()

@inheritdoc

Overrides views_join::construct

File

./print_join_page_counter.inc, line 18
Custom Views integration join for the page counters.

Class

print_join_page_counter
Class print_join_page_counter.

Code

public function construct($table = NULL, $left_table = NULL, $left_field = NULL, $field = NULL, $extra = array(), $type = 'LEFT') {

  // PHP 4 doesn't call constructors of the base class automatically from a
  // constructor of a derived class. It is your responsibility to propagate
  // the call to constructors upstream where appropriate.
  parent::construct($table, $left_table, $left_field, $field, $extra, $type);
}