From bb899ba1b24920537ec2d1961e6df02c53108190 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 8 Jun 2016 19:30:35 +0200 Subject: [PATCH] #3 docu lib --- lib/lib.php | 44 ++++++++++++++++++++++++++++++++++++++++---- lib/lib_controll.php | 38 +++++++++++++++++++++++++++++++++++--- lib/lib_css.php | 22 +++++++++++++++++++++- lib/lib_js.php | 20 ++++++++++++++++++++ lib/lib_jscss.php | 26 ++++++++++++++++++++++++++ lib/lib_php.php | 27 ++++++++++++++++++++++----- 6 files changed, 164 insertions(+), 13 deletions(-) diff --git a/lib/lib.php b/lib/lib.php index 7eee58d..1e32a9c 100644 --- a/lib/lib.php +++ b/lib/lib.php @@ -1,20 +1,56 @@ PLIB object? -//or mask all paths using api -abstract class lib_php extends lib{ - protected static function php_autoload(){} //autload magic? require_once lib\autoload.inc -> should do the trick -> do that in lib -} +/** + * php lib Class provided by System to provide php libs. + * @todo better abstraction model + */ +abstract class lib_php extends lib{ + /** + * include the php files to be used + * + * @return null Returns null + */ + protected static function php_autoload(){} +} \ No newline at end of file