Ip\View::getVariable PHP 메소드

getVariable() 공개 메소드

Get view variable value
public getVariable ( $name ) : null
$name
리턴 null
    public function getVariable($name)
    {
        if (isset($this->data[$name])) {
            return $this->data[$name];
        }
        return null;
    }