18 lines
328 B
PHP
18 lines
328 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty plugin.
|
|
*/
|
|
|
|
/**
|
|
* Smarty {translate} function plugin.
|
|
*/
|
|
function smarty_modifier_selected($string, $value = null)
|
|
{
|
|
if (is_array($value)) {
|
|
return array_search($string, $value) !== false ? " selected='selected' " : '';
|
|
}
|
|
|
|
return ($string == $value) ? " selected='selected' " : '';
|
|
}
|