function views_handler_filter_term_node_tid_depth_join::option_definition
Overrides views_handler_filter_term_node_tid::option_definition
File
-
modules/
taxonomy/ views_handler_filter_term_node_tid_depth_join.inc, line 30
Class
- views_handler_filter_term_node_tid_depth_join
- Filter handler for taxonomy terms with depth.
Code
public function option_definition() {
$options = parent::option_definition();
$options['depth'] = array(
'default' => 0,
);
return $options;
}