Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/library/Fiktiv/View/Helper/Text.php
2010-11-16 19:12:45 +01:00

9 lines
208 B
PHP

<?php
class Fiktiv_View_Helper_Text extends Zend_View_Helper_Abstract
{
public function text($string)
{
return nl2br($this->view->escape($string), $this->view->doctype()->isXhtml());
}
}