included docu package
This commit is contained in:
parent
fa77e997e3
commit
0d964b1855
@ -1,3 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'LIB');
|
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'LIB');
|
||||||
\LIB\lib_controll::register('\LIB\lib_lettering');
|
\LIB\lib_controll::register('\LIB\lib_lettering');
|
||||||
|
\SYSTEM\DOCU\docu::register('\LIB\docu_lettering');
|
||||||
27
docu_lettering.php
Normal file
27
docu_lettering.php
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* System - PHP Framework
|
||||||
|
*
|
||||||
|
* PHP Version 5.6
|
||||||
|
*
|
||||||
|
* @copyright 2016 Ulf Gebhardt (http://www.webcraft-media.de)
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
||||||
|
* @link https://github.com/webcraftmedia/system
|
||||||
|
* @package LIB
|
||||||
|
*/
|
||||||
|
namespace LIB;
|
||||||
|
|
||||||
|
class docu_lettering implements \SYSTEM\DOCU\docu_package {
|
||||||
|
public static function get_config(){
|
||||||
|
return array( 'id' => 'lettering',
|
||||||
|
'inpath' => new \SYSTEM\PLIB('lettering/'),
|
||||||
|
'outpath' => new \SYSTEM\PLIB('lettering/docu/'),
|
||||||
|
'inpath_md' => new \SYSTEM\PLIB('lettering/docu/structure.xml'),
|
||||||
|
'outpath_md' => new \SYSTEM\PLIB('lettering/wiki/'),
|
||||||
|
'cachepath' => new \SYSTEM\PLIB('lettering/docu/cache/'),
|
||||||
|
'ignore' => array(),
|
||||||
|
'sourcecode' => true,
|
||||||
|
'parseprivate' => false,
|
||||||
|
'title' => 'LIB - Lettering');
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user