blob: 176f962c64097d6d10e6073b2b36ae72ccd41d53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?php
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
namespace Icinga\Protocol\Ldap;
/**
* This class represents an LDAP node object
*
* @copyright Copyright (c) 2013 Icinga-Web Team <info@icinga.com>
* @author Icinga-Web Team <info@icinga.com>
* @package Icinga\Protocol\Ldap
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
*/
class Node extends Root
{
/**
* @var LdapConnection
*/
protected $connection;
/**
* @var
*/
protected $rdn;
/**
* @var Root
*/
protected $parent;
/**
* @param Root $parent
*/
protected function __construct(Root $parent)
{
$this->connection = $parent->getConnection();
$this->parent = $parent;
}
/**
* @param $parent
* @param $rdn
* @param array $props
* @return Node
*/
public static function createWithRDN($parent, $rdn, $props = array())
{
$node = new Node($parent);
$node->rdn = $rdn;
$node->props = $props;
return $node;
}
/**
* @return mixed
*/
public function getRDN()
{
return $this->rdn;
}
/**
* @return mixed|string
*/
public function getDN()
{
return $this->getRDN() . ',' . $this->parent->getDN();
}
}
|