public function Page::buildOptionsForm

Overrides \Drupal\views\Plugin\views\display\callbackPluginBase::buildOptionsForm().

Overrides PathPluginBase::buildOptionsForm

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php, line 143
Contains \Drupal\views\Plugin\views\display\Page.

Class

Page
The plugin that handles a full page.

Namespace

Drupal\views\Plugin\views\display

Code

public function buildOptionsForm(&$form, &$form_state) {
  parent::buildOptionsForm($form, $form_state);
  switch ($form_state['section']) {
    case 'menu':
      $form['#title'] .= t('Menu item entry');
      $form['menu'] = array(
        '#prefix' => '<div class="clearfix">',
        '#suffix' => '</div>',
        '#tree' => TRUE,
      );
      $menu = $this
        ->getOption('menu');
      if (empty($menu)) {
        $menu = array(
          'type' => 'none',
          'title' => '',
          'weight' => 0,
        );
      }
      $form['menu']['type'] = array(
        '#prefix' => '<div class="views-left-30">',
        '#suffix' => '</div>',
        '#title' => t('Type'),
        '#type' => 'radios',
        '#options' => array(
          'none' => t('No menu entry'),
          'normal' => t('Normal menu entry'),
          'tab' => t('Menu tab'),
          'default tab' => t('Default menu tab'),
        ),
        '#default_value' => $menu['type'],
      );
      $form['menu']['title'] = array(
        '#prefix' => '<div class="views-left-50">',
        '#title' => t('Menu link title'),
        '#type' => 'textfield',
        '#default_value' => $menu['title'],
        '#states' => array(
          'visible' => array(
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'normal',
              ),
            ),
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'tab',
              ),
            ),
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'default tab',
              ),
            ),
          ),
        ),
      );
      $form['menu']['description'] = array(
        '#title' => t('Description'),
        '#type' => 'textfield',
        '#default_value' => $menu['description'],
        '#description' => t("Shown when hovering over the menu link."),
        '#states' => array(
          'visible' => array(
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'normal',
              ),
            ),
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'tab',
              ),
            ),
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'default tab',
              ),
            ),
          ),
        ),
      );

      // Only display the menu selector if menu module is enabled.
      if (\Drupal::moduleHandler()
        ->moduleExists('menu')) {
        $form['menu']['name'] = array(
          '#title' => t('Menu'),
          '#type' => 'select',
          '#options' => menu_get_menus(),
          '#default_value' => $menu['name'],
          '#states' => array(
            'visible' => array(
              array(
                ':input[name="menu[type]"]' => array(
                  'value' => 'normal',
                ),
              ),
              array(
                ':input[name="menu[type]"]' => array(
                  'value' => 'tab',
                ),
              ),
            ),
          ),
        );
      }
      else {
        $form['menu']['name'] = array(
          '#type' => 'value',
          '#value' => $menu['name'],
        );
        $form['menu']['markup'] = array(
          '#markup' => t('Menu selection requires the activation of menu module.'),
        );
      }
      $form['menu']['weight'] = array(
        '#title' => t('Weight'),
        '#type' => 'textfield',
        '#default_value' => isset($menu['weight']) ? $menu['weight'] : 0,
        '#description' => t('In the menu, the heavier links will sink and the lighter links will be positioned nearer the top.'),
        '#states' => array(
          'visible' => array(
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'normal',
              ),
            ),
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'tab',
              ),
            ),
            array(
              ':input[name="menu[type]"]' => array(
                'value' => 'default tab',
              ),
            ),
          ),
        ),
      );
      $form['menu']['context'] = array(
        '#title' => t('Context'),
        '#suffix' => '</div>',
        '#type' => 'checkbox',
        '#default_value' => !empty($menu['context']),
        '#description' => t('Displays the link in contextual links'),
        '#states' => array(
          'visible' => array(
            ':input[name="menu[type]"]' => array(
              'value' => 'tab',
            ),
          ),
        ),
      );
      break;
    case 'tab_options':
      $form['#title'] .= t('Default tab options');
      $tab_options = $this
        ->getOption('tab_options');
      if (empty($tab_options)) {
        $tab_options = array(
          'type' => 'none',
          'title' => '',
          'weight' => 0,
        );
      }
      $form['tab_markup'] = array(
        '#markup' => '<div class="form-item description">' . t('When providing a menu item as a tab, Drupal needs to know what the parent menu item of that tab will be. Sometimes the parent will already exist, but other times you will need to have one created. The path of a parent item will always be the same path with the last part left off. i.e, if the path to this view is <em>foo/bar/baz</em>, the parent path would be <em>foo/bar</em>.') . '</div>',
      );
      $form['tab_options'] = array(
        '#prefix' => '<div class="clearfix">',
        '#suffix' => '</div>',
        '#tree' => TRUE,
      );
      $form['tab_options']['type'] = array(
        '#prefix' => '<div class="views-left-25">',
        '#suffix' => '</div>',
        '#title' => t('Parent menu item'),
        '#type' => 'radios',
        '#options' => array(
          'none' => t('Already exists'),
          'normal' => t('Normal menu item'),
          'tab' => t('Menu tab'),
        ),
        '#default_value' => $tab_options['type'],
      );
      $form['tab_options']['title'] = array(
        '#prefix' => '<div class="views-left-75">',
        '#title' => t('Title'),
        '#type' => 'textfield',
        '#default_value' => $tab_options['title'],
        '#description' => t('If creating a parent menu item, enter the title of the item.'),
        '#states' => array(
          'visible' => array(
            array(
              ':input[name="tab_options[type]"]' => array(
                'value' => 'normal',
              ),
            ),
            array(
              ':input[name="tab_options[type]"]' => array(
                'value' => 'tab',
              ),
            ),
          ),
        ),
      );
      $form['tab_options']['description'] = array(
        '#title' => t('Description'),
        '#type' => 'textfield',
        '#default_value' => $tab_options['description'],
        '#description' => t('If creating a parent menu item, enter the description of the item.'),
        '#states' => array(
          'visible' => array(
            array(
              ':input[name="tab_options[type]"]' => array(
                'value' => 'normal',
              ),
            ),
            array(
              ':input[name="tab_options[type]"]' => array(
                'value' => 'tab',
              ),
            ),
          ),
        ),
      );

      // Only display the menu selector if menu module is enabled.
      if (\Drupal::moduleHandler()
        ->moduleExists('menu')) {
        $form['tab_options']['name'] = array(
          '#title' => t('Menu'),
          '#type' => 'select',
          '#options' => menu_get_menus(),
          '#default_value' => $tab_options['name'],
          '#description' => t('Insert item into an available menu.'),
          '#states' => array(
            'visible' => array(
              ':input[name="tab_options[type]"]' => array(
                'value' => 'normal',
              ),
            ),
          ),
        );
      }
      else {
        $form['tab_options']['name'] = array(
          '#type' => 'value',
          '#value' => $tab_options['name'],
        );
        $form['tab_options']['markup'] = array(
          '#markup' => t('Menu selection requires the activation of menu module.'),
        );
      }
      $form['tab_options']['weight'] = array(
        '#suffix' => '</div>',
        '#title' => t('Tab weight'),
        '#type' => 'textfield',
        '#default_value' => $tab_options['weight'],
        '#size' => 5,
        '#description' => t('If the parent menu item is a tab, enter the weight of the tab. Heavier tabs will sink and the lighter tabs will be positioned nearer to the first menu item.'),
        '#states' => array(
          'visible' => array(
            ':input[name="tab_options[type]"]' => array(
              'value' => 'tab',
            ),
          ),
        ),
      );
      break;
  }
}