Ansel_View_Base::__get PHP Method

__get() public method

public __get ( $property )
    public function __get($property)
    {
        if (isset($this->_params[$property])) {
            return $this->_params[$property];
        }
        return null;
    }