Files
smarty/libs/plugins/modifiercompiler.default.php
T

33 lines
786 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 default modifier plugin
2017-11-11 07:11:33 +01:00
* Type: modifier
* Name: default
2013-07-14 22:15:45 +00:00
* Purpose: designate default value for empty variables
*
2021-10-13 12:15:17 +02:00
* @link https://www.smarty.net/manual/en/language.modifier.default.php default (Smarty online manual)
2013-07-14 22:15:45 +00: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_default($params)
2013-07-14 22:15:45 +00:00
{
2016-02-09 01:27:15 +01:00
$output = $params[ 0 ];
if (!isset($params[ 1 ])) {
$params[ 1 ] = "''";
2013-07-14 22:15:45 +00:00
}
array_shift($params);
foreach ($params as $param) {
2021-10-13 12:15:17 +02:00
$output = '(($tmp = ' . $output . ' ?? null)===null||$tmp===\'\' ? ' . $param . ' ?? null : $tmp)';
2013-07-14 22:15:45 +00:00
}
return $output;
}