10 * Smarty cat modifier plugin
15 * Purpose: catenate a value to a variable
16 * Input: string to catenate
17 * Example: {$var|cat:"foo"}
18 * @link http://smarty.php.net/manual/en/language.modifier.cat.php cat
19 * (Smarty online manual)
20 * @author Monte Ohrt <monte@ispi.net>
26 function smarty_modifier_cat($string, $cat)
28 return $string . $cat;
31 /* vim: set expandtab: */
This page took 0.335321 seconds and 4 git commands to generate.