function 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);
}