You are here

class content_plugin_display_references in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 includes/views/handlers/content_plugin_display_simple.inc \content_plugin_display_references

Hierarchy

Expanded class hierarchy of content_plugin_display_references

1 string reference to 'content_plugin_display_references'
content_views_plugins in includes/views/content.views.inc
Implementation of hook_views_plugins.

File

includes/views/handlers/content_plugin_display_simple.inc, line 21
Handler for 'content_simple' display.

View source
class content_plugin_display_references extends content_plugin_display_simple {
  function query() {
    $options = $this
      ->get_option('content_options');
    if ($options['string'] !== '') {
      $like = $GLOBALS["db_type"] == 'pgsql' ? "ILIKE" : "LIKE";
      $match_clauses = array(
        'contains' => "{$like} '%%%s%%'",
        'equals' => "= '%s'",
        'starts_with' => "{$like} '%s%%'",
      );
      $clause = isset($match_clauses[$options['match']]) ? $match_clauses[$options['match']] : $match_clauses['contains'];
      $alias = $this->view->query
        ->ensure_table($options['table']);
      $this->view->query
        ->add_where(NULL, "{$alias}.{$options['field_string']} {$clause}", $options['string']);
    }
    elseif ($options['ids']) {
      $alias = $this->view->query
        ->ensure_table($options['table']);
      $this->view->query
        ->add_where(NULL, "{$alias}.{$options['field_id']} IN (" . db_placeholders($options['ids']) . ')', $options['ids']);
    }
  }

}

Members