-
Notifications
You must be signed in to change notification settings - Fork 0
/
constant.php
59 lines (51 loc) · 2.33 KB
/
constant.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
56
57
58
59
<?php
/**
* pje - PHP jquery UI editor
*
* @see https://github.com/coyote333666/pje The pje GitHub project
*
* @author Vincent Fortier <[email protected]>
* @copyright 2023 Vincent Fortier
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/
define("FILE_FUNCTION" , "function.php");
define("FILE_INDEX" , "index.php");
define("FILE_DEMO" , "demo.php");
define("FILE_QUERY" , "demo_query.php");
define("FILE_DEMO_FETCH" , "demo_fetch.php");
define("FILE_DEMO_ACTION" , "demo_action.php");
define("FILE_DEMO_EDITOR" , "demo_editor.php");
define("APP_TITLE" , "Demo pje PHP Jquery UI Editor");
define("DIR_APP" , "/pje/");
define("PARAMETER_REDIRECTOR" , "?page=");
define("FILE_HEADER" , "header.html");
define("PG_SERVER" , "localhost");
define("PG_USERNAME" , "test");
define("PG_PASSWORD" , "test");
define("PG_DATABASE" , "test");
define("PG_PORT" , "5432");
define("LOAD_START" , microtime(true));
// JQuery
define("DIR_JQUERY" , "../node_modules/jquery/dist/");
define("FILE_JQUERY" , DIR_JQUERY . "jquery.min.js");
// JQuery UI
define("DIR_JQUERY_UI" , "../node_modules/jquery-ui/dist/");
define("FILE_JQUERY_UI_JS" , DIR_JQUERY_UI . "jquery-ui.min.js");
define("FILE_JQUERY_UI_CSS" , DIR_JQUERY_UI . "themes/smoothness/jquery-ui.min.css");
// Bootstrap
define("DIR_BOOTSTRAP" , "../node_modules/bootstrap/dist/");
define("FILE_BOOTSTRAP_JS" , DIR_BOOTSTRAP . "js/bootstrap.min.js");
define("FILE_BOOTSTRAP_CSS" , DIR_BOOTSTRAP . "css/bootstrap.min.css");
// font-awesome
define("DIR_FONT_AWESOME" , "../node_modules/font-awesome/");
define("FILE_FONT_AWESOME_CSS" , DIR_FONT_AWESOME . "css/font-awesome.min.css");
// TableExport.js
define("FILE_DIR_NODE_MODULES" , "../node_modules/");
define("FILE_XLSX_JS" , FILE_DIR_NODE_MODULES . "xlsx/dist/xlsx.full.min.js");
define("FILE_FILESAVER_JS" , FILE_DIR_NODE_MODULES . "file-saverjs/FileSaver.min.js");
define("FILE_TABLEXPORT_JS" , FILE_DIR_NODE_MODULES . "tableexport/dist/js/tableexport.min.js");
define("FILE_TABLEXPORT_CSS" , FILE_DIR_NODE_MODULES . "tableexport/dist/css/tableexport.min.css");
?>