From 336797273c2169145f797eb673809894dc279c3c Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 23 Dec 2009 15:02:47 +0000 Subject: [PATCH] Updated management plugin -Added skippFooter flag git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14942 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_management.inc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gosa-core/include/class_management.inc b/gosa-core/include/class_management.inc index 6f8babb42..53303acd1 100644 --- a/gosa-core/include/class_management.inc +++ b/gosa-core/include/class_management.inc @@ -60,6 +60,9 @@ class management // Whether to display the apply button or not protected $displayApplyBtn = ""; + // Whether to display a footer or not. + protected $skipFooter = false; + // Copy&Paste handler protected $cpHandler = null; @@ -226,6 +229,9 @@ class management } } + // Skip footer if requested; + if($this->skipFooter) return(""); + // In case an of locked entry, we may have opened a read-only tab. $str = ""; if(isset($this->tabObject->read_only) && $this->tabObject->read_only == TRUE){ -- 2.30.2