init commit

This commit is contained in:
Ulf Gebhardt 2016-03-12 00:39:27 +01:00
commit b632e12b1f
4 changed files with 17 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "lib/jstree"]
path = lib/jstree
url = git@github.com:vakata/jstree.git

3
autoload.inc Normal file
View File

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

1
lib/jstree Submodule

@ -0,0 +1 @@
Subproject commit 56530b6b2e17c3046d02ab5d06b87c59f038f0c2

10
lib_jstree.php Normal file
View File

@ -0,0 +1,10 @@
<?php
namespace LIB;
class lib_jstree extends \LIB\lib_js{
public static function get_class(){
return self::class;}
public static function js_path(){
return new \SYSTEM\PLIB('jstree/lib/jstree/dist/jstree.min.js');}
public static function version(){
return '<a href="https://github.com/vakata/jstree/tree/56530b6b2e17c3046d02ab5d06b87c59f038f0c2" target="_blank">https://github.com/vakata/jstree/tree/56530b6b2e17c3046d02ab5d06b87c59f038f0c2</a>';}
}