123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- /**
- * Copyright 2021, 2024 5 Mode
- *
- * This file is part of Xslt-Master.
- *
- * Xslt-Master 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, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Xslt-Master 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 Xslt-Master. If not, see <https://www.gnu.org/licenses/>.
- *
- * config.inc
- *
- * Xslt-Master configuration settings.
- *
- * @author Daniele Bonini <my25mb@aol.com>
- * @copyrights (c) 2021, 2024 5 Mode
- */
- define('DEBUG', true);
-
- define('APP_NAME', "XsltMaster");
- define('APP_TITLE', "XsltMaster: everyone its xsl tranformation.");
- define('APP_HOST', "yourxsltmaster.com");
- define('APP_PATH', "/var/www/yourxsltmaster/Public");
- define('APP_PRIVATE_PATH', "/var/www/yourxsltmaster/Private");
- define('APP_SCRIPT_PATH', "/var/www/yourxsltmaster/Private/scripts");
- define('APP_AJAX_PATH', "/var/www/yourxsltmaster/Private/scripts_ajax");
- define('APP_ERROR_PATH', "/var/www/yourxsltmaster/Private/error");
- define('APP_DATA_PATH', "/var/www/yourxsltmaster/Private/data");
- define('APP_LICENSE', <<<LICENSETEXT
- Copyright (c) 2016, 2024 5 Mode
- All rights reserved.
- This file is part of Xslt-Master.
- Xslt-Master 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, either version 3 of the License, or
- (at your option) any later version.
- Xslt-Master 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 Xslt-Master. If not, see <https://www.gnu.org/licenses/>.
- https://opensource.org/licenses/GPL-3.0
- LICENSETEXT
- );
- // Default Locale, in two letters format
- define('APP_DEF_LANG', "en-US");
- define('APP_MAX_TOT_REC', 50);
- define('APP_FILE_MAX_SIZE', 1100000);
- $CONFIG = [
- 'DEBUG' => true,
-
- 'APP' => [
- 'NAME' => "Xslt-Master",
- 'TITLE' => "Xslt-Master: everyone its xsl tranformation.",
- 'HOST' => "yourxsltmaster.com",
- 'PATH' => "/var/www/yourxsltmaster/Public",
- 'PRIVATE_PATH' => "/var/www/yourxsltmaster/Private",
- 'SCRIPT_PATH' => "/var/www/yourxsltmaster/Private/scripts",
- 'AJAX_PATH' => "/var/www/yourxsltmaster/Private/scripts_ajax",
- 'ERROR_PATH' => "/var/www/yourxsltmaster/Private/error",
- 'DATA_PATH' => "/var/www/yourxsltmaster/Private/data",
- 'LICENSE' => <<<LICENSETEXT
- Copyright (c) 2016, 2024 5 Mode
- All rights reserved.
- This file is part of Xslt-Master.
- Xslt-Master 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, either version 3 of the License, or
- (at your option) any later version.
- Xslt-Master 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 Xslt-Master. If not, see <https://www.gnu.org/licenses/>.
- https://opensource.org/licenses/GPL-3.0
- LICENSETEXT
- ,
- 'DEF_LANG' => "en-US",
- 'MAX_TOT_REC' => 50,
- 'FILE_MAX_SIZE' => 1100000
- ]
-
- ];
|