* escape($this->templateVar) ?>
*
*
* @param string $var The output to escape.
*
* @return string The escaped value.
*/
public function escape($var)
{
return htmlspecialchars($var, ENT_QUOTES, $this->_view->getEncoding());
}
/**
* Returns the escaped $html without affecting existing escaped entities.
*
*