Same name and namespace in other branches
  1. 6.x-3.x handlers/views_handler_argument.inc \views_handler_argument::set_argument()

Set the input for this argument.

Return value

bool TRUE if it successfully validates; FALSE if it does not.

File

handlers/views_handler_argument.inc, line 1129
Definition of views_handler_argument.

Class

views_handler_argument

Code

public function set_argument($arg) {
  $this->argument = $arg;
  return $this
    ->validate_arg($arg);
}