equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Ldap |
16 * @package Zend_Ldap |
17 * @subpackage Node |
17 * @subpackage Node |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: Abstract.php 24593 2012-01-05 20:35:02Z matthew $ |
20 * @version $Id$ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Ldap_Attribute |
24 * @see Zend_Ldap_Attribute |
25 */ |
25 */ |
33 * Zend_Ldap_Node_Abstract provides a bas eimplementation for LDAP nodes |
33 * Zend_Ldap_Node_Abstract provides a bas eimplementation for LDAP nodes |
34 * |
34 * |
35 * @category Zend |
35 * @category Zend |
36 * @package Zend_Ldap |
36 * @package Zend_Ldap |
37 * @subpackage Node |
37 * @subpackage Node |
38 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
38 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
39 * @license http://framework.zend.com/license/new-bsd New BSD License |
39 * @license http://framework.zend.com/license/new-bsd New BSD License |
40 */ |
40 */ |
41 abstract class Zend_Ldap_Node_Abstract implements ArrayAccess, Countable |
41 abstract class Zend_Ldap_Node_Abstract implements ArrayAccess, Countable |
42 { |
42 { |
43 protected static $_systemAttributes=array('createtimestamp', 'creatorsname', |
43 protected static $_systemAttributes=array('createtimestamp', 'creatorsname', |
93 * Reload node attributes from LDAP. |
93 * Reload node attributes from LDAP. |
94 * |
94 * |
95 * This is an online method. |
95 * This is an online method. |
96 * |
96 * |
97 * @param Zend_Ldap $ldap |
97 * @param Zend_Ldap $ldap |
98 * @return Zend_Ldap_Node_Abstract Provides a fluid interface |
98 * @return Zend_Ldap_Node_Abstract Provides a fluent interface |
99 * @throws Zend_Ldap_Exception |
99 * @throws Zend_Ldap_Exception |
100 */ |
100 */ |
101 public function reload(Zend_Ldap $ldap = null) |
101 public function reload(Zend_Ldap $ldap = null) |
102 { |
102 { |
103 if ($ldap !== null) { |
103 if ($ldap !== null) { |