Validate that this argument works. By default, all arguments are valid.
public function validateArgument($arg) {
// By using % in URLs, arguments could be validated twice; this eases
// that pain.
if (isset($this->argument_validated)) {
return $this->argument_validated;
}
if ($this
->isException($arg)) {
return $this->argument_validated = TRUE;
}
$plugin = $this
->getPlugin('argument_validator');
return $this->argument_validated = $plugin
->validateArgument($arg);
}