Fixed.php

Same filename and directory in other branches
  1. 9 core/modules/views/src/Plugin/views/argument_default/Fixed.php
  2. 10 core/modules/views/src/Plugin/views/argument_default/Fixed.php
  3. 11.x core/modules/views/src/Plugin/views/argument_default/Fixed.php

Namespace

Drupal\views\Plugin\views\argument_default

File

core/modules/views/src/Plugin/views/argument_default/Fixed.php

View source
<?php

namespace Drupal\views\Plugin\views\argument_default;

use Drupal\Core\Cache\Cache;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Form\FormStateInterface;

/**
 * The fixed argument default handler.
 *
 * @ingroup views_argument_default_plugins
 *
 * @ViewsArgumentDefault(
 *   id = "fixed",
 *   title = @Translation("Fixed")
 * )
 */
class Fixed extends ArgumentDefaultPluginBase implements CacheableDependencyInterface {
    
    /**
     * {@inheritdoc}
     */
    protected function defineOptions() {
        $options = parent::defineOptions();
        $options['argument'] = [
            'default' => '',
        ];
        return $options;
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildOptionsForm(&$form, FormStateInterface $form_state) {
        parent::buildOptionsForm($form, $form_state);
        $form['argument'] = [
            '#type' => 'textfield',
            '#title' => $this->t('Fixed value'),
            '#default_value' => $this->options['argument'],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function getArgument() {
        return $this->options['argument'];
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheMaxAge() {
        return Cache::PERMANENT;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheContexts() {
        return [];
    }

}

Classes

Title Deprecated Summary
Fixed The fixed argument default handler.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.