init
This commit is contained in:
commit
8e2dc29944
3 changed files with 100 additions and 0 deletions
27
DokuWikiObjectRepresentation.class.php
Normal file
27
DokuWikiObjectRepresentation.class.php
Normal 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;
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in a new issue