class content_handler_argument_numeric in Content Construction Kit (CCK) 6.3
Same name and namespace in other branches
- 6.2 includes/views/handlers/content_handler_argument_numeric.inc \content_handler_argument_numeric
@file The subclass simply adds properties, for field-specific subclasses to use if they need to.
Hierarchy
- class \content_handler_argument_numeric extends \views_handler_argument_numeric
Expanded class hierarchy of content_handler_argument_numeric
2 string references to 'content_handler_argument_numeric'
- content_views_field_views_data in includes/
views/ content.views.inc - content_views_handlers in includes/
views/ content.views.inc - Implementation of hook_views_handlers().
File
- includes/
views/ handlers/ content_handler_argument_numeric.inc, line 8 - The subclass simply adds properties, for field-specific subclasses to use if they need to.
View source
class content_handler_argument_numeric extends views_handler_argument_numeric {
var $content_field;
function construct() {
parent::construct();
$this->content_field = content_fields($this->definition['content_field_name']);
$this->additional_fields = $this->definition['additional fields'];
}
}