Capsule::putRef PHP Method

putRef() public method

This means that if the template modifies the variable, then it will also be modified in the context.
public putRef ( $name, &$value )
$name
    function putRef($name, &$value)
    {
        $this->vars[$name] =& $value;
    }