You are here

function views_handler_field_term_regcode_tid::option_definition in Registration codes 7

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

Implement option_definition.

Overrides views_handler_field_prerender_list::option_definition

File

includes/views_handler_field_term_regcode_tid.inc, line 17

Class

views_handler_field_term_regcode_tid
Class views_handler_field_term_regcode_tid.

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;
}