mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
43 lines
1001 B
PHP
43 lines
1001 B
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Ldap\Node;
|
|
|
|
use Zend\Ldap;
|
|
|
|
/**
|
|
* Zend\Ldap\Node\Collection provides a collection of nodes.
|
|
*/
|
|
class Collection extends Ldap\Collection
|
|
{
|
|
/**
|
|
* Creates the data structure for the given entry data
|
|
*
|
|
* @param array $data
|
|
* @return \Zend\Ldap\Node
|
|
*/
|
|
protected function createEntry(array $data)
|
|
{
|
|
$node = Ldap\Node::fromArray($data, true);
|
|
$node->attachLDAP($this->iterator->getLDAP());
|
|
return $node;
|
|
}
|
|
|
|
/**
|
|
* Return the child key (DN).
|
|
* Implements Iterator and RecursiveIterator
|
|
*
|
|
* @return string
|
|
*/
|
|
public function key()
|
|
{
|
|
return $this->iterator->key();
|
|
}
|
|
}
|