File: jsloader.php

package info (click to toggle)
kopano-webapp-plugin-files 2.1.5%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,540 kB
  • sloc: php: 15,863; xml: 494; java: 295; python: 72; sh: 44; makefile: 11
file content (35 lines) | stat: -rw-r--r-- 1,162 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
 * This file handles the delivery of javascript files.
 */

header('Content-type: application/x-javascript');
require_once("../config.php");

$debug = $_GET['debug'] == "true" ? "-debug" : "";

$content = "";

$content .= file_get_contents("../js/external/Ext.ux.form.MetaForm" . $debug . ".js");
$content .= @file_get_contents("../js/files" . $debug . ".js");

// try to load all backend form config javascript files
$BACKEND_PATH = __DIR__ . "/Files/Backend/";
$BACKEND_JS_LOADER = "/jsloader.php";

// Populate the list of directories to check against
if (($directoryHandle = opendir($BACKEND_PATH)) !== FALSE) {
	while (($backend = readdir($directoryHandle)) !== false) {
		// Make sure we're not dealing with a file or a link to the parent directory
		if (is_dir($BACKEND_PATH . $backend) && ($backend == '.' || $backend == '..') !== true) {
			if (is_file($BACKEND_PATH . $backend . $BACKEND_JS_LOADER)) {
				include($BACKEND_PATH . $backend . $BACKEND_JS_LOADER);
				$class = "\\Files\\Backend\\$backend\\BackendJSLoader";
				$jsloader = new $class();
				$content .= $jsloader->get_combined_js($_GET['debug']);
			}
		}
	}
}

echo $content;