summaryrefslogtreecommitdiffstats
path: root/3dparty/Smarty/plugins/modifiercompiler.string_format.php
diff options
context:
space:
mode:
Diffstat (limited to '3dparty/Smarty/plugins/modifiercompiler.string_format.php')
-rw-r--r--3dparty/Smarty/plugins/modifiercompiler.string_format.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/3dparty/Smarty/plugins/modifiercompiler.string_format.php b/3dparty/Smarty/plugins/modifiercompiler.string_format.php
new file mode 100644
index 00000000000..e74bcce5542
--- /dev/null
+++ b/3dparty/Smarty/plugins/modifiercompiler.string_format.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * Smarty plugin
+ *
+ * @package Smarty
+ * @subpackage PluginsModifierCompiler
+ */
+
+/**
+ * Smarty string_format modifier plugin
+ *
+ * Type: modifier<br>
+ * Name: string_format<br>
+ * Purpose: format strings via sprintf
+ *
+ * @link http://smarty.php.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual)
+ * @author Uwe Tews
+ * @param array $params parameters
+ * @return string with compiled code
+ */
+function smarty_modifiercompiler_string_format($params, $compiler)
+{
+ return 'sprintf(' . $params[1] . ',' . $params[0] . ')';
+}
+
+?> \ No newline at end of file