From 76f39b2882007b14be29749894b6e30bf194c7ad Mon Sep 17 00:00:00 2001 From: cajus Date: Tue, 19 Jan 2010 17:31:10 +0000 Subject: [PATCH] First try with exchanging lists git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15215 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../plugins/personal/generic/class_user.inc | 30 +++++++++++-------- .../plugins/personal/generic/generic.tpl | 8 ++--- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/gosa-core/plugins/personal/generic/class_user.inc b/gosa-core/plugins/personal/generic/class_user.inc index cefc0113a..a2b3b1db2 100644 --- a/gosa-core/plugins/personal/generic/class_user.inc +++ b/gosa-core/plugins/personal/generic/class_user.inc @@ -51,6 +51,7 @@ class user extends plugin var $ou= ""; var $departmentNumber= ""; var $gosaLoginRestriction= array(); + var $gosaLoginRestrictionWidget; var $employeeNumber= ""; var $employeeType= ""; var $roomNumber= ""; @@ -242,6 +243,11 @@ class user extends plugin $this->gosaLoginRestriction[] = $this->attrs['gosaLoginRestriction'][$i]; } } + $this->gosaLoginRestrictionWidget= new sortableListing($this->gosaLoginRestriction); + $this->gosaLoginRestrictionWidget->setDeleteable(true); + $this->gosaLoginRestrictionWidget->setColspecs(array('*')); + $this->gosaLoginRestrictionWidget->setWidth("320px"); + $this->gosaLoginRestrictionWidget->setHeight("70px"); $this->orig_base = $this->base; } @@ -253,28 +259,21 @@ class user extends plugin /* Call parent execute */ plugin::execute(); + /* Let the lists update themselves */ + $this->gosaLoginRestrictionWidget->setAcl($this->getacl('gosaLoginRestriction', (!is_object($this->parent) && !session::is_set('edit')))); + $this->gosaLoginRestrictionWidget->update(); + /* Handle add/delete for restriction mode */ if (isset($_POST['add_res']) && isset($_POST['res'])) { $val= validate($_POST['res']); if (preg_match('/^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$/', $val) || preg_match('/^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\/([0-9]+)$/', $val) || preg_match('/^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)$/', $val)) { - $this->gosaLoginRestriction[]= $val; + $this->gosaLoginRestrictionWidget->addEntry($val); } else { msg_dialog::display(_("Error"), _("Please add a single IP address or a network/netmask combination!"), ERROR_DIALOG); } } - if (isset($_POST['del_res']) && isset($_POST['restrictions'])) { - $res= $_POST['restrictions']; - if (!is_array($res)){ - $res= array($res); - } - foreach ($res as $restriction) { - if (in_array($restriction, $this->gosaLoginRestriction)) { - $this->gosaLoginRestriction= array_remove_entries(array($restriction), $this->gosaLoginRestriction); - } - } - } /* Log view */ if($this->is_account && !$this->view_logged){ @@ -284,6 +283,7 @@ class user extends plugin $smarty= get_smarty(); $smarty->assign("usePrototype", "true"); + $smarty->assign("gosaLoginRestrictionWidget", $this->gosaLoginRestrictionWidget->render()); /* Assign sex */ $sex= array(0 => " ", "F" => _("female"), "M" => _("male")); @@ -607,7 +607,6 @@ class user extends plugin $smarty->assign("$val"."ACL", $this->getacl($val,(!is_object($this->parent) && !session::is_set('edit')))); } - $smarty->assign("gosaLoginRestriction", $this->gosaLoginRestriction); $smarty->assign("gosaLoginRestrictionACL", $this->getacl('gosaLoginRestriction', (!is_object($this->parent) && !session::is_set('edit')))); $smarty->assign("pwmode", $pwd_methods); $smarty->assign("pwmode_select", $this->pw_storage); @@ -756,6 +755,11 @@ class user extends plugin /* Parents save function */ plugin::save_object (); + /* Sync lists */ + if ($this->gosaLoginRestrictionWidget->isModified()) { + $this->gosaLoginRestriction= $this->gosaLoginRestrictionWidget->getMaintainedData(); + } + /* Save government mode attributes */ if ($this->governmentmode){ foreach ($this->govattrs as $val){ diff --git a/gosa-core/plugins/personal/generic/generic.tpl b/gosa-core/plugins/personal/generic/generic.tpl index 9833e7b30..34da9d013 100644 --- a/gosa-core/plugins/personal/generic/generic.tpl +++ b/gosa-core/plugins/personal/generic/generic.tpl @@ -250,12 +250,10 @@ {render acl=$gosaLoginRestrictionACL} -
+ {$gosaLoginRestrictionWidget} - - + + {/render} -- 2.30.2