Kohana_Twig::bind PHP 메소드

bind() 공개 메소드

This reference can be accessed as $ref within the view $view->bind('ref', $bar);
public bind ( $key, &$value ) : View
리턴 View
    public function bind($key, &$value)
    {
        $this->_data[$key] =& $value;
        return $this;
    }