You are here

function views_handler_field_term_regcode_tid::option_definition in Registration codes 6.2

Same name and namespace in other branches
  1. 7.2 includes/views_handler_field_term_regcode_tid.inc \views_handler_field_term_regcode_tid::option_definition()
  2. 7 includes/views_handler_field_term_regcode_tid.inc \views_handler_field_term_regcode_tid::option_definition()

Implement option_definition.

File

includes/views_handler_field_term_regcode_tid.inc, line 13

Class

views_handler_field_term_regcode_tid
Field handler for terms.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['link_to_taxonomy'] = array(
    'default' => TRUE,
  );
  $options['limit'] = array(
    'default' => FALSE,
  );
  $options['vids'] = array(
    'default' => array(),
  );
  return $options;
}