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
2014-05-09 11:26:26 +02:00

12 lines
265 B
PHP

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