Numeric.php in Views (for Drupal 7) 8.3
Definition of Drupal\views\Plugin\views\argument_validator\Numeric.
File
lib/Drupal/views/Plugin/views/argument_validator/Numeric.phpView source
<?php
/**
* @file
* Definition of Drupal\views\Plugin\views\argument_validator\Numeric.
*/
namespace Drupal\views\Plugin\views\argument_validator;
use Drupal\Core\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;
/**
* Validate whether an argument is numeric or not.
*
* @ingroup views_argument_validate_plugins
*
* @Plugin(
* id = "numeric",
* title = @Translation("Numeric")
* )
*/
class Numeric extends ArgumentValidatorPluginBase {
function validate_argument($argument) {
return is_numeric($argument);
}
}