Files
fusionpbx/resources/templates/engine/smarty/plugins/modifiercompiler.string_format.php
T

25 lines
575 B
PHP
Raw Normal View History

2013-11-09 20:02:56 +00:00
<?php
/**
* Smarty plugin
*
2018-11-07 07:18:14 +00:00
* @package Smarty
2013-11-09 20:02:56 +00:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty string_format modifier plugin
2018-11-07 07:18:14 +00:00
* Type: modifier
* Name: string_format
2013-11-09 20:02:56 +00:00
* Purpose: format strings via sprintf
*
2023-05-08 09:50:42 -06:00
* @link https://www.smarty.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual)
2013-11-09 20:02:56 +00:00
* @author Uwe Tews
2018-11-07 07:18:14 +00:00
*
2013-11-09 20:02:56 +00:00
* @param array $params parameters
2018-11-07 07:18:14 +00:00
*
2013-11-09 20:02:56 +00:00
* @return string with compiled code
*/
2018-11-07 07:18:14 +00:00
function smarty_modifiercompiler_string_format($params)
2013-11-09 20:02:56 +00:00
{
2018-11-07 07:18:14 +00:00
return 'sprintf(' . $params[ 1 ] . ',' . $params[ 0 ] . ')';
2013-11-09 20:02:56 +00:00
}