cleanup no longer needed StatusFilter code. Use class=MonitorFilter instead of id=monitorControl to be consistent
This commit is contained in:
parent
f76827a450
commit
dbf760d8af
|
@ -135,6 +135,7 @@ if ( count($StorageById) > 1 ) {
|
||||||
) );
|
) );
|
||||||
$html .= '</span>';
|
$html .= '</span>';
|
||||||
} # end if have Storage Areas
|
} # end if have Storage Areas
|
||||||
|
|
||||||
$html .= '<span class="StatusFilter"><label>'. translate('Status') . ':</label>';
|
$html .= '<span class="StatusFilter"><label>'. translate('Status') . ':</label>';
|
||||||
$status_options = array(
|
$status_options = array(
|
||||||
'Unknown' => translate('StatusUnknown'),
|
'Unknown' => translate('StatusUnknown'),
|
||||||
|
@ -186,15 +187,11 @@ $html .= htmlSelect( 'Status[]', $status_options,
|
||||||
if ( count($selected_monitor_ids) and ! in_array($monitors[$i]['Id'], $selected_monitor_ids) ) {
|
if ( count($selected_monitor_ids) and ! in_array($monitors[$i]['Id'], $selected_monitor_ids) ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ( isset($_SESSION['StatusFilter']) ) {
|
|
||||||
if ( $monitors[$i]['Status'] != $_SESSION['StatusFilter'] ) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$displayMonitors[] = $monitors[$i];
|
$displayMonitors[] = $monitors[$i];
|
||||||
}
|
} # end foreach monitor
|
||||||
$html .= '<span id="monitorControl"><label>'.translate('Monitor').':</label>';
|
|
||||||
$html .= htmlSelect( 'MonitorId[]', $monitors_dropdown, $selected_monitor_ids,
|
$html .= '<span class="MonitorFilter"><label>'.translate('Monitor').':</label>';
|
||||||
|
$html .= htmlSelect('MonitorId[]', $monitors_dropdown, $selected_monitor_ids,
|
||||||
array(
|
array(
|
||||||
'onchange'=>'this.form.submit();',
|
'onchange'=>'this.form.submit();',
|
||||||
'class'=>'chosen',
|
'class'=>'chosen',
|
||||||
|
|
Loading…
Reference in New Issue