Files

29 lines
613 B
PHP
Raw Permalink Normal View History

2013-07-14 22:15:45 +00:00
<?php
/**
* Smarty plugin
*
* @package Smarty
2013-07-14 22:15:45 +00:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty cat modifier plugin
2017-11-11 07:11:33 +01:00
* Type: modifier
* Name: cat
* Date: Feb 24, 2003
* Purpose: catenate a value to a variable
* Input: string to catenate
2013-07-14 22:15:45 +00:00
* Example: {$var|cat:"foo"}
*
2021-10-13 12:15:17 +02:00
* @link https://www.smarty.net/manual/en/language.modifier.cat.php cat
* (Smarty online manual)
2018-06-12 09:58:15 +02:00
* @author Uwe Tews
*
2013-07-14 22:15:45 +00:00
* @param array $params parameters
*
2013-07-14 22:15:45 +00:00
* @return string with compiled code
*/
function smarty_modifiercompiler_cat($params)
2013-07-14 22:15:45 +00:00
{
return '(' . implode(').(', $params) . ')';
2013-07-14 22:15:45 +00:00
}