You are here

public function views_handler_relationship_node_term_data::options_form in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 modules/taxonomy/views_handler_relationship_node_term_data.inc \views_handler_relationship_node_term_data::options_form()
  2. 6.2 modules/taxonomy/views_handler_relationship_node_term_data.inc \views_handler_relationship_node_term_data::options_form()

Provide the label widget that all fields should have.

Overrides views_handler_relationship::options_form

File

modules/taxonomy/views_handler_relationship_node_term_data.inc, line 44
Definition of views_handler_relationship_node_term_data.

Class

views_handler_relationship_node_term_data
Relationship handler to return the taxonomy terms of nodes.

Code

public function options_form(&$form, &$form_state) {
  $vocabularies = taxonomy_get_vocabularies();
  $options = array();
  foreach ($vocabularies as $voc) {
    $options[$voc->machine_name] = check_plain($voc->name);
  }
  $form['vocabularies'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Vocabularies'),
    '#options' => $options,
    '#default_value' => $this->options['vocabularies'],
    '#description' => t('Choose which vocabularies you wish to relate. Remember that every term found will create a new record, so this relationship is best used on just one vocabulary that has only one term per node.'),
  );
  parent::options_form($form, $form_state);
}