You are here

content_handler_filter_string.inc in Content Construction Kit (CCK) 6.2

Same filename and directory in other branches
  1. 6.3 includes/views/handlers/content_handler_filter_string.inc

The subclass simply adds properties, for field-specific subclasses to use if they need to.

File

includes/views/handlers/content_handler_filter_string.inc
View source
<?php

/**
 * @file
 * The subclass simply adds properties,
 * for field-specific subclasses to use if they need to.
 */
class content_handler_filter_string extends views_handler_filter_string {
  var $content_field;
  function construct() {
    parent::construct();
    $this->content_field = content_fields($this->definition['content_field_name']);
    $this->additional_fields = $this->definition['additional fields'];
  }

}

Classes

Namesort descending Description
content_handler_filter_string @file The subclass simply adds properties, for field-specific subclasses to use if they need to.