This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
dokuwiki-objectrepresentation/lib/enko/dokuwiki/objectrepresentation/DokuWikiNameSpace.php
Tim Schumacher 0b248d7dec Add a option to load the changesets.
The default is, not to load the changesets.
2014-06-14 09:29:13 +02:00

80 lines
No EOL
2 KiB
PHP
Executable file

<?php
/**
* Created by PhpStorm.
* User: tim
* Date: 12.06.14
* Time: 21:54
*/
namespace enko\dokuwiki\objectrepresentation;
class DokuWikiNameSpace extends DokuWikiNode
{
/** @var \ArrayObject */
public $nodes;
/**
* @param $path
* @param null $parent
*/
function __construct($path, $parent = null,$loadChangesets = false, \DateTime $maxChangeSetAge = null)
{
parent::__construct($path, $parent, $loadChangesets, $maxChangeSetAge);
$files = dir($path);
$this->nodes = new \ArrayObject();
while (($realfile = $files->read())) {
$node = null;
$file = $path . DIRECTORY_SEPARATOR . $realfile;
if (is_dir($file)) {
if (!(($realfile == '.') or ($realfile == '..'))) {
$node = new DokuWikiNameSpace($file, $this, $loadChangesets, $maxChangeSetAge);
}
} else {
$node = new DokuWikiPage($file, $this, $loadChangesets, $maxChangeSetAge);
}
if ($node) {
$this->nodes->append($node);
}
}
}
/**
* @return string
*/
public function toString()
{
$retval = '';
foreach ($this->nodes as $node) {
/** @var $node DokuWikiNode */
if ($this->name == 'root') {
$retval .= $node->toString() . "\n";
} else {
$retval .= $this->name . ":" . $node->toString() . "\n";
}
}
return $retval;
}
public function getNodes()
{
return $this->nodes;
}
public function hasChild($nodeName)
{
if ($this->nodes->count() > 0) {
foreach ($this->nodes as $node) {
/** @var DokuWikiNode $node */
if (($node instanceof DokuWikiPage) && ($node->getName() == $nodeName)) {
return $node;
}
}
}
return null;
}
}