This commit is contained in:
Ulf Gebhardt 2019-03-29 17:44:49 +01:00
parent 1b2eb4a98d
commit 6d98363e06
No known key found for this signature in database
GPG Key ID: 44C888923CC8E7F3
5 changed files with 45 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

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

4
autoload.inc Normal file
View 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
View 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

@ -0,0 +1 @@
Subproject commit bd77b5d8bc72d64803c918913fb6949000fb0e37

10
lib_scrollify.php Normal file
View 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';}
}