ArgumentValidatorTest.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/views/tests/src/Kernel/Plugin/ArgumentValidatorTest.php
- 8.9.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php
- 8.9.x core/modules/views_ui/tests/src/Functional/ArgumentValidatorTest.php
- 10 core/modules/views/tests/src/Kernel/Plugin/ArgumentValidatorTest.php
- 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php
- 10 core/modules/views_ui/tests/src/Functional/ArgumentValidatorTest.php
- 11.x core/modules/views/tests/src/Kernel/Plugin/ArgumentValidatorTest.php
- 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php
- 11.x core/modules/views_ui/tests/src/Functional/ArgumentValidatorTest.php
Namespace
Drupal\views_test_data\Plugin\views\argument_validatorFile
-
core/
modules/ views/ tests/ modules/ views_test_data/ src/ Plugin/ views/ argument_validator/ ArgumentValidatorTest.php
View source
<?php
namespace Drupal\views_test_data\Plugin\views\argument_validator;
use Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase;
/**
* Defines an argument validator test plugin.
*
* @ViewsArgumentValidator(
* id = "argument_validator_test",
* title = @Translation("Argument validator test")
* )
*/
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.