summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e83a3fb)
raw | patch | inline | side by side (parent: e83a3fb)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 28 Feb 2006 06:26:51 +0000 (06:26 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 28 Feb 2006 06:26:51 +0000 (06:26 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2757 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_glpiSelectUser.inc | patch | blob | history |
diff --git a/plugins/admin/systems/class_glpiSelectUser.inc b/plugins/admin/systems/class_glpiSelectUser.inc
index 85de38d3e3ab4b6ffb5fe8cbc24fb7a2a9c30143..42f3538303da80a33ef2c27c4125563f78b907d5 100644 (file)
/* Call parent execute */
plugin::execute();
+ if(isset($_POST['depselect'])){
+ $_SESSION['glpi_user_filter']['base'] = $_POST['depselect'];
+ }
+
$filter = $_SESSION['glpi_user_filter'];
/* Filter settings, remove double* */
}
+ /* Prepare departments,
+ which are shown in the listbox on top of the listbox
+ */
+ $options= "";
+ foreach ($this->config->idepartments as $key => $value){
+ if ($_SESSION['glpi_user_filter']['base'] == $key){
+ $options.= "<option selected='selected' value='$key'>$value</option>";
+ } else {
+ $options.= "<option value='$key'>$value</option>";
+ }
+ }
+
$listhead = "<div style='background:#F0F0F9;padding:5px;'>".
" <input class='center' type='image' align='middle'
src='images/list_back.png' title='"._("Go up one department")."' alt='"._("Up")."' name='dep_back'> ".
align='middle' title='"._("Go to root department")."' name='dep_root' alt='"._("Root")."'> ".
" <input class='center' type='image' align='middle'
src='images/list_home.png' title='"._("Go to users department")."' alt='"._("Home")."' name='dep_home'> ".
+" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'> "._("Base")." ".
+ " <select name='depselect' onChange='mainform.submit()' class='center'>$options</select>".
+ " <input class='center' type='image' src='images/list_submit.png' align='middle'
+ title='"._("Submit department")."' name='submit_department' alt='". _("Submit")."'> ".
"</div>";