From b4a2c7363bd1cd03d8ce2ff7f4a11646e708dc03 Mon Sep 17 00:00:00 2001 From: cajus Date: Thu, 6 Oct 2005 13:21:57 +0000 Subject: [PATCH] Added base selection support git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1514 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/fai/class_faiManagement.inc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/plugins/admin/fai/class_faiManagement.inc b/plugins/admin/fai/class_faiManagement.inc index 900d1bd2b..c6663ea20 100644 --- a/plugins/admin/fai/class_faiManagement.inc +++ b/plugins/admin/fai/class_faiManagement.inc @@ -396,6 +396,16 @@ class faiManagement extends plugin * Assign all reguired vars to template engine */ + /* Prepare departments */ + $options= ""; + foreach ($this->config->idepartments as $key => $value){ + if ($faifilter['base'] == $key){ + $options.= ""; + } else { + $options.= ""; + } + } + /* Create listhead, it will be shown on top of the divlist. * It provides general navigation and object creation */ @@ -435,6 +445,11 @@ class faiManagement extends plugin "  ". + + "  ". + + _("Current base")." ". + "  ". ""; -- 2.30.2