function content_handler_field::construct in Content Construction Kit (CCK) 6.3
Same name and namespace in other branches
- 6.2 includes/views/handlers/content_handler_field.inc \content_handler_field::construct()
File
- includes/
views/ handlers/ content_handler_field.inc, line 15 - The subclass adds basic field and formatter info, for field-specific subclasses to use if they need to.
Class
- content_handler_field
- @file The subclass adds basic field and formatter info, for field-specific subclasses to use if they need to.
Code
function construct() {
parent::construct();
$this->content_field = content_fields($this->definition['content_field_name']);
}