summaryrefslogtreecommitdiffstats
path: root/3dparty/Smarty/plugins/modifiercompiler.cat.php
diff options
context:
space:
mode:
Diffstat (limited to '3dparty/Smarty/plugins/modifiercompiler.cat.php')
-rw-r--r--3dparty/Smarty/plugins/modifiercompiler.cat.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/3dparty/Smarty/plugins/modifiercompiler.cat.php b/3dparty/Smarty/plugins/modifiercompiler.cat.php
new file mode 100644
index 00000000000..6937222676d
--- /dev/null
+++ b/3dparty/Smarty/plugins/modifiercompiler.cat.php
@@ -0,0 +1,29 @@
+<?php
+/**
+ * Smarty plugin
+ *
+ * @package Smarty
+ * @subpackage PluginsModifierCompiler
+ */
+
+/**
+ * Smarty cat modifier plugin
+ *
+ * Type: modifier<br>
+ * Name: cat<br>
+ * Date: Feb 24, 2003
+ * Purpose: catenate a value to a variable
+ * Input: string to catenate
+ * Example: {$var|cat:"foo"}
+ * @link http://smarty.php.net/manual/en/language.modifier.cat.php cat
+ * (Smarty online manual)
+ * @author Uwe Tews
+ * @param array $params parameters
+ * @return string with compiled code
+ */
+function smarty_modifiercompiler_cat($params, $compiler)
+{
+ return '('.implode(').(', $params).')';
+}
+
+?> \ No newline at end of file