diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-09-26 11:55:34 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-09-26 11:55:34 +0200 |
commit | fc129b76a70f6df18f564b3bf7cc45393d57a8bb (patch) | |
tree | dd5a00d90959b0444223976a43d0869c2e7b69b1 /inc/adLDAP/collections/adLDAPGroupCollection.php | |
parent | 89fd993fad76fc527d1f0e1546043908b728547e (diff) | |
parent | 8e41425c93cd83ec484adf93d3ee91e22b4b2880 (diff) | |
download | rpg-fc129b76a70f6df18f564b3bf7cc45393d57a8bb.tar.gz rpg-fc129b76a70f6df18f564b3bf7cc45393d57a8bb.tar.bz2 |
Merge branch 'adldap4' into future
* adldap4:
make use of adLDAP 4.0.4 in AD backend
Diffstat (limited to 'inc/adLDAP/collections/adLDAPGroupCollection.php')
-rw-r--r-- | inc/adLDAP/collections/adLDAPGroupCollection.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/inc/adLDAP/collections/adLDAPGroupCollection.php b/inc/adLDAP/collections/adLDAPGroupCollection.php new file mode 100644 index 000000000..cff12fc20 --- /dev/null +++ b/inc/adLDAP/collections/adLDAPGroupCollection.php @@ -0,0 +1,46 @@ +<?php
+/**
+ * PHP LDAP CLASS FOR MANIPULATING ACTIVE DIRECTORY
+ * Version 4.0.4
+ *
+ * PHP Version 5 with SSL and LDAP support
+ *
+ * Written by Scott Barnett, Richard Hyland
+ * email: scott@wiggumworld.com, adldap@richardhyland.com
+ * http://adldap.sourceforge.net/
+ *
+ * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland
+ *
+ * We'd appreciate any improvements or additions to be submitted back
+ * to benefit the entire community :)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * @category ToolsAndUtilities
+ * @package adLDAP
+ * @subpackage GroupCollection
+ * @author Scott Barnett, Richard Hyland
+ * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland
+ * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
+ * @revision $Revision: 97 $
+ * @version 4.0.4
+ * @link http://adldap.sourceforge.net/
+*/
+
+class adLDAPGroupCollection extends adLDAPCollection
+{
+
+ public function __set($attribute, $value)
+ {
+
+ }
+}
+?>
|