1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00
piwigo_ynh/sources/include/smarty/libs/plugins/modifiercompiler.string_format.php

26 lines
579 B
PHP
Raw Normal View History

2014-07-06 13:21:10 +02:00
<?php
/**
* Smarty plugin
*
2016-08-27 21:53:29 +02:00
* @package Smarty
2014-07-06 13:21:10 +02:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty string_format modifier plugin
* Type: modifier<br>
* Name: string_format<br>
* Purpose: format strings via sprintf
*
2016-08-27 21:53:29 +02:00
* @link http://www.smarty.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual)
2014-07-06 13:21:10 +02:00
* @author Uwe Tews
2016-08-27 21:53:29 +02:00
*
2014-07-06 13:21:10 +02:00
* @param array $params parameters
2016-08-27 21:53:29 +02:00
*
2014-07-06 13:21:10 +02:00
* @return string with compiled code
*/
2016-08-27 21:53:29 +02:00
function smarty_modifiercompiler_string_format($params)
2014-07-06 13:21:10 +02:00
{
return 'sprintf(' . $params[1] . ',' . $params[0] . ')';
}