This commit is contained in:
Tim Schumacher 2013-11-12 22:37:07 +01:00
commit 8e2dc29944
3 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<?php
/**
* Created by PhpStorm.
* User: hana
* Date: 12.11.13
* Time: 22:09
*/
class DokuWikiNode {
}
class DokuWikiNameSpace extends DokuWikiNode {
}
class DokuWikiIterator {
private $nodes = array();
function __construct () {
global $conf;
$basedir = $conf['datadir'] . DIRECTORY_SEPARATOR;
}
}