Code

Updated creation of ldif entries
[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   /* Result resource */
30   protected $sr;
31  
32   public function __construct(&$object) {
33     /* Store object */
34     $this->object= $object;
36     /* Set result resource */
37     $this->sr= $this->object->getSearchResource();
38   }
39  
40   public function __call($methodName, $parameters) {
41     /* Add resource pointer if the mentioned methods are used */
42     if (preg_match('/^(search|ls|cat|fetch|clearResult|resetResult|count|getDN|recursive_remove|rmdir_recursive|gen_xls|create_missing_trees|import_single_entry|import_complete_ldif)$/', $methodName)){
43       array_unshift($parameters, $this->sr);
44     }
46     $class= new ReflectionClass($this->object);
47     $method= $class->getMethod($methodName);
49     return $method->invokeArgs($this->object, $parameters);
50   }
53   public function __get($memberName) {
54     return $this->object->$memberName;
55   }
57 }
59 ?>