Files
kupshop/class/smarty_plugins/modifier.checked.php
2025-08-02 16:30:27 +02:00

18 lines
292 B
PHP

<?php
/**
* Smarty plugin.
*/
/**
* Smarty {translate} function plugin.
*/
function smarty_modifier_checked($string, $value = null)
{
if (is_null($value)) {
return ($string) ? " checked='checked' " : '';
}
return ($string == $value) ? " checked='checked' " : '';
}