/**
* Checks if the Enlight_Template_Manager stored the given template.
*
* @param string $template_name
*
* @return bool
*/
public function templateExists($template_name)
{
return $this->engine->templateExists($template_name);
}
/**
* Assigns a specified value to the template.
* If no cache or scope given, the default settings for this property will be used.
*
* @param array|string $spec
* @param mixed|null $value
* @param bool|null $nocache
* @param int|null $scope
*
* @return \Enlight_View|\Enlight_View_Default
*/