Changing some core functionalities

This commit is contained in:
ahwelp
2023-01-24 20:34:55 +00:00
parent d14dfaf508
commit 818f790bad
4 changed files with 218 additions and 20 deletions
Executable → Regular
+30 -4
View File
@@ -1,16 +1,42 @@
<?php
define('APP_LANG', 'pt_br');
/*
* ---------------------------------
* How the app is being run
* dev, debug, homologation, testing, production
*/
define('APP_STATUS', 'devel');
/*
* ---------------------------------
* Default app Lenguage
* For the string files
*/
define('APP_LANG', 'pt_br');
define('CACHE_LANG', FALSE);
/*
* ---------------------------------
* System Paths
*
*/
define('DIR_CONFIG', __DIR__.'/');
define('DIR_ROOT', __DIR__.'/../');
define('DIR_APP', DIR_ROOT . 'app/');
/*
* ---------------------------------
* Template definitions
*
*/
define('TEMPLATE_DEFAULT', 'Dashboard');
//define('TEMPLATE_DEFAULT', 'DefaultTemplate');
define('TEMPLATE_FILETYPE', '.mustache');
/*
* ---------------------------------
* Does a modules.ini is required
*
*/
define('INSTALL_REQUIRE', FALSE);
define('CACHE_LANG', FALSE);