mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-26 18:01:36 +01:00
22 lines
435 B
PHP
22 lines
435 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Smarty plugin
|
||
|
|
* -------------------------------------------------------------
|
||
|
|
* Type: modifier
|
||
|
|
* Name: default
|
||
|
|
* Purpose: designate default value for empty variables
|
||
|
|
* -------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
function smarty_modifier_default($string, $default = '')
|
||
|
|
{
|
||
|
|
if (empty($string))
|
||
|
|
return $default;
|
||
|
|
else
|
||
|
|
return $string;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* vim: set expandtab: */
|
||
|
|
|
||
|
|
?>
|