function views_handler_argument::set_argument

Same name 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

Class

views_handler_argument
Base class for arguments.

Code

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