content_handler_filter_numeric.inc in Content Construction Kit (CCK) 6.3
Same filename and directory in other branches
The subclass simply adds properties, for field-specific subclasses to use if they need to.
File
includes/views/handlers/content_handler_filter_numeric.incView source
<?php
/**
* @file
* The subclass simply adds properties,
* for field-specific subclasses to use if they need to.
*/
class content_handler_filter_numeric extends views_handler_filter_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'];
}
}
Classes
Name | Description |
---|---|
content_handler_filter_numeric | @file The subclass simply adds properties, for field-specific subclasses to use if they need to. |