You are here

function views_foundation_plugin_style_navigation::options_form in Views Foundation 7

Provide a form for setting options.

Overrides views_plugin_style::options_form

File

view/views_foundation_plugin_style_navigation.inc, line 34
Views Foundation Navigation plugin.

Class

views_foundation_plugin_style_navigation
Style plugin to render rows in a Foundation Navigation.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);

  // Pre-build option list for the navigation field.
  $fields = array(
    '' => t('- None -'),
  );
  foreach ($this->display->handler
    ->get_handlers('field') as $field => $handler) {
    $fields[$field] = $handler
      ->ui_name();
  }
  $form['nav_field'] = array(
    '#type' => 'select',
    '#title' => t('Navigation field'),
    '#options' => $fields,
    '#default_value' => $this->options['nav_field'],
    '#description' => t('Select the field that will be used as the top links.'),
  );
  $form['nav_vertical'] = array(
    '#type' => 'checkbox',
    '#title' => t('Vertical navigation'),
    '#description' => t('Select this checkbox if you want vertical navigation.'),
    '#default_value' => $this->options['nav_vertical'],
  );
  $form['nav_large'] = array(
    '#type' => 'checkbox',
    '#title' => t('Large flyouts'),
    '#description' => t('Select this checkbox if you want large flyouts.'),
    '#default_value' => $this->options['nav_large'],
  );
  $form['nav_count'] = array(
    '#type' => 'select',
    '#title' => t('Flyout "right" class'),
    '#options' => drupal_map_assoc(range(0, 10)),
    '#default_value' => $this->options['nav_count'],
    '#description' => t('Select after how many links add the class "right" to the flyout.'),
  );
  $form['nav_link'] = array(
    '#type' => 'checkbox',
    '#title' => t('Submenu links'),
    '#default_value' => $this->options['nav_link'],
    '#description' => t('Select this checkbox if you want to display all fields as links in the submenu'),
  );
}