You are here

function views_plugin_query_default::init in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 plugins/views_plugin_query_default.inc \views_plugin_query_default::init()

Constructor; Create the basic query object and fill with default values.

Overrides views_plugin_query::init

File

plugins/views_plugin_query_default.inc, line 87
views_plugin_query_default.inc Defines the default query object which builds SQL to execute using the Drupal database API.

Class

views_plugin_query_default
Object used to create a SELECT query.

Code

function init($base_table = 'node', $base_field = 'nid', $options) {
  parent::init($base_table, $base_field, $options);
  $this->base_table = $base_table;

  // Predefine these above, for clarity.
  $this->base_field = $base_field;
  $this->relationships[$base_table] = array(
    'link' => NULL,
    'table' => $base_table,
    'alias' => $base_table,
    'base' => $base_table,
  );

  // init the table queue with our primary table.
  $this->table_queue[$base_table] = array(
    'alias' => $base_table,
    'table' => $base_table,
    'relationship' => $base_table,
    'join' => NULL,
  );

  // init the tables with our primary table
  $this->tables[$base_table][$base_table] = array(
    'count' => 1,
    'alias' => $base_table,
  );

  /**
  * -- we no longer want the base field to appear automatigically.
     if ($base_field) {
       $this->fields[$base_field] = array(
         'table' => $base_table,
         'field' => $base_field,
         'alias' => $base_field,
       );
     }
  */
  $this->count_field = array(
    'table' => $base_table,
    'field' => $base_field,
    'alias' => $base_field,
    'count' => TRUE,
  );
}