1. Import

This commit is contained in:
2026-03-29 10:34:57 +02:00
parent b0e00c1259
commit a1129565af
4899 changed files with 3007593 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/*=======================================================================
*
* js_framework.inc.php
*
* Autor: Marc Vollmann
*
=======================================================================*/
// JQuery (Default)
$frameworkFile = "../js/jquery.js";
// $menuJSFile = "menu.js.php";
// if ($usedFramework == "2") :
// // Prototype
// $frameworkFile = "../js/prototype.js";
// $menuJSFile = "menu_prototype.js.php";
// endif;
// Framework
echo "<script src=\"" . $frameworkFile . "\"></script>\n";
// echo "<script src=\"../js/jquery-migrate-1.2.1.js\"></script>\n";
// Menu
// echo "<script type=\"text/javascript\">\n";
// include_once ("../include/" . $menuJSFile);
// echo "</script>\n";
// JQuery
echo "<script type=\"text/javascript\" src=\"../js/jquery-ui.custom.min.js\"></script>\n";
echo "<link rel=\"stylesheet\" href=\"../css/jquery-ui.custom.min.css\" type=\"text/css\" />\n";
// Ticker
// echo "<script type=\"text/javascript\">\n";
// include_once ("../js/ticker.js.php");
// echo "</script>\n";
?>