Ejemplo n.º 1
0
 /**
  * Overrides \Drupal\views\Plugin\views\display\PathPluginBase::buildOptionsForm().
  */
 public function buildOptionsForm(&$form, FormStateInterface $form_state)
 {
     // It is very important to call the parent function here.
     parent::buildOptionsForm($form, $form_state);
     switch ($form_state['section']) {
         case 'title':
             $title = $form['title'];
             // A little juggling to move the 'title' field beyond our checkbox.
             unset($form['title']);
             $form['sitename_title'] = array('#type' => 'checkbox', '#title' => t('Use the site name for the title'), '#default_value' => $this->getOption('sitename_title'));
             $form['title'] = $title;
             $form['title']['#states'] = array('visible' => array(':input[name="sitename_title"]' => array('checked' => FALSE)));
             break;
         case 'displays':
             $form['#title'] .= t('Attach to');
             $displays = array();
             foreach ($this->view->storage->get('display') as $display_id => $display) {
                 // @todo The display plugin should have display_title and id as well.
                 if ($this->view->displayHandlers->has($display_id) && $this->view->displayHandlers->get($display_id)->acceptAttachments()) {
                     $displays[$display_id] = $display['display_title'];
                 }
             }
             $form['displays'] = array('#title' => t('Displays'), '#type' => 'checkboxes', '#description' => t('The feed icon will be available only to the selected displays.'), '#options' => $displays, '#default_value' => $this->getOption('displays'));
             break;
         case 'path':
             $form['path']['#description'] = t('This view will be displayed by visiting this path on your site. It is recommended that the path be something like "path/%/%/feed" or "path/%/%/rss.xml", putting one % in the path for each contextual filter you have defined in the view.');
     }
 }
Ejemplo n.º 2
0
 /**
  * Overrides \Drupal\views\Plugin\views\display\callbackPluginBase::buildOptionsForm().
  */
 public function buildOptionsForm(&$form, FormStateInterface $form_state)
 {
     parent::buildOptionsForm($form, $form_state);
     switch ($form_state->get('section')) {
         case 'menu':
             $form['#title'] .= $this->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' => $this->t('Type'), '#type' => 'radios', '#options' => array('none' => $this->t('No menu entry'), 'normal' => $this->t('Normal menu entry'), 'tab' => $this->t('Menu tab'), 'default tab' => $this->t('Default menu tab')), '#default_value' => $menu['type']);
             $form['menu']['title'] = array('#prefix' => '<div class="views-left-50">', '#title' => $this->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' => $this->t('Description'), '#type' => 'textfield', '#default_value' => $menu['description'], '#description' => $this->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 parent selector if Menu UI module is enabled.
             $menu_parent = $menu['menu_name'] . ':' . $menu['parent'];
             if (\Drupal::moduleHandler()->moduleExists('menu_ui')) {
                 $menu_link = 'views_view:views.' . $form_state->get('view')->id() . '.' . $form_state->get('display_id');
                 $form['menu']['parent'] = \Drupal::service('menu.parent_form_selector')->parentSelectElement($menu_parent, $menu_link);
                 $form['menu']['parent'] += array('#title' => $this->t('Parent'), '#description' => $this->t('The maximum depth for a link and all its children is fixed. Some menu links may not be available as parents if selecting them would exceed this limit.'), '#attributes' => array('class' => array('menu-title-select')), '#states' => array('visible' => array(array(':input[name="menu[type]"]' => array('value' => 'normal')), array(':input[name="menu[type]"]' => array('value' => 'tab')))));
             } else {
                 $form['menu']['parent'] = array('#type' => 'value', '#value' => $menu_parent);
                 $form['menu']['markup'] = array('#markup' => $this->t('Menu selection requires the activation of Menu UI module.'));
             }
             $form['menu']['weight'] = array('#title' => $this->t('Weight'), '#type' => 'textfield', '#default_value' => isset($menu['weight']) ? $menu['weight'] : 0, '#description' => $this->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' => $this->t('Context'), '#suffix' => '</div>', '#type' => 'checkbox', '#default_value' => !empty($menu['context']), '#description' => $this->t('Displays the link in contextual links'), '#states' => array('visible' => array(':input[name="menu[type]"]' => array('value' => 'tab'))));
             break;
         case 'tab_options':
             $form['#title'] .= $this->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">' . $this->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' => $this->t('Parent menu item'), '#type' => 'radios', '#options' => array('none' => $this->t('Already exists'), 'normal' => $this->t('Normal menu item'), 'tab' => $this->t('Menu tab')), '#default_value' => $tab_options['type']);
             $form['tab_options']['title'] = array('#prefix' => '<div class="views-left-75">', '#title' => $this->t('Title'), '#type' => 'textfield', '#default_value' => $tab_options['title'], '#description' => $this->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' => $this->t('Description'), '#type' => 'textfield', '#default_value' => $tab_options['description'], '#description' => $this->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')))));
             $form['tab_options']['weight'] = array('#suffix' => '</div>', '#title' => $this->t('Tab weight'), '#type' => 'textfield', '#default_value' => $tab_options['weight'], '#size' => 5, '#description' => $this->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;
     }
 }
Ejemplo n.º 3
0
 /**
  * {@inheritdoc}
  */
 public function buildOptionsForm(&$form, FormStateInterface $form_state)
 {
     parent::buildOptionsForm($form, $form_state);
     if ($form_state->get('section') === 'auth') {
         $form['#title'] .= $this->t('The supported authentication methods for this view');
         $form['auth'] = array('#type' => 'checkboxes', '#title' => $this->t('Authentication methods'), '#description' => $this->t('These are the supported authentication providers for this view. When this view is requested, the client will be forced to authenticate with one of the selected providers. Make sure you set the appropiate requirements at the <em>Access</em> section since the Authentication System will fallback to the anonymous user if it fails to authenticate. For example: require Access: Role | Authenticated User.'), '#options' => $this->getAuthOptions(), '#default_value' => $this->getOption('auth'));
     }
 }