Code

39342d9fec4992dd420c50375fbad54f150ac7db
[gosa.git] / gosa-core / include / class_listing.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$$
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 listing {
25   var $xmlData;
26   var $entries;
27   var $departments= array();
28   var $departmentBrowser= false;
29   var $departmentRootVisible= false;
30   var $multiSelect= false;
31   var $template;
32   var $headline;
33   var $module;
34   var $base;
35   var $sortDirection= null;
36   var $sortColumn= null;
37   var $sortAttribute;
38   var $sortType;
39   var $numColumns;
40   var $baseMode= false;
41   var $bases= array();
42   var $header= array();
43   var $colprops= array();
44   var $filters= array();
45   var $pid;
46   var $objectTypes= array();
47   var $objectTypeCount= array();
48   var $objectDnMapping= array();
49   var $copyPasteHandler= null;
50   var $snapshotHandler= null;
51   var $exporter= array();
52   var $exportColumns= array();
53   var $useSpan= false;
54   var $height= 0;
57   function listing($filename)
58   {
59     global $config;
60     global $class_mapping;
62     // Initialize pid
63     $this->pid= preg_replace("/[^0-9]/", "", microtime(TRUE));
65     if (!$this->load($filename)) {
66       die("Cannot parse $filename!");
67     }
69     // Set base for filter
70     if ($this->baseMode) {
71       $this->base= session::global_get("CurrentMainBase");
72       if ($this->base == null) {
73         $this->base= $config->current['BASE'];
74       }
75       $this->refreshBasesList();
76     } else {
77       $this->base= $config->current['BASE'];
78     }
80     // Move footer information
81     $this->showFooter= ($config->get_cfg_value("listSummary") == "true");
83     // Register build in filters
84     $this->registerElementFilter("objectType", "listing::filterObjectType");
85     $this->registerElementFilter("departmentLink", "listing::filterDepartmentLink");
86     $this->registerElementFilter("link", "listing::filterLink");
87     $this->registerElementFilter("actions", "listing::filterActions");
89     // Load exporters
90     foreach($class_mapping as $class => $dummy) {
91       if (preg_match('/Exporter$/', $class)) {
92         $info= call_user_func(array($class, "getInfo"));
93         if ($info != null) {
94           $this->exporter= array_merge($this->exporter, $info);
95         }
96       }
97     }
98   }
101   function setCopyPasteHandler($handler)
102   {
103     $this->copyPasteHandler= &$handler;
104   }
107   function setHeight($height)
108   {
109     $this->height= $height;
110   }
113   function setSnapshotHandler($handler)
114   {
115     $this->snapshotHandler= &$handler;
116   }
119   function setFilter($filter)
120   {
121     $this->filter= &$filter;
122     if ($this->departmentBrowser){
123       $this->departments= $this->getDepartments();
124     }
125     $this->filter->setBase($this->base);
126   }
129   function registerElementFilter($name, $call)
130   {
131     if (!isset($this->filters[$name])) {
132       $this->filters[$name]= $call;
133       return true;
134     }
136     return false;
137   }
140   function load($filename)
141   {
142     $contents = file_get_contents($filename);
143     $this->xmlData= xml::xml2array($contents, 1);
145     if (!isset($this->xmlData['list'])) {
146       return false;
147     }
149     $this->xmlData= $this->xmlData["list"];
151     // Load some definition values
152     foreach (array("departmentBrowser", "departmentRootVisible", "multiSelect", "baseMode") as $token) {
153       if (isset($this->xmlData['definition'][$token]) &&
154           $this->xmlData['definition'][$token] == "true"){
155         $this->$token= true;
156       }
157     }
159     // Fill objectTypes from departments and xml definition
160     $types = departmentManagement::get_support_departments();
161     foreach ($types as $class => $data) {
162       $this->objectTypes[]= array("label" => $data['TITLE'],
163                                   "objectClass" => $data['OC'],
164                                   "image" => $data['IMG']);
165     }
166     $this->categories= array();
167     if (isset($this->xmlData['definition']['objectType'])) {
168       if(isset($this->xmlData['definition']['objectType']['label'])) {
169         $this->xmlData['definition']['objectType']= array($this->xmlData['definition']['objectType']);
170       }
171       foreach ($this->xmlData['definition']['objectType'] as $index => $otype) {
172         $this->objectTypes[]= $this->xmlData['definition']['objectType'][$index];
173         if (isset($this->xmlData['definition']['objectType'][$index]['category'])){
174           $this->categories[]= $this->xmlData['definition']['objectType'][$index]['category'];
175         }
176       }
177     }
179     // Parse layout per column
180     $this->colprops= $this->parseLayout($this->xmlData['table']['layout']);
182     // Prepare table headers
183     $this->renderHeader();
185     // Assign headline/module
186     $this->headline= _($this->xmlData['definition']['label']);
187     $this->module= $this->xmlData['definition']['module'];
188     if (!is_array($this->categories)){
189       $this->categories= array($this->categories);
190     }
192     // Evaluate columns to be exported
193     if (isset($this->xmlData['table']['column'])){
194       foreach ($this->xmlData['table']['column'] as $index => $config) {
195         if (isset($config['export']) && $config['export'] == "true"){
196           $this->exportColumns[]= $index;
197         }
198       }
199     }
201     return true;  
202   }
205   function renderHeader()
206   {
207     $this->header= array();
208     $this->plainHeader= array();
210     // Initialize sort?
211     $sortInit= false;
212     if (!$this->sortDirection) {
213       $this->sortColumn= 0;
214       if (isset($this->xmlData['definition']['defaultSortColumn'])){
215         $this->sortColumn= $this->xmlData['definition']['defaultSortColumn'];
216       } else {
217         $this->sortAttribute= "";
218       }
219       $this->sortDirection= array();
220       $sortInit= true;
221     }
223     if (isset($this->xmlData['table']['column'])){
224       foreach ($this->xmlData['table']['column'] as $index => $config) {
225         // Initialize everything to one direction
226         if ($sortInit) {
227           $this->sortDirection[$index]= false;
228         }
230         $sorter= "";
231         if ($index == $this->sortColumn && isset($config['sortAttribute']) &&
232             isset($config['sortType'])) {
233           $this->sortAttribute= $config['sortAttribute'];
234           $this->sortType= $config['sortType'];
235           $sorter= "&nbsp;<img border='0' title='".($this->sortDirection[$index]?_("Up"):_("Down"))."' src='images/lists/sort-".($this->sortDirection[$index]?"up":"down").".png' align='top'>";
236         }
237         $sortable= (isset($config['sortAttribute']));
239         $link= "href='?plug=".$_GET['plug']."&amp;PID=".$this->pid."&amp;act=SORT_$index'";
240         if (isset($config['label'])) {
241           if ($sortable) {
242             $this->header[$index]= "<td class='listheader' ".$this->colprops[$index]."><a $link>"._($config['label'])."$sorter</a></td>";
243           } else {
244             $this->header[$index]= "<td class='listheader' ".$this->colprops[$index].">"._($config['label'])."</td>";
245           }
246           $this->plainHeader[]= _($config['label']);
247         } else {
248           if ($sortable) {
249             $this->header[$index]= "<td class='listheader' ".$this->colprops[$index]."><a $link>&nbsp;$sorter</a></td>";
250           } else {
251             $this->header[$index]= "<td class='listheader' ".$this->colprops[$index].">&nbsp;</td>";
252           }
253           $this->plainHeader[]= "";
254         }
255       }
256     }
257   }
259   function render()
260   {
261     // Check for exeeded sizelimit
262     if (($message= check_sizelimit()) != ""){
263       return($message);
264     }
266     // Initialize list
267     $result= "<input type='hidden' value='$this->pid' name='PID'>\n";
268     $height= 450;
269     if ($this->height != 0) {
270       $result.= "<input type='hidden' value='$this->height' id='d_height'>\n";
271       $height= $this->height;
272     }
273     
274     $result.= "<div class='contentboxb' id='listing_container' style='border-top:1px solid #B0B0B0;'>\n";
275     $result.= "<table summary='$this->headline' style='width:600px;height:".$height."px;' cellspacing='0' id='t_scrolltable'>
276 <tr><td class='scrollhead'><table summary='' style='width:100%;' cellspacing='0' id='t_scrollhead'>\n";
277     $this->numColumns= count($this->colprops) + ($this->multiSelect?1:0);
279     // Build list header
280     $result.= "<tr>\n";
281     if ($this->multiSelect) {
282       $result.= "<td class='listheader' style='width:20px;'><input type='checkbox' id='select_all' name='select_all' title='"._("Select all")."' onClick='toggle_all_(\"listing_selected_[0-9]*$\",\"select_all\");' ></td>\n";
283     }
284     foreach ($this->header as $header) {
285       $result.= $header;
286     }
288     // Add 13px for scroller
289     $result.= "<td class='listheader' style='width:13px;border-right:0px;'>&nbsp;</td></table></td></tr>\n";
291     // New table for the real list contents
292     $result.= "<tr><td colspan='$this->numColumns' class='scrollbody'><div style='width:600px;height:".($height-20)."px;' id='d_scrollbody' class='scrollbody'><table summary='' style='height:100%;width:581px;table-layout:fixed;overflow:hidden;word-wrap:break-word;' cellspacing='0' id='t_scrollbody'>\n";
294     // No results? Just take an empty colspanned row
295     if (count($this->entries) + count($this->departments) == 0) {
296       $result.= "<tr class='rowxp0'><td class='list1nohighlight' colspan='$this->numColumns' style='height:100%;border-right:0px;width:100%;'>&nbsp;</td></tr>";
297     }
299     // Line color alternation
300     $alt= 0;
301     $deps= 0;
303     // Draw department browser if configured and we're not in sub mode
304     $this->useSpan= false;
305     if ($this->departmentBrowser && $this->filter->scope != "sub") {
306       // Fill with department browser if configured this way
307       $departmentIterator= new departmentSortIterator($this->departments, $this->sortDirection[$this->sortColumn]);
308       foreach ($departmentIterator as $row => $entry){
309         $result.="<tr class='rowxp".($alt&1)."'>";
311         // Render multi select if needed
312         if ($this->multiSelect) {
313           $result.="<td style='text-align:center;width:20px;' class='list1'>&nbsp;</td>";
314         }
316         // Render defined department columns, fill the rest with some stuff
317         $rest= $this->numColumns - 1;
318         foreach ($this->xmlData['table']['department'] as $index => $config) {
319           $colspan= 1;
320           if (isset($config['span'])){
321             $colspan= $config['span'];
322             $this->useSpan= true;
323           }
324           $result.="<td colspan='$colspan' ".$this->colprops[$index]." class='list1'>".$this->renderCell($config['value'], $entry, $row)."</td>";
325           $rest-= $colspan;
326         }
328         // Fill remaining cols with nothing
329         $last= $this->numColumns - $rest;
330         for ($i= 0; $i<$rest; $i++){
331           $result.= "<td ".$this->colprops[$last+$i-1]." class='list1'>&nbsp;</td>";
332         }
333         $result.="</tr>";
335         $alt++;
336       }
337       $deps= $alt;
338     }
340     // Fill with contents, sort as configured
341     foreach ($this->entries as $row => $entry) {
342       $trow= "";
344       // Render multi select if needed
345       if ($this->multiSelect) {
346         $trow.="<td style='text-align:center;width:20px;' class='list0'><input type='checkbox' id='listing_selected_$row' name='listing_selected_$row'></td>\n";
347       }
349       foreach ($this->xmlData['table']['column'] as $index => $config) {
350         $renderedCell= $this->renderCell($config['value'], $entry, $row);
351         $trow.="<td ".$this->colprops[$index]." class='list0'>".$renderedCell."</td>\n";
353         // Save rendered column
354         $sort= preg_replace('/.*>([^<]+)<.*$/', '$1', $renderedCell);
355         $sort= preg_replace('/&nbsp;/', '', $sort);
356         if (preg_match('/</', $sort)){
357           $sort= "";
358         }
359         $this->entries[$row]["_sort$index"]= $sort;
360       }
362       // Save rendered entry
363       $this->entries[$row]['_rendered']= $trow;
364     }
366     // Complete list by sorting entries for _sort$index and appending them to the output
367     $entryIterator= new listingSortIterator($this->entries, $this->sortDirection[$this->sortColumn], "_sort".$this->sortColumn, $this->sortType);
368     foreach ($entryIterator as $row => $entry){
369       $alt++;
370       $result.="<tr class='rowxp".($alt&1)."'>\n";
371       $result.= $entry['_rendered'];
372       $result.="</tr>\n";
373     }
375     // Need to fill the list if it's not full (nobody knows why this is 22 ;-))
376     $emptyListStyle= (count($this->entries) + (($this->useSpan && count($this->entries))?$deps:0) == 0)?"border:0;":"";
377     if ((count($this->entries) + $deps) < 22) {
378       $result.= "<tr>";
379       for ($i= 0; $i<$this->numColumns; $i++) {
380         if ($i == 0) {
381           $result.= "<td class='list1nohighlight' style='$emptyListStyle height:100%;'>&nbsp;</td>";
382           continue;
383         }
384         if ($i != $this->numColumns-1) {
385           $result.= "<td class='list1nohighlight' style='$emptyListStyle'>&nbsp;</td>";
386         } else {
387           $result.= "<td class='list1nohighlight' style='border-right:1px solid #AAA;$emptyListStyle'>&nbsp;</td>";
388         }
389       }
390       $result.= "</tr>";
391     }
393     $result.= "</table></div></td></tr>";
395     // Add the footer if requested
396     if ($this->showFooter) {
397       $result.= "<tr><td class='scrollhead'><table summary='' style='width:100%' cellspacing='0' id='t_scrollfoot'><tr><td class='listfooter' style='border-bottom:0px;'>";
399       foreach ($this->objectTypes as $objectType) {
400         if (isset($this->objectTypeCount[$objectType['label']])) {
401           $label= _($objectType['label']);
402           $result.= "<img class='center' src='".$objectType['image']."' title='$label' alt='$label'>&nbsp;".$this->objectTypeCount[$objectType['label']]."&nbsp;&nbsp;&nbsp;&nbsp;";
403         }
404       }
406       $result.= "<td class='listfooter' style='width:13px;border-right:0px;'>&nbsp;</td></table></td></tr>";
407     }
409     $result.= "</table></div>";
411     $smarty= get_smarty();
412     $smarty->assign("usePrototype", "true");
413     $smarty->assign("FILTER", $this->filter->render());
414     $smarty->assign("SIZELIMIT", print_sizelimit_warning());
415     $smarty->assign("LIST", $result);
417     // Assign navigation elements
418     $nav= $this->renderNavigation();
419     foreach ($nav as $key => $html) {
420       $smarty->assign($key, $html);
421     }
423     // Assign action menu / base
424     $smarty->assign("ACTIONS", $this->renderActionMenu());
425     $smarty->assign("BASE", $this->renderBase());
427     // Assign separator
428     $smarty->assign("SEPARATOR", "<img src='images/lists/seperator.png' alt='-' align='middle' height='16' width='1' class='center'>");
430     // Assign summary
431     $smarty->assign("HEADLINE", $this->headline);
433     return ($smarty->fetch(get_template_path($this->xmlData['definition']['template'], true)));
434   }
437   function update()
438   {
439     global $config;
440     $ui= get_userinfo();
442     // Reset object counter / DN mapping
443     $this->objectTypeCount= array();
444     $this->objectDnMapping= array();
446     // Do not do anything if this is not our PID
447     if(isset($_REQUEST['PID']) && $_REQUEST['PID'] != $this->pid) {
448       return;
449     }
451     // Save base
452     if (isset($_POST['BASE']) && $this->baseMode) {
453       $base= get_post('BASE');
454       if (isset($this->bases[$base])) {
455         $this->base= $base;
456         session::global_set("CurrentMainBase", $this->base);
457       }
458     }
460     // Override the base if we got a message from the browser navigation
461     if ($this->departmentBrowser && isset($_GET['act'])) {
462       if (preg_match('/^department_([0-9]+)$/', validate($_GET['act']), $match)){
463         if (isset($this->departments[$match[1]])){
464           $this->base= $this->departments[$match[1]]['dn'];
465         }
466       }
467     }
469     // Filter POST with "act" attributes -> posted from action menu
470     if (isset($_POST['exec_act']) && $_POST['act'] != '') {
471       if (preg_match('/^export.*$/', $_POST['act']) && isset($this->exporter[$_POST['act']])) {
472         $exporter= $this->exporter[$_POST['act']];
473         $userinfo= ", "._("created by")." ".$ui->cn." - ".strftime('%A, %d. %B %Y, %H:%M:%S');
474         $entryIterator= new listingSortIterator($this->entries, $this->sortDirection[$this->sortColumn], "_sort".$this->sortColumn, $this->sortType);
475         $sortedEntries= array();
476         foreach ($entryIterator as $entry){
477           $sortedEntries[]= $entry;
478         }
479         $instance= new $exporter['class']($this->headline.$userinfo, $this->plainHeader, $sortedEntries, $this->exportColumns);
480         $type= call_user_func(array($exporter['class'], "getInfo"));
481         $type= $type[$_POST['act']];
482         send_binary_content($instance->query(), $type['filename'], $type= $type['mime']);
483       }
484     }
486     // Filter GET with "act" attributes
487     if (isset($_GET['act'])) {
488       $key= validate($_GET['act']);
489       if (preg_match('/^SORT_([0-9]+)$/', $key, $match)) {
490         // Switch to new column or invert search order?
491         $column= $match[1];
492         if ($this->sortColumn != $column) {
493           $this->sortColumn= $column;
494         } else {
495           $this->sortDirection[$column]= !$this->sortDirection[$column];
496         }
498         // Allow header to update itself according to the new sort settings
499         $this->renderHeader();
500       }
501     }
503     // Override base if we got signals from the navigation elements
504     $action= "";
505     foreach ($_POST as $key => $value) {
506       if (preg_match('/^(ROOT|BACK|HOME)_x$/', $key, $match)) {
507         $action= $match[1];
508         break;
509       }
510     }
512     // Navigation handling
513     if ($action == 'ROOT') {
514       $deps= $ui->get_module_departments($this->module);
515       $this->base= $deps[0];
516     }
517     if ($action == 'BACK') {
518       $deps= $ui->get_module_departments($this->module);
519       $base= preg_replace("/^[^,]+,/", "", $this->base);
520       if(in_array_ics($base, $deps)){
521         $this->base= $base;
522       }
523     }
524     if ($action == 'HOME') {
525       $ui= get_userinfo();
526       $this->base= $this->filter->getObjectBase($ui->dn);
527     }
529     // Reload departments
530     if ($this->departmentBrowser){
531       $this->departments= $this->getDepartments();
532     }
534     // Update filter and refresh entries
535     $this->filter->setBase($this->base);
536     $this->entries= $this->filter->query();
537   }
540   function setBase($base)
541   {
542     $this->base= $base;
543   }
546   function getBase()
547   {
548     return $this->base;
549   }
552   function parseLayout($layout)
553   {
554     $result= array();
555     $layout= preg_replace("/^\|/", "", $layout);
556     $layout= preg_replace("/\|$/", "", $layout);
557     $cols= split("\|", $layout);
559     foreach ($cols as $index => $config) {
560       if ($config != "") {
561         $res= "";
562         $components= split(';', $config);
563         foreach ($components as $part) {
564           if (preg_match("/^r$/", $part)) {
565             $res.= "text-align:right;";
566             continue;
567           }
568           if (preg_match("/^l$/", $part)) {
569             $res.= "text-align:left;";
570             continue;
571           }
572           if (preg_match("/^c$/", $part)) {
573             $res.= "text-align:center;";
574             continue;
575           }
576           if (preg_match("/^[0-9]+(|px|%)$/", $part)) {
577             $res.= "width:$part;min-width:$part;";
578             continue;
579           }
580         }
582         // Add minimum width for scalable columns
583         if (!preg_match('/width:/', $res)){
584           $res.= "min-width:200px;";
585         }
587         $result[$index]= " style='$res' ";
588       } else {
589         $result[$index]= " style='min-width:100px'";
590       }
591     }
593     // Save number of columns for later use
594     $this->numColumns= count($cols);
596     return $result;
597   }
600   function renderCell($data, $config, $row)
601   {
602     // Replace flat attributes in data string
603     for ($i= 0; $i<$config['count']; $i++) {
604       $attr= $config[$i];
605       $value= "";
606       if (is_array($config[$attr])) {
607         $value= $config[$attr][0];
608       } else {
609         $value= $config[$attr];
610       }
611       $data= preg_replace("/%\{$attr\}/", $value, $data);
612     }
614     // Watch out for filters and prepare to execute them
615     $data= $this->processElementFilter($data, $config, $row);
617     // Replace all non replaced %{...} instances because they
618     // are non resolved attributes or filters
619     $data= preg_replace('/%{[^}]+}/', '&nbsp;', $data);
621     return $data;
622   }
625   function renderBase()
626   {
627     if (!$this->baseMode) {
628       return;
629     }
631     $result= "<select name='BASE' onChange='mainform.submit()' size='1'>";
632     $firstDN= null;
633     $found= false;
635     foreach ($this->bases as $key=>$value) {
636       // Keep first entry to fall back eventually
637       if(!$firstDN) {
638         $firstDN= $key;
639       }
641       // Prepare to render entry
642       $selected= "";
643       if ($key == $this->base) {
644         $selected= " selected";
645         $found= true;
646       }
647       $key = htmlentities($key,ENT_QUOTES);
648       $result.= "\n<option value=\"".$key."\"$selected>".$value."</option>";
649     }
651     $result.= "</select>";
653     // Reset the currently used base to the first DN we found if there
654     // was no match.
655     if(!$found){
656       $this->base = $firstDN;
657     }
659     return $result;
660   }
663   function processElementFilter($data, $config, $row)
664   {
665     preg_match_all("/%\{filter:([^(]+)\((.*)\)\}/", $data, $matches, PREG_SET_ORDER);
667     foreach ($matches as $match) {
668       if (!isset($this->filters[$match[1]])) {
669         continue;
670       }
671       $cl= preg_replace('/::.*$/', '', $this->filters[$match[1]]);
672       $method= preg_replace('/^.*::/', '', $this->filters[$match[1]]);
674       // Prepare params for function call
675       $params= array();
676       preg_match_all('/"[^"]+"|[^,]+/', $match[2], $parts);
677       foreach ($parts[0] as $param) {
679         // Row is replaced by the row number
680         if ($param == "row") {
681           $params[]= $row;
682         }
684         // pid is replaced by the current PID
685         if ($param == "pid") {
686           $params[]= $this->pid;
687         }
689         // base is replaced by the current base
690         if ($param == "base") {
691           $params[]= $this->getBase();
692         }
694         // Fixie with "" is passed directly
695         if (preg_match('/^".*"$/', $param)){
696           $params[]= preg_replace('/"/', '', $param);
697         }
699         // LDAP variables get replaced by their objects
700         for ($i= 0; $i<$config['count']; $i++) {
701           if ($param == $config[$i]) {
702             $values= $config[$config[$i]];
703             if (is_array($values)){
704               unset($values['count']);
705             }
706             $params[]= $values;
707           }
708         }
710         // Move dn if needed
711         if ($param == "dn") {
712           $params[]= LDAP::fix($config["dn"]);
713         }
714       }
716       // Replace information
717       if ($cl == "listing") {
718         // Non static call - seems to result in errors
719         $data= @preg_replace('/'.preg_quote($match[0]).'/', call_user_func_array(array($this, "$method"), $params), $data);
720       } else {
721         // Static call
722         $data= preg_replace('/'.preg_quote($match[0]).'/', call_user_func_array(array($cl, $method), $params), $data);
723       }
724     }
726     return $data;
727   }
730   function getObjectType($types, $classes)
731   {
732     // Walk thru types and see if there's something matching
733     foreach ($types as $objectType) {
734       $ocs= $objectType['objectClass'];
735       if (!is_array($ocs)){
736         $ocs= array($ocs);
737       }
739       $found= true;
740       foreach ($ocs as $oc){
741         if (preg_match('/^!(.*)$/', $oc, $match)) {
742           $oc= $match[1];
743           if (in_array($oc, $classes)) {
744             $found= false;
745           }
746         } else {
747           if (!in_array($oc, $classes)) {
748             $found= false;
749           }
750         }
751       }
753       if ($found) {
754         return $objectType;
755       }
756     }
758     return null;
759   }
762   function filterObjectType($dn, $classes)
763   {
764     // Walk thru classes and return on first match
765     $result= "&nbsp;";
767     $objectType= $this->getObjectType($this->objectTypes, $classes);
768     if ($objectType) {
769       $this->objectDnMapping[$dn]= $objectType["objectClass"];
770       $result= "<img class='center' title='".LDAP::fix($dn)."' src='".$objectType["image"]."'>";
771       if (!isset($this->objectTypeCount[$objectType['label']])) {
772         $this->objectTypeCount[$objectType['label']]= 0;
773       }
774       $this->objectTypeCount[$objectType['label']]++;
775     }
777     return $result;
778   }
781   function filterActions($dn, $row, $classes)
782   {
783     // Do nothing if there's no menu defined
784     if (!isset($this->xmlData['actiontriggers']['action'])) {
785       return "&nbsp;";
786     }
788     // Go thru all actions
789     $result= "";
790     $actions= $this->xmlData['actiontriggers']['action'];
791     foreach($actions as $action) {
792       // Skip the entry completely if there's no permission to execute it
793       if (!$this->hasActionPermission($action, $dn)) {
794         $result.= "<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
795         continue;
796       }
798       // Skip entry if the pseudo filter does not fit
799       if (isset($action['filter']) && preg_match('/^[a-z0-9_]+!?=[a-z0-9_]+$/i', $action['filter'])) {
800         list($fa, $fv)= split('=', $action['filter']);
801         if (preg_match('/^(.*)!$/', $fa, $m)){
802           $fa= $m[1];
803           if (isset($this->entries[$row][$fa]) && $this->entries[$row][$fa][0] == $fv) {
804             $result.= "<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
805             continue;
806           }
807         } else {
808           if (!isset($this->entries[$row][$fa]) && !$this->entries[$row][$fa][0] == $fv) {
809             $result.= "<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
810             continue;
811           }
812         }
813       }
816       // If there's an objectclass definition and we don't have it
817       // add an empty picture here.
818       if (isset($action['objectclass'])){
819         $objectclass= $action['objectclass'];
820         if (preg_match('/^!(.*)$/', $objectclass, $m)){
821           $objectclass= $m[1];
822           if(in_array($objectclass, $classes)) {
823             $result.= "<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
824             continue;
825           }
826         } else {
827           if(!in_array($objectclass, $classes)) {
828             $result.= "<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
829             continue;
830           }
831         }
832       }
834       // Render normal entries as usual
835       if ($action['type'] == "entry") {
836         $label= $this->processElementFilter($action['label'], $this->entries[$row], $row);
837         $image= $this->processElementFilter($action['image'], $this->entries[$row], $row);
838         $result.="<input class='center' type='image' src='$image' title='$label' ".
839                  "name='listing_".$action['name']."_$row' style='padding:1px'>";
840       }
842       // Handle special types
843       if ($action['type'] == "copypaste" || $action['type'] == "snapshot") {
845         $objectType= $this->getObjectType($this->objectTypes, $this->entries[$row]['objectClass']);
846         $category= $class= null;
847         if ($objectType) {
848           $category= $objectType['category'];
849           $class= $objectType['class'];
850         }
852         if ($action['type'] == "copypaste") {
853           $result.= $this->renderCopyPasteActions($row, $this->entries[$row]['dn'], $category, $class);
854         } else {
855           $result.= $this->renderSnapshotActions($row, $this->entries[$row]['dn'], $category, $class);
856         }
857       }
858     }
860     return $result;
861   }
864   function filterDepartmentLink($row, $dn, $description)
865   {
866     $attr= $this->departments[$row]['sort-attribute'];
867     $name= $this->departments[$row][$attr];
868     if (is_array($name)){
869       $name= $name[0];
870     }
871     $result= sprintf("%s [%s]", $name, $description[0]);
872     return("<a href='?plug=".$_GET['plug']."&amp;PID=$this->pid&amp;act=department_$row' title='$dn'>$result</a>");
873   }
876   function filterLink()
877   {
878     $result= "&nbsp;";
880     $row= func_get_arg(0);
881     $pid= $this->pid;
882     $dn= LDAP::fix(func_get_arg(1));
883     $params= array(func_get_arg(2));
885     // Collect sprintf params
886     for ($i = 3;$i < func_num_args();$i++) {
887       $val= func_get_arg($i);
888       if (is_array($val)){
889         $params[]= $val[0];
890         continue;
891       }
892       $params[]= $val;
893     }
895     $result= "&nbsp;";
896     $trans= call_user_func_array("sprintf", $params);
897     if ($trans != "") {
898       return("<a href='?plug=".$_GET['plug']."&amp;PID=$pid&amp;act=listing_edit_$row' title='$dn'>$trans</a>");
899     }
901     return $result;
902   }
905   function renderNavigation()
906   {
907     $result= array();
908     $enableBack = true;
909     $enableRoot = true;
910     $enableHome = true;
912     $ui = get_userinfo();
914     /* Check if base = first available base */
915     $deps = $ui->get_module_departments($this->module);
917     if(!count($deps) || $deps[0] == $this->filter->base){
918       $enableBack = false;
919       $enableRoot = false;
920     }
922     $listhead ="";
924     /* Check if we are in users home  department */
925     if(!count($deps) || $this->filter->base == $this->filter->getObjectBase($ui->dn)){
926       $enableHome = false;
927     }
929     /* Draw root button */
930     if($enableRoot){
931       $result["ROOT"]= "<input class='center' type='image' src='images/lists/root.png' align='middle' ".
932                        "title='"._("Go to root department")."' name='ROOT' alt='"._("Root")."'>";
933     }else{
934       $result["ROOT"]= "<img src='images/lists/root_grey.png' class='center' alt='"._("Root")."'>";
935     }
937     /* Draw back button */
938     if($enableBack){
939       $result["BACK"]= "<input class='center' type='image' align='middle' src='images/lists/back.png' ".
940                        "title='"._("Go up one department")."' alt='"._("Up")."' name='BACK'>";
941     }else{
942       $result["BACK"]= "<img src='images/lists/back_grey.png' class='center' alt='"._("Up")."'>";
943     }
945     /* Draw home button */
946     if($enableHome){
947       $result["HOME"]= "<input class='center' type='image' align='middle' src='images/lists/home.png' ".
948                        "title='"._("Go to users department")."' alt='"._("Home")."' name='HOME'>";
949     }else{
950       $result["HOME"]= "<img src='images/lists/home_grey.png' class='center' alt='"._("Home")."'>";
951     }
953     /* Draw reload button, this button is enabled everytime */
954     $result["RELOAD"]= "<input class='center' type='image' src='images/lists/reload.png' align='middle' ".
955                        "title='"._("Reload list")."' name='REFRESH' alt='"._("Submit")."'>";
957     return ($result);
958   }
961   function getAction()
962   {
963     // Do not do anything if this is not our PID, or there's even no PID available...
964     if(!isset($_REQUEST['PID']) || $_REQUEST['PID'] != $this->pid) {
965       return;
966     }
968     $result= array("targets" => array(), "action" => "");
970     // Filter GET with "act" attributes
971     if (isset($_GET['act'])) {
972       $key= validate($_GET['act']);
973       $target= preg_replace('/^listing_[a-zA-Z_]+_([0-9]+)$/', '$1', $key);
974       if (isset($this->entries[$target]['dn'])) {
975         $result['action']= preg_replace('/^listing_([a-zA-Z_]+)_[0-9]+$/', '$1', $key);
976         $result['targets'][]= $this->entries[$target]['dn'];
977       }
979       // Drop targets if empty
980       if (count($result['targets']) == 0) {
981         unset($result['targets']);
982       }
983       return $result;
984     }
986     // Filter POST with "listing_" attributes
987     foreach ($_POST as $key => $prop) {
989       // Capture selections
990       if (preg_match('/^listing_selected_[0-9]+$/', $key)) {
991         $target= preg_replace('/^listing_selected_([0-9]+)$/', '$1', $key);
992         if (isset($this->entries[$target]['dn'])) {
993           $result['targets'][]= $this->entries[$target]['dn'];
994         }
995         continue;
996       }
998       // Capture action with target - this is a one shot
999       if (preg_match('/^listing_[a-zA-Z_]+_[0-9]+(|_x)$/', $key)) {
1000         $target= preg_replace('/^listing_[a-zA-Z_]+_([0-9]+)(|_x)$/', '$1', $key);
1001         if (isset($this->entries[$target]['dn'])) {
1002           $result['action']= preg_replace('/^listing_([a-zA-Z_]+)_[0-9]+(|_x)$/', '$1', $key);
1003           $result['targets']= array($this->entries[$target]['dn']);
1004         }
1005         break;
1006       }
1008       // Capture action without target
1009       if (preg_match('/^listing_[a-zA-Z_]+(|_x)$/', $key)) {
1010         $result['action']= preg_replace('/^listing_([a-zA-Z_]+)(|_x)$/', '$1', $key);
1011         continue;
1012       }
1013     }
1015     // Filter POST with "act" attributes -> posted from action menu
1016     if (isset($_POST['act']) && $_POST['act'] != '') {
1017       if (!preg_match('/^export.*$/', $_POST['act'])){
1018         $result['action']= validate($_POST['act']);
1019       }
1020     }
1022     // Drop targets if empty
1023     if (count($result['targets']) == 0) {
1024       unset($result['targets']);
1025     }
1026     return $result;
1027   }
1030   function renderActionMenu()
1031   {
1032     // Don't send anything if the menu is not defined
1033     if (!isset($this->xmlData['actionmenu']['action'])){
1034       return "";
1035     }
1037     // Array?
1038     if (isset($this->xmlData['actionmenu']['action']['type'])){
1039       $this->xmlData['actionmenu']['action']= array($this->xmlData['actionmenu']['action']);
1040     }
1042     // Load shortcut
1043     $actions= &$this->xmlData['actionmenu']['action'];
1044     $result= "<input type='hidden' name='act' id='actionmenu' value=''><div style='display:none'><input type='submit' name='exec_act' id='exec_act' value=''></div>".
1045              "<ul class='level1' id='root'><li><a href='#'>"._("Actions")."&nbsp;<img ".
1046              "border=0 class='center' src='images/lists/sort-down.png'></a>";
1048     // Build ul/li list
1049     $result.= $this->recurseActions($actions);
1051     return "<div id='pulldown'>".$result."</li></ul><div>";
1052   }
1055   function recurseActions($actions)
1056   {
1057     global $class_mapping;
1058     static $level= 2;
1059     $result= "<ul class='level$level'>";
1060     $separator= "";
1062     foreach ($actions as $action) {
1064       // Skip the entry completely if there's no permission to execute it
1065       if (!$this->hasActionPermission($action, $this->filter->base)) {
1066         continue;
1067       }
1069       // Skip entry if there're missing dependencies
1070       if (isset($action['depends'])) {
1071         $deps= is_array($action['depends'])?$action['depends']:array($action['depends']);
1072         foreach($deps as $clazz) {
1073           if (!isset($class_mapping[$clazz])){
1074             continue 2;
1075           }
1076         }
1077       }
1079       // Fill image if set
1080       $img= "";
1081       if (isset($action['image'])){
1082         $img= "<img border='0' class='center' src='".$action['image']."'>&nbsp;";
1083       }
1085       if ($action['type'] == "separator"){
1086         $separator= " style='border-top:1px solid #AAA' ";
1087         continue;
1088       }
1090       // Dive into subs
1091       if ($action['type'] == "sub" && isset($action['action'])) {
1092         $level++;
1093         if (isset($action['label'])){
1094           $result.= "<li$separator><a href='#'>$img"._($action['label'])."&nbsp;<img border='0' src='images/forward-arrow.png'></a>";
1095         }
1096         $result.= $this->recurseActions($action['action'])."</li>";
1097         $level--;
1098         $separator= "";
1099         continue;
1100       }
1102       // Render entry elseways
1103       if (isset($action['label'])){
1104         $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"".$action['name']."\";mainform.submit();'>$img"._($action['label'])."</a></li>";
1105       }
1107       // Check for special types
1108       switch ($action['type']) {
1109         case 'copypaste':
1110           $result.= $this->renderCopyPasteMenu($separator);
1111           break;
1113         case 'snapshot':
1114           $result.= $this->renderSnapshotMenu($separator);
1115           break;
1117         case 'exporter':
1118           $result.= $this->renderExporterMenu($separator);
1119           break;
1121         case 'daemon':
1122           $result.= $this->renderDaemonMenu($separator);
1123           break;
1124       }
1126       $separator= "";
1127     }
1129     $result.= "</ul>";
1130     return $result;
1131   }
1134   function hasActionPermission($action, $dn)
1135   {
1136     $ui= get_userinfo();
1138     if (isset($action['acl'])) {
1139       $acls= $action['acl'];
1140       if (!is_array($acls)) {
1141         $acls= array($acls);
1142       }
1144       // Every ACL has to pass
1145       foreach ($acls as $acl) {
1146         $module= $this->module;
1147         $aclList= array();
1149         // Split for category and plugins if needed
1150         // match for "[rw]" style entries
1151         if (preg_match('/^\[([rwcdm]+)\]$/', $acl, $match)){
1152           $aclList= array($match[1]);
1153         }
1155         // match for "users[rw]" style entries
1156         if (preg_match('/^([a-zA-Z0-9]+)\[([rwcdm]+)\]$/', $acl, $match)){
1157           $module= $match[1];
1158           $aclList= array($match[2]);
1159         }
1161         // match for "users/user[rw]" style entries
1162         if (preg_match('/^([a-zA-Z0-9]+\/[a-zA-Z0-9]+)\[([rwcdm]+)\]$/', $acl, $match)){
1163           $module= $match[1];
1164           $aclList= array($match[2]);
1165         }
1167         // match "users/user[userPassword:rw(,...)*]" style entries
1168         if (preg_match('/^([a-zA-Z0-9]+\/[a-zA-Z0-9]+)\[([a-zA-Z0-9]+:[rwcdm]+(,[a-zA-Z0-9]+:[rwcdm]+)*)\]$/', $acl, $match)){
1169           $module= $match[1];
1170           $aclList= split(',', $match[2]);
1171         }
1173         // Walk thru prepared ACL by using $module
1174         foreach($aclList as $sAcl) {
1175           $checkAcl= "";
1177           // Category or detailed permission?
1178           if (strpos('/', $module) === false) {
1179             if (preg_match('/([a-zA-Z0-9]+):([rwcdm]+)/', $sAcl, $m) ) {
1180               $checkAcl= $ui->get_permissions($dn, $module, $m[1]);
1181               $sAcl= $m[2];
1182             } else {
1183               $checkAcl= $ui->get_permissions($dn, $module, '0');
1184             }
1185           } else {
1186             $checkAcl= $ui->get_category_permissions($dn, $module);
1187           }
1189           // Split up remaining part of the acl and check if it we're
1190           // allowed to do something...
1191           $parts= str_split($sAcl);
1192           foreach ($parts as $part) {
1193             if (strpos($checkAcl, $part) === false){
1194               return false;
1195             }
1196           }
1198         }
1199       }
1200     }
1202     return true;
1203   }
1206   function refreshBasesList()
1207   {
1208     global $config;
1209     $ui= get_userinfo();
1211     // Do some array munching to get it user friendly
1212     $ids= $config->idepartments;
1213     $d= $ui->get_module_departments($this->module);
1214     $k_ids= array_keys($ids);
1215     $deps= array_intersect($d,$k_ids);
1217     // Fill internal bases list
1218     $this->bases= array();
1219     foreach($k_ids as $department){
1220       $this->bases[$department] = $ids[$department];
1221     }
1222   }
1225   function getDepartments()
1226   {
1227     $departments= array();
1228     $ui= get_userinfo();
1230     // Get list of supported department types
1231     $types = departmentManagement::get_support_departments();
1233     // Load departments allowed by ACL
1234     $validDepartments = $ui->get_module_departments($this->module);
1236     // Build filter and look in the LDAP for possible sub departments
1237     // of current base
1238     $filter= "(&(objectClass=gosaDepartment)(|";
1239     $attrs= array("description", "objectClass");
1240     foreach($types as $name => $data){
1241       $filter.= "(objectClass=".$data['OC'].")";
1242       $attrs[]= $data['ATTR'];
1243     }
1244     $filter.= "))";
1245     $res= get_list($filter, $this->module, $this->base, $attrs, GL_NONE);
1247     // Analyze list of departments
1248     foreach ($res as $department) {
1249       if (!in_array($department['dn'], $validDepartments)) {
1250         continue;
1251       }
1253       // Add the attribute where we use for sorting
1254       $oc= null;
1255       foreach(array_keys($types) as $type) {
1256         if (in_array($type, $department['objectClass'])) {
1257           $oc= $type;
1258           break;
1259         }
1260       }
1261       $department['sort-attribute']= $types[$oc]['ATTR'];
1263       // Move to the result list
1264       $departments[]= $department;
1265     }
1267     return $departments;
1268   }
1271   function renderCopyPasteMenu($separator, $copy= true, $cut= true)
1272   {
1273     // We can only provide information if we've got a copypaste handler
1274     // instance
1275     if(!(isset($this->copyPasteHandler) && is_object($this->copyPasteHandler))){
1276       return "";
1277     }
1279     // Presets
1280     $result= "";
1281     $read= $paste= false;
1282     $ui= get_userinfo();
1284     // Switch flags to on if there's at least one category which allows read/paste
1285     foreach($this->categories as $category){
1286       $read= $read || preg_match('/r/', $ui->get_category_permissions($this->base, $category));
1287       $paste= $paste || $ui->is_pasteable($this->base, $category) == 1;
1288     }
1291     // Draw entries that allow copy and cut
1292     if($read){
1294       // Copy entry
1295       if($copy){
1296         $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"copy\";document.getElementById(\"exec_act\").click();'><img src='images/lists/copy.png' alt='' border='0' class='center'>&nbsp;"._("Copy")."</a></li>";
1297         $separator= "";
1298       }
1300       // Cut entry
1301       if($cut){
1302         $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"cut\";document.getElementById(\"exec_act\").click();'><img src='images/lists/cut.png' alt='' border='0' class='center'>&nbsp;"._("Cut")."</a></li>";
1303         $separator= "";
1304       }
1305     }
1307     // Draw entries that allow pasting entries
1308     if($paste){
1309       if($this->copyPasteHandler->entries_queued()){
1310         $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"paste\";document.getElementById(\"exec_act\").click();'><img src='images/lists/paste.png' alt='' border='0' class='center'>&nbsp;"._("Paste")."</a></li>";
1311       }else{
1312         $result.= "<li$separator><a href='#'><img src='images/lists/paste-grey.png' alt='' border='0' class='center'>&nbsp;"._("Paste")."</a></li>";
1313       }
1314     }
1315     
1316     return($result);
1317   }
1320   function renderCopyPasteActions($row, $dn, $category, $class, $copy= true, $cut= true)
1321   {
1322     // We can only provide information if we've got a copypaste handler
1323     // instance
1324     if(!(isset($this->copyPasteHandler) && is_object($this->copyPasteHandler))){
1325       return "";
1326     }
1328     // Presets
1329     $ui = get_userinfo();
1330     $result = "";
1332     // Render cut entries
1333     if($cut){
1334       if($ui->is_cutable($dn, $category, $class)){
1335         $result .= "<input class='center' type='image'
1336           src='images/lists/cut.png' alt='"._("Cut")."' name='listing_cut_$row' title='"._("Cut this entry")."' style='padding:1px'>";
1337       }else{
1338         $result.="<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
1339       }
1340     }
1342     // Render copy entries
1343     if($copy){
1344       if($ui->is_copyable($dn, $category, $class)){
1345         $result.= "<input class='center' type='image'
1346           src='images/lists/copy.png' alt='"._("Copy")."' name='listing_copy_$row' title='"._("Copy this entry")."' style='padding:1px'>";
1347       }else{
1348         $result.="<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
1349       }
1350     }
1352     return($result);
1353   }
1356   function renderSnapshotMenu($separator)
1357   {
1358     // We can only provide information if we've got a snapshot handler
1359     // instance
1360     if(!(isset($this->snapshotHandler) && is_object($this->snapshotHandler))){
1361       return "";
1362     }
1364     // Presets
1365     $result = "";
1366     $ui = get_userinfo();
1368     if($this->snapshotHandler->enabled() && $ui->allow_snapshot_restore($this->base, $this->module)){
1370       // Check if there is something to restore
1371       $restore= false;
1372       foreach($this->snapshotHandler->getSnapshotBases() as $base){
1373         $restore= $restore || count($this->snapshotHandler->getDeletedSnapshots($base)) > 0;
1374       }
1376       // Draw icons according to the restore flag
1377       if($restore){
1378         $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"restore\";document.getElementById(\"exec_act\").click();'><img src='images/lists/restore.png' alt='' border='0' class='center'>&nbsp;"._("Restore snapshots")."</a></li>";
1379       }else{
1380         $result.= "<li$separator><a href='#'><img src='images/lists/restore_grey.png' alt='' border='0' class='center'>&nbsp;"._("Restore snapshots")."</a></li>";
1381       }
1382     }
1384     return($result);
1385   }
1388   function renderExporterMenu($separator)
1389   {
1390     // Presets
1391     $result = "";
1393     // Draw entries
1394     $result.= "<li$separator><a href='#'><img border='0' class='center' src='images/lists/export.png'>&nbsp;"._("Export list")."&nbsp;<img border='0' src='images/forward-arrow.png'></a><ul class='level3'>";
1396     // Export CVS as build in exporter
1397     foreach ($this->exporter as $action => $exporter) {
1398       $result.= "<li><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"$action\";document.getElementById(\"exec_act\").click();'><img border='0' class='center' src='".$exporter['image']."'>&nbsp;".$exporter['label']."</a></li>";
1399     }
1401     // Finalize list
1402     $result.= "</ul></li>";
1404     return($result);
1405   }
1408   function renderSnapshotActions($row, $dn, $category, $class, $copy= true, $cut= true)
1409   {
1410     // We can only provide information if we've got a snapshot handler
1411     // instance
1412     if(!(isset($this->snapshotHandler) && is_object($this->snapshotHandler))){
1413       return "";
1414     }
1416     // Presets
1417     $result= "";
1418     $ui = get_userinfo();
1420     // Only act if enabled here
1421     if($this->snapshotHandler->enabled()){
1423       // Draw restore button
1424       if ($ui->allow_snapshot_restore($dn, $category)){
1426         // Do we have snapshots for this dn?
1427         if($this->snapshotHandler->hasSnapshots($dn)){
1428           $result.= "<input class='center' type='image' src='images/lists/restore.png' ".
1429                      "alt='"._("Restore snapshot")."' name='listing_restore_$row' title='".
1430                      _("Restore snapshot")."' style='padding:1px'>";
1431         } else {
1432           $result.= "<img src='images/lists/restore_grey.png' alt=' ' class='center' style='padding:1px'>";
1433         }
1434       }
1436       // Draw snapshot button
1437       if($ui->allow_snapshot_create($dn, $category)){
1438           $result.= "<input class='center' type='image' src='images/snapshot.png' ".
1439                      "alt='"._("Create snapshot")."' name='listing_snapshot_$row' title='".
1440                      _("Create a new snapshot from this object")."' style='padding:1px'>";
1441       }else{
1442           $result.= "<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
1443       }
1444     }
1446     return($result);
1447   }
1450   function renderDaemonMenu($separator)
1451   {
1452     $result= "";
1454     // If there is a daemon registered, draw the menu entries
1455     if(class_available("DaemonEvent")){
1456       $events= DaemonEvent::get_event_types_by_category($this->categories);
1457       if(isset($events['BY_CLASS']) && count($events['BY_CLASS'])){
1458         foreach($events['BY_CLASS'] as $name => $event){
1459           $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value=\"$name\";document.getElementById(\"exec_act\").click();'>".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."</a></li>";
1460           $separator= "";
1461         }
1462       }
1463     }
1465     return $result;
1466   }
1469   function getType($dn)
1470   {
1471     if (isset($this->objectDnMapping[$dn])) {
1472       return $this->objectDnMapping[$dn];
1473     }
1474     return null;
1475   }
1479 ?>