included docu package

This commit is contained in:
Ulf Gebhardt 2017-07-25 11:17:30 +02:00
parent 6a3078b3f2
commit 48460acec9
2 changed files with 29 additions and 1 deletions

View File

@ -1,3 +1,4 @@
<?php
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'LIB');
\LIB\lib_controll::register('\LIB\lib_tinymce');
\LIB\lib_controll::register('\LIB\lib_tinymce');
\SYSTEM\DOCU\docu::register('\LIB\docu_tinymce');

27
docu_tinymce.php Normal file
View 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_tinymce implements \SYSTEM\DOCU\docu_package {
public static function get_config(){
return array( 'id' => 'tinymce',
'inpath' => new \SYSTEM\PLIB('tinymce/'),
'outpath' => new \SYSTEM\PLIB('tinymce/docu/'),
'inpath_md' => new \SYSTEM\PLIB('tinymce/docu/structure.xml'),
'outpath_md' => new \SYSTEM\PLIB('tinymce/wiki/'),
'cachepath' => new \SYSTEM\PLIB('tinymce/docu/cache/'),
'ignore' => array(),
'sourcecode' => true,
'parseprivate' => false,
'title' => 'LIB - TinyMCE');
}
}