system/lib/lib_js.php
2016-06-08 19:30:35 +02:00

25 lines
617 B
PHP

<?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 SYSTEM\LIB
*/
namespace LIB;
/**
* js lib Class provided by System to provide js libs.
* @todo better abstraction model
*/
abstract class lib_js extends lib{
/**
* Get js lib include path
*
* @return string Returns path of the js lib to be included (webpath).
*/
protected static function js_path(){} //js webpath
}