. * * config.inc * * Actitude configuration settings. * * @author Daniele Bonini * @copyrights (c) 2021, 2024, 5 Mode */ define('DEBUG', true); define('APP_NAME', "Actitude"); // password: yourpassword // salt: yoursalt define('APP_HASH', ""); define('APP_SPLASH', true); define('APP_PATH', "/var/www/YourWebApp"); define('APP_DATA_PATH', "/var/www/YourWebApp/data"); define('APP_SALT', "yoursalt"); // Default Locale, in two letters format define('APP_LOCALE', "EN"); define('APP_CUSTOM_HEADER', "  "); define('APP_SUPPORT_BUTTON', ""); define('APP_SHOP_LINK', "5 Mode Market"); // App uses: PRIVATE or BUSINESS define('APP_USE', "PRIVATE"); // App context: SUPPORT or EVENT define('APP_CONTEXT', "SUPPORT"); define('APP_WELCOME_MSG', "Welcome to 5 Mode hugs list:"); define('APP_SUPPORT_MSG', "TIME FOR A SMALL DONATION!"); define('DISPLAY_NAME_FONT', "Yuji Boku"); define('DISPLAY_SUBMIT_BUTTON', "Submit"); define('DISPLAY_BODY_CSS', "font-family: Monospace, Verdana, Serif;"); define('CMDLINE_VALIDCMDS', "~|sign|del|conf|refresh|"); define('HISTORY_MAX_ITEMS', 1000); $CONFIG = [ 'DEBUG' => true, 'APP' => [ 'NAME' => "Actitude", 'HASH' => "", 'SPLASH' => true, 'PATH' => "/var/www/YourWebApp", 'DATA_PATH' => "/var/www/YourWebApp/data", 'SALT' => "yoursalt", // Default Locale, in two letters format 'LOCALE' => "EN", 'CUSTOM_HEADER' => "  ", 'SUPPORT_BUTTON' => "", 'SHOP_LINK' => "5 Mode Market", // App use: PRIVATE or BUSINESS 'USE' => "PRIVATE", // App use: SUPPORT or EVENT 'CONTEXT' => "SUPPORT", 'WELCOME_MSG' => "Welcome to our 5 Mode hugs list:", 'SUPPORT_MSG' => "TIME FOR A SMALL DONATION!" ], 'DISPLAY' => [ 'NAME_FONT' => "Yuji Boku", 'SUBMIT_BUTTON' => "Submit", 'BODY_CSS' => "font-family: Monospace, Verdana, Serif;" ], 'CMDLINE' => [ 'VALIDCMDS' => "~|sign|del|conf|refresh|" ], 'HISTORY' => [ 'MAX_ITEMS' => 1000 ] ]; $LOCALE = [ 'IT' => [ 'Monday' => 'Lunedi', 'You are in' => "Sei in", ' as ' => " come ", 'owner' => "owner", 'guest' => "guest", 'Parent' => "Padre", 'Add' => "Aggiungi", 'folder' => "cartella", ' Go ' => " Vai ", 'Hash me' => "Hashmi", 'Upload' => "Carica" ] ];