Code

reenabled filter caching
[gosa.git] / gosa-plugins / fai / admin / fai / classSelect / class_classSelect.inc
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id: class_target_list.inc 9850 2008-03-14 14:15:12Z hickert $$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 class classSelect extends management
24 {
25   // Tab definition 
26   protected $skipFooter = TRUE;
27   protected $skipHeader = TRUE;
29   function __construct($config,$ui)
30   {
31     $this->config = $config;
32     $this->ui = $ui;
34     // Build filter
35     if (session::global_is_set(get_class($this)."_filter")){
36       $filter= session::global_get(get_class($this)."_filter");
37     } else {
38       $filter = new filter(get_template_path("selectClass-filter.xml", true, dirname(__FILE__)));
39       $filter->setObjectStorage($this->storagePoints);
40     }
41     $this->setFilter($filter);
43     // Build headpage
44     $headpage = new listing(get_template_path("selectClass-list.xml", true, dirname(__FILE__)));
45     $headpage->registerElementFilter("filterProperties", "classSelect::filterProperties");
46     $headpage->setFilter($filter);
47     parent::__construct($config, $ui, "FAI class", $headpage);
48   }
50   static function filterProperties($row, $classes)
51   {
52     /* Create different picture for each object type */
53     $objTypes['FAIhook']            = "<img src='plugins/fai/images/fai_hook.png' title='"._("Hook bundle")."' alt=''>&nbsp;";
54     $objTypes['FAItemplate']        = "<img src='plugins/fai/images/fai_template.png' title='"._("Template bundle")."' alt=''>&nbsp;";
55     $objTypes['FAIscript']          = "<img src='plugins/fai/images/fai_script.png' title='"._("Script bundle")."' alt=''>&nbsp;";
56     $objTypes['FAIvariable']        = "<img src='plugins/fai/images/fai_variable.png' title='"._("Variable bundle")."' alt=''>&nbsp;";
57     $objTypes['FAIpackageList']     = "<img src='plugins/fai/images/fai_packages.png' title='"._("Package bundle")."' alt=''>&nbsp;";
58     $objTypes['FAIpartitionTable']  = "<img src='plugins/fai/images/fai_partitionTable.png' title='"._("Partition table")."' alt=''>&nbsp;";
60     $str = "";
61     foreach($objTypes as $class => $img){
62       if(in_array($class, $classes)){
63         $str .= $img;
64       }else{
65         $str .= "<img src='images/empty.png'>&nbsp;";
66       }
67     }
68     return($str);
69   }
71   function save()
72   {
73     $act = $this->detectPostActions();
74     $headpage = $this->getHeadpage();
75     if(!isset($act['targets'])) return(array());
76     $ret = array();
77     foreach($act['targets'] as $dn){
78       $ret[] = $headpage->getEntry($dn);
79     }
80     return($ret);
81   }
82 }
83 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
84 ?>