Zeile 392 | Zeile 392 |
---|
* @param array $options Array of options for the select box (multiple, class, id, size) * @return string The select box. */
|
* @param array $options Array of options for the select box (multiple, class, id, size) * @return string The select box. */
|
function generate_select_box($name, $option_list, $selected=array(), $options=array())
| function generate_select_box($name, $option_list=array(), $selected=array(), $options=array())
|
{ if(!isset($options['multiple'])) {
| { if(!isset($options['multiple'])) {
|
Zeile 422 | Zeile 422 |
---|
foreach($option_list as $value => $option) { $select_add = '';
|
foreach($option_list as $value => $option) { $select_add = '';
|
if(!empty($selected) && ((string)$value == (string)$selected || (is_array($selected) && in_array((string)$value, $selected))))
| if((!is_array($selected) || !empty($selected)) && ((is_array($selected) && in_array((string)$value, $selected)) || (!is_array($selected) && (string)$value === (string)$selected)))
|
{ $select_add = " selected=\"selected\""; }
| { $select_add = " selected=\"selected\""; }
|
Zeile 477 | Zeile 477 |
---|
} }
|
} }
|
if($options['main_option'] && $is_first)
| if(isset($options['main_option']) && $is_first)
|
{ $select_add = ''; if($selected == -1)
| { $select_add = ''; if($selected == -1)
|
Zeile 594 | Zeile 594 |
---|
$select .= ">\n";
$groups_cache = $cache->read('usergroups');
|
$select .= ">\n";
$groups_cache = $cache->read('usergroups');
|
| if(!is_array($selected)) { $selected = array($selected); }
foreach($groups_cache as $group) { $selected_add = "";
if(in_array($group['gid'], $selected)) { $selected_add = " selected=\"selected\""; }
$select .= "<option value=\"{$group['gid']}\"{$selected_add}>".htmlspecialchars_uni($group['title'])."</option>"; }
$select .= "</select>";
return $select; }
/** * Generate a prefix selection box. * * @param string $name The name of the selection box. * @param array|string $selected Array/string of the selected items. * @param array $options Array of options (class, id, multiple, size) * @return string The built select box. */ function generate_prefix_select($name, $selected=array(), $options=array()) { global $cache; $select = "<select name=\"{$name}\""; if(isset($options['multiple'])) { $select .= " multiple=\"multiple\""; } if(isset($options['class'])) { $select .= " class=\"{$options['class']}\""; } if(isset($options['id'])) { $select .= " id=\"{$options['id']}\""; } if(isset($options['size'])) { $select .= " size=\"{$options['size']}\""; } $select .= ">\n"; $prefix_cache = $cache->read('threadprefixes');
|
if(!is_array($selected)) { $selected = array($selected);
|
if(!is_array($selected)) { $selected = array($selected);
|
} foreach($groups_cache as $group)
| }
foreach($prefix_cache as $prefix)
|
{ $selected_add = "";
|
{ $selected_add = "";
|
if(in_array($group['gid'], $selected))
|
if(in_array($prefix['pid'], $selected))
|
{ $selected_add = " selected=\"selected\""; }
|
{ $selected_add = " selected=\"selected\""; }
|
$select .= "<option value=\"{$group['gid']}\"{$selected_add}>".htmlspecialchars_uni($group['title'])."</option>";
| $select .= "<option value=\"{$prefix['pid']}\"{$selected_add}>".htmlspecialchars_uni($prefix['prefix'])."</option>";
|
}
|
}
|
| |
$select .= "</select>";
|
$select .= "</select>";
|
| |
return $select; }
| return $select; }
|
Zeile 703 | Zeile 754 |
---|
global $lang;
// Checked status
|
global $lang;
// Checked status
|
if($value == "no" || $value === '0')
| if($value === "no" || $value === '0' || $value === 0)
|
{ $no_checked = 1; $yes_checked = 0;
| { $no_checked = 1; $yes_checked = 0;
|