This repository has been archived by the owner on Apr 18, 2020. It is now read-only.
forked from nirix/traq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs.php
55 lines (49 loc) · 1.56 KB
/
js.php
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/*!
* Traq
* Copyright (C) 2009-2012 Traq.io
*
* This file is part of Traq.
*
* Traq is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3 only.
*
* Traq is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Traq. If not, see <http://www.gnu.org/licenses/>.
*/
// Set content type and charset.
header("content-type: text/javascript; charset=UTF-8");
// Check if we can gzip the page or not/
if (extension_loaded('zlib')) {
// We can!
ob_end_clean();
ob_start('ob_gzhandler');
}
// Make sure there are files to load.
if (!isset($_REQUEST['js'])) {
exit;
}
$output = array();
if ($_REQUEST['js'] == 'all') {
foreach (scandir(__DIR__ . '/assets/js') as $file) {
if (substr($file, -3) == '.js') {
$output[] = file_get_contents(__DIR__ . "/assets/js/{$file}");
}
}
} else {
foreach (explode(',', $_REQUEST['js']) as $file) {
// Make sure the file exists...
if (file_exists(__DIR__ . "/assets/js/{$file}.js")) {
// Add it to the output array.
$output[] = file_get_contents(__DIR__ . "/assets/js/{$file}.js");
}
}
}
// Display all the files.
echo implode("\n/* -------------------- */\n", $output);