You are here

class content_handler_argument in Content Construction Kit (CCK) 6.2

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

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

Hierarchy

Expanded class hierarchy of content_handler_argument

File

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

View source
class content_handler_argument extends views_handler_argument {
  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