You are here

function views_handler_filter_tag_font_tid::option_definition in @font-your-face 6.2

Same name and namespace in other branches
  1. 7.2 modules/fontyourface_ui/views/views_handler_filter_tag_font_tid.inc \views_handler_filter_tag_font_tid::option_definition()
  2. 7 views/views_handler_filter_tag_font_tid.inc \views_handler_filter_tag_font_tid::option_definition()

File

views/views_handler_filter_tag_font_tid.inc, line 18
Views handler.

Class

views_handler_filter_tag_font_tid
Filter by tag id. Largely copied from views_handler_filter_term_node_tid.inc

Code

function option_definition() {
  $options = parent::option_definition();
  $options['type'] = array(
    'default' => 'textfield',
  );
  return $options;
}