Skip to content
Snippets Groups Projects
Commit f16f1e50 authored by Robin Appelman's avatar Robin Appelman
Browse files

added option to load js files from php

parent 4ff703e9
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ $loginresult=OC_USER::loginlisener();
*
*/
class OC_USER {
/**
* check if the login button is pressed and logg the user in
*
......@@ -125,6 +125,16 @@ class OC_USER {
*
*/
class OC_UTIL {
public static $scripts=array();
/**
* add a javascript file
*
* @param url $url
*/
public static function addscript($url){
self::$scripts[]=$url;
}
/**
* array to store all the optional navigation buttons of the plugins
......
......@@ -6,9 +6,15 @@
<base href="<?php echo($WEBROOT); ?>/"/>
<link rel="stylesheet" type="text/css" href="css/default.php"/>
<script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_ajax.js'></script>
<!-- <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/timer.js'></script> -->
<!-- <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/notification.js'></script> -->
<script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_xmlloader.js'></script>
<script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_files.js'></script>
<script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/ajax.js'></script>
<?php
foreach(OC_UTIL::$scripts as $script){
echo("<script type='text/ecmascript' src='$WEBROOT/$script'></script>");
}
?>
<script type='text/ecmascript'>
var WEBROOT='<?php echo($WEBROOT)?>';
</script>
......
......@@ -31,7 +31,7 @@ if(isset($_GET['file'])) {
}else{
OC_UTIL::addscript('js/ajax.js');
OC_UTIL::showheader();
OC_FILES::showbrowser($CONFIG_DATADIRECTORY,$dir);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment