Code

replaced plugbottom by pluin-actions
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 5 Mar 2010 14:43:52 +0000 (14:43 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 5 Mar 2010 14:43:52 +0000 (14:43 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16304 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/personal/posix/groupSelect/class_groupSelect.inc

index be8cddba1fb7d8cbabf0e9b963ecdd38448cce14..2c98adada43047b617227f3d15ae71251fa518ea 100644 (file)
@@ -1,52 +1,52 @@
 <?php
 /*
-* This code is part of GOsa (http://www.gosa-project.org)
-* Copyright (C) 2003-2008 GONICUS GmbH
-*
-* ID: $$Id: class_groupManagement.inc 14766 2009-11-05 14:30:35Z hickert $$
-*
-* This program is free software; you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation; either version 2 of the License, or
-* (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-*/
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id: class_groupManagement.inc 14766 2009-11-05 14:30:35Z hickert $$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
 
 class groupSelect extends management
 {
 
-protected $skipFooter = TRUE;
-protected $skipHeader = TRUE;
+  protected $skipFooter = TRUE;
+  protected $skipHeader = TRUE;
 
-function __construct($config,$ui)
-{
-$this->config = $config;
-$this->ui = $ui;
+  function __construct($config,$ui)
+  {
+    $this->config = $config;
+    $this->ui = $ui;
 
-$this->storagePoints = array(get_ou("groupRDN"));
+    $this->storagePoints = array(get_ou("groupRDN"));
 
-// Build filter
-if (session::global_is_set(get_class($this)."_filter")){
-$filter= session::global_get(get_class($this)."_filter");
-} else {
-$filter = new filter(get_template_path("group-filter.xml", true, dirname(__FILE__)));
-$filter->setObjectStorage($this->storagePoints);
-}
-$this->setFilter($filter);
+    // Build filter
+    if (session::global_is_set(get_class($this)."_filter")){
+      $filter= session::global_get(get_class($this)."_filter");
+    } else {
+      $filter = new filter(get_template_path("group-filter.xml", true, dirname(__FILE__)));
+      $filter->setObjectStorage($this->storagePoints);
+    }
+    $this->setFilter($filter);
 
-// Build headpage
-$headpage = new listing(get_template_path("group-list.xml", true, dirname(__FILE__)));
-$headpage->setFilter($filter);
-parent::__construct($config, $ui, "groups", $headpage);
-}
+    // Build headpage
+    $headpage = new listing(get_template_path("group-list.xml", true, dirname(__FILE__)));
+    $headpage->setFilter($filter);
+    parent::__construct($config, $ui, "groups", $headpage);
+  }
 } 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>