included lib object

This commit is contained in:
Ulf Gebhardt 2015-06-09 20:11:11 +02:00
parent 5c11af9dcf
commit 4765518860
2 changed files with 15 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_tablesorter');

12
lib_tablesorter.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace LIB;
class lib_tablesorter extends \LIB\lib_jscss{
public static function get_class(){
return self::class;}
public static function js_path(){
return \SYSTEM\WEBPATH(new \SYSTEM\PLIB(),'/tablesorter/lib/dist/js/jquery.tablesorter.min.js');}
public static function css_path(){
return \SYSTEM\WEBPATH(new \SYSTEM\PLIB(),'/tablesorter/lib/dist/css/jquery.tablesorter.pager.min.css');}
public static function version(){
return '<a href="https://github.com/Mottie/tablesorter" target="_blank">https://github.com/Mottie/tablesorter</a> (commit: ?)';}
}