Craft\FormBuilder2Variable::_setTemplate PHP Method

_setTemplate() private method

Template Setters
private _setTemplate ( $path, $type = 'site' )
    private function _setTemplate($path, $type = 'site')
    {
        if ($type == 'site') {
            craft()->templates->setTemplatesPath($path);
        }
        if ($type == 'plugin') {
            craft()->templates->setTemplatesPath(craft()->path->getPluginsPath());
        }
    }