forked from jspreadsheet/ce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompile.php
More file actions
77 lines (59 loc) · 2.11 KB
/
compile.php
File metadata and controls
77 lines (59 loc) · 2.11 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
$js = '';
if ($handle = opendir('js')) {
$css = '';
while (false !== ($entry = readdir($handle))) {
echo($entry);
echo($entry=="jexcel.core.js");
if (($entry=="jexcel.core.js")&&($entry != "." && $entry != ".." && (! isset($modules) || in_array(substr($entry, 0, strpos($entry, '.')), $modules)))) {
$js .= file_get_contents('js/'.$entry) . "\r\n\r\n";
}
}
closedir($handle);
}
if ($handle = opendir('js')) {
$css = '';
while (false !== ($entry = readdir($handle))) {
echo($entry);
echo($entry=="jexcel.extensions.js");
if (($entry=="jexcel.extensions.js")&&($entry != "." && $entry != ".." && (! isset($modules) || in_array(substr($entry, 0, strpos($entry, '.')), $modules)))) {
$js .= file_get_contents('js/'.$entry) . "\r\n\r\n";
}
}
closedir($handle);
}
if ($handle = opendir('js')) {
$css = '';
while (false !== ($entry = readdir($handle))) {
echo($entry);
echo($entry=="jexcel.formulas.js");
if (($entry=="jexcel.formulas.js")&&($entry != "." && $entry != ".." && (! isset($modules) || in_array(substr($entry, 0, strpos($entry, '.')), $modules)))) {
$js .= file_get_contents('js/'.$entry) . "\r\n\r\n";
}
}
closedir($handle);
}
$jsfull =
/**
* jExcel v4.0.0
*
* Author: Paul Hodel <paul.hodel@gmail.com>
* Website: https://bossanova.uk/jexcel/
* Description: Create amazing web based spreadsheets.
*
* This software is distribute under MIT License
*/
if (! jSuites && typeof(require) === 'function') {
var jSuites = require('jsuites');
require('jsuites/dist/jsuites.css');
}
;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
global.jexcel = factory();
}(this, (function () {
'use strict';
$js
return jexcel;
})));";
file_put_contents('../dist/jexcel.js', $jsfull);