init commit

This commit is contained in:
Ulf Gebhardt 2016-04-11 20:13:14 +02:00
commit 0e41e05e20
3 changed files with 4621 additions and 0 deletions

3
autoload.inc Normal file
View File

@ -0,0 +1,3 @@
<?php
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'LIB');
\LIB\lib_controll::register('\LIB\lib_handlebars');

4608
lib/handlebars-v4.0.5.js Normal file

File diff suppressed because one or more lines are too long

10
lib_handlebars.php Normal file
View File

@ -0,0 +1,10 @@
<?php
namespace LIB;
class lib_handlebars extends \LIB\lib_js{
public static function get_class(){
return self::class;}
public static function js_path(){
return new \PLIB('handlebars/lib/handlebars-v4.0.5.js');}
public static function version(){
return '4.0.5';}
}