Code

Replace {t}Delete{/t} with {msgPool type=delButton}
[gosa.git] / gosa-core / include / class_ldapMultiplexer.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_plugin.inc 9466 2008-03-08 15:59:37Z cajus $$
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  */
24 class ldapMultiplexer {
26   /* Internal stuff */
27   protected $object;
29   /* Caching switch - not implemented right now */
30   protected $use_cache= false;
32   /* Result resource */
33   protected $sr;
34  
35   public function __construct(&$object) {
36     /* Store object */
37     $this->object= $object;
39     /* Set result resource */
40     $this->sr= $this->object->getSearchResource();
41   }
42  
43   public function __call($methodName, $parameters) {
44     $id = md5($methodName.serialize($parameters));
45  
46     /* Add resource pointer if the mentioned methods are used */
47     if (preg_match('/^(search|ls|cat|fetch|clearResult|resetResult|count|getDN|recursive_remove|rmdir_recursive|gen_xls|gen_ldif|create_missing_trees|import_single_entry|import_complete_ldif)$/', $methodName)){
48       array_unshift($parameters, $this->sr);
49     }
51     try {
52       $class= new ReflectionClass($this->object);
53       $method= $class->getMethod($methodName);
55       return $method->invokeArgs($this->object, $parameters);
56     }
58     catch (ReflectionException $e) {
59     }
60   }
63   public function __get($memberName) {
64     echo "Obsolete access to member variable '$memberName'!<br>";
65     return $this->object->$memberName;
66   }
68 }
70 ?>