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

27 lines
326 B
PHP
Raw Normal View History

2013-11-12 22:37:07 +01:00
<?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;
}
}