PDF rausgenommen
This commit is contained in:
21
msd2/myoos/includes/lib/smarty-plugins/modifier.repeat.php
Normal file
21
msd2/myoos/includes/lib/smarty-plugins/modifier.repeat.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* Smarty plugin
|
||||
* @package Smarty
|
||||
* @subpackage plugins
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Smarty repeat modifier plugin
|
||||
*
|
||||
* Type: modifier
|
||||
* Name: repeat
|
||||
* Date: Feb 19, 2005
|
||||
* Example: {$level|repeat:"str"}
|
||||
*/
|
||||
|
||||
function smarty_modifier_repeat($level, $replace = ' ')
|
||||
{
|
||||
return str_repeat($replace, $level);
|
||||
}
|
Reference in New Issue
Block a user