From: cajus Date: Tue, 27 Oct 2009 15:59:27 +0000 (+0000) Subject: Globalize filter X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1ebd1b2ee4a12333c4c33cb4ab8f849363861a23;p=gosa.git Globalize filter git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14662 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_management.inc b/gosa-core/include/class_management.inc index fcd690c0c..0d0f43ba0 100644 --- a/gosa-core/include/class_management.inc +++ b/gosa-core/include/class_management.inc @@ -91,6 +91,7 @@ class management // Update filter if ($this->filter) { $this->filter->update(); + session::global_set(get_class($this)."_filter", $this->filter); session::set('autocomplete', $this->filter); if (!$this->filter->isValid()){ msg_dialog::display(_("Filter error"), _("The filter is incomplete!"), ERROR_DIALOG); @@ -558,15 +559,23 @@ class management function setDescription($str) { $this->plDescription = $str; } + + function setHeadpage($str) { $this->headpage = $str; } + + function setFilter($str) { $this->filter = $str; } + + function setIcon($str) { $this->plIcon = $str; } + + function setHeadline($str) { $this->plHeadline = $str; }