summaryrefslogtreecommitdiff
path: root/smartyplugins/modifier.nlbr.php
blob: b8ca8f5c8fc20993b2d5d956ed0c88c1b75e4c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
namespace Bitweaver\Plugins;

/**
 * Smarty plugin
 * @package Smarty
 * @subpackage plugins
 */

/**
 * Smarty plugin
 * -------------------------------------------------------------
 * Type:     modifier
 * Name:     capitalize
 * Purpose:  capitalize words in the string
 * -------------------------------------------------------------
 */
function smarty_modifier_nlbr($string)
{
  return nl2br($string);

}