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/DokuWikiObjectRepresentation.class.php
Tim Schumacher 8e2dc29944 init
2013-11-12 22:37:07 +01:00

27 lines
No EOL
326 B
PHP

<?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;
}
}