included docu package
This commit is contained in:
parent
5cbffcf4e9
commit
967f38f6c8
@ -1,3 +1,4 @@
|
||||
<?php
|
||||
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'LIB');
|
||||
\LIB\lib_controll::register('\LIB\lib_jquery');
|
||||
\LIB\lib_controll::register('\LIB\lib_jquery');
|
||||
\SYSTEM\DOCU\docu::register('\LIB\docu_jquery');
|
||||
27
docu_jquery.php
Normal file
27
docu_jquery.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_jquery implements \SYSTEM\DOCU\docu_package {
|
||||
public static function get_config(){
|
||||
return array( 'id' => 'jquery',
|
||||
'inpath' => new \SYSTEM\PLIB('jquery/'),
|
||||
'outpath' => new \SYSTEM\PLIB('jquery/docu/'),
|
||||
'inpath_md' => new \SYSTEM\PLIB('jquery/docu/structure.xml'),
|
||||
'outpath_md' => new \SYSTEM\PLIB('jquery/wiki/'),
|
||||
'cachepath' => new \SYSTEM\PLIB('jquery/docu/cache/'),
|
||||
'ignore' => array(),
|
||||
'sourcecode' => true,
|
||||
'parseprivate' => false,
|
||||
'title' => 'LIB - JQuery');
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user