Same name and namespace in other branches
  1. 5.0.x src/Plugin/ViewsSlideshowWidget/PagerFields.php \Drupal\views_slideshow\Plugin\ViewsSlideshowWidget\PagerFields::buildConfigurationForm()

Overrides ViewsSlideshowWidgetBase::buildConfigurationForm

File

src/Plugin/ViewsSlideshowWidget/PagerFields.php, line 32

Class

PagerFields
Provides a pager using fields.

Namespace

Drupal\views_slideshow\Plugin\ViewsSlideshowWidget

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    // Settings for fields pager.
    $options = [];
    // Get each field and it's name.
    foreach ($this->getConfiguration()['view']->display_handler
        ->getHandlers('field') as $field_name => $field) {
        $options[$field_name] = $field->adminLabel();
    }
    // Need to wrap this so it indents correctly.
    $form['views_slideshow_pager_fields_wrapper'] = [
        '#markup' => '<div class="vs-dependent">',
    ];
    $default_values = $this->getConfiguration()['views_slideshow_pager_fields_fields'];
    if (isset($default_values['default'])) {
        $default_values = $default_values['default'];
    }
    // Add ability to choose which fields to show in the pager.
    $form['views_slideshow_pager_fields_fields'] = [
        '#type' => 'checkboxes',
        '#title' => $this->t('Pager fields'),
        '#options' => $options,
        '#default_value' => $default_values,
        '#description' => $this->t('Choose the fields that will appear in the pager.'),
        '#states' => [
            'visible' => [
                ':input[name="' . $this->getConfiguration()['dependency'] . '[enable]"]' => [
                    'checked' => TRUE,
                ],
                ':input[name="' . $this->getConfiguration()['dependency'] . '[type]"]' => [
                    'value' => 'views_slideshow_pager_fields',
                ],
            ],
        ],
    ];
    // Add field to see if they would like to activate slide and pause on pager
    // hover.
    $form['views_slideshow_pager_fields_hover'] = [
        '#type' => 'checkbox',
        '#title' => $this->t('Activate Slide and Pause on Pager Hover'),
        '#default_value' => $this->getConfiguration()['views_slideshow_pager_fields_hover'],
        '#description' => $this->t('Should the slide be activated and paused when hovering over a pager item.'),
        '#states' => [
            'visible' => [
                ':input[name="' . $this->getConfiguration()['dependency'] . '[enable]"]' => [
                    'checked' => TRUE,
                ],
                ':input[name="' . $this->getConfiguration()['dependency'] . '[type]"]' => [
                    'value' => 'views_slideshow_pager_fields',
                ],
            ],
        ],
    ];
    $form['views_slideshow_pager_fields_wrapper_close'] = [
        '#markup' => '</div>',
    ];
    return $form;
}