You are here

class views_handler_argument_string_content in Content Construction Kit (CCK) 6

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

Hierarchy

Expanded class hierarchy of views_handler_argument_string_content

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

File

includes/content.views.inc, line 238

View source
class views_handler_argument_string_content 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