ArgumentValidatorTest.php

Namespace

Drupal\views_test_data\Plugin\views\argument_validator

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\views_test_data\Plugin\views\argument_validator;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase;
use Drupal\views\Attribute\ViewsArgumentValidator;

/**
 * Defines an argument validator test plugin.
 */
class ArgumentValidatorTest extends ArgumentValidatorPluginBase {
  
  /**
   * {@inheritdoc}
   */
  public function calculateDependencies() {
    return [
      'content' => [
        'ArgumentValidatorTest',
      ],
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['test_value'] = [
      'default' => '',
    ];
    return $options;
  }
  
  /**
   * {@inheritdoc}
   */
  public function validateArgument($arg) {
    if ($arg === 'this value should be replaced') {
      // Set the argument to a numeric value so this is valid on PostgreSQL for
      // numeric fields.
      $this->argument->argument = '1';
      return TRUE;
    }
    return $arg == $this->options['test_value'];
  }

}

Classes

Title Deprecated Summary
ArgumentValidatorTest Defines an argument validator test plugin.

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