Files
oc-server3/htdocs/lib2/smarty/ocplugins/function.repeat.php
T
2012-05-09 20:05:43 +02:00

16 lines
259 B
PHP

<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty {repeat string="&nbsp;" count=2} function plugin
*/
function smarty_function_repeat($params, &$smarty)
{
return str_repeat($params['string'], $params['count']);
}
?>