fusionpbx/resources/templates/engine/smarty/plugins/modifiercompiler.cat.php

29 lines
613 B
PHP
Raw Permalink Normal View History

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