You are here

class content_handler_argument_string in Content Construction Kit (CCK) 6.2

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

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

Hierarchy

Expanded class hierarchy of content_handler_argument_string

1 string reference to 'content_handler_argument_string'
content_views_field_views_data in includes/views/content.views.inc

File

includes/views/handlers/content_handler_argument_string.inc, line 8
The subclass simply adds properties, for field-specific subclasses to use if they need to.

View source
class content_handler_argument_string extends views_handler_argument_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'];
  }

}

Members