v 1.0.20
This commit is contained in:
parent
1b2eb4a98d
commit
6d98363e06
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "lib"]
|
||||
path = lib
|
||||
url = git@github.com:lukehaas/Scrollify.git
|
||||
4
autoload.inc
Normal file
4
autoload.inc
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'LIB');
|
||||
\LIB\lib_controll::register('\LIB\lib_scrollify');
|
||||
\SYSTEM\DOCU\docu::register('\LIB\docu_scrollify');
|
||||
27
docu_scrollify.php
Normal file
27
docu_scrollify.php
Normal 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_scrollify implements \SYSTEM\DOCU\docu_package {
|
||||
public static function get_config(){
|
||||
return array( 'id' => 'scrollify',
|
||||
'inpath' => new \PLIB('scrollify/'),
|
||||
'outpath' => new \PLIB('scrollify/docu/'),
|
||||
'inpath_md' => new \PLIB('scrollify/docu/structure.xml'),
|
||||
'outpath_md' => new \PLIB('scrollify/wiki/'),
|
||||
'cachepath' => new \PLIB('scrollify/docu/cache/'),
|
||||
'ignore' => array(),
|
||||
'sourcecode' => true,
|
||||
'parseprivate' => false,
|
||||
'title' => 'LIB - Scrollify');
|
||||
}
|
||||
}
|
||||
1
lib
Submodule
1
lib
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit bd77b5d8bc72d64803c918913fb6949000fb0e37
|
||||
10
lib_scrollify.php
Normal file
10
lib_scrollify.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace LIB;
|
||||
class lib_scrollify extends \LIB\lib_js{
|
||||
public static function get_class(){
|
||||
return self::class;}
|
||||
public static function js_path(){
|
||||
return new \PLIB('scrollify/lib/jquery.scrollify.js');}
|
||||
public static function version(){
|
||||
return '1.0.20';}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user