'.html.twig']; $cfg['twig_debug'] = false; /* * Session custom param * ------------------------------------------------------------------------- * debug is enabled ? * session must survive at least X seconds * session save_path if specified will be used instead of the defaul one */ $cfg['do_debug'] = false; //false || (bool)getenv('DO_DEBUG'); //$cfg['debug_level'] = 'all' || (bool)getenv('DEBUG_LEVEL'); //error,warning,notice,deprecated else all //$cfg['enable_log'] = true; //$cfg['log_level'] = Monolog\Logger::DEBUG; // //$cfg['log_path'] = '/app/logger.log'; $cfg['demo_mode'] = false; //$cfg['session']['handler'] = \FormaLms\lib\Session\SessionManager::FILESYSTEM; //filesystem | memcached | redis | pdo | mongodb //$cfg['session']['url'] = ''; //$cfg['session']['timeout'] = (float)'2.5'; //$cfg['session']['lifetime'] = (int) 3600; //session lifetime //$cfg['session']['prefix'] = 'core_sessions'; //session prefix or session table name in case of pdo //$cfg['session']['name'] = $cfg['db_name']; //db name //$cfg['session']['port'] = 3306; // process port session handler //$cfg['session']['host'] = $cfg['db_host']; //host //$cfg['session']['authentication'] = true; //true | false //$cfg['session']['user'] = $cfg['db_user']; // authentication user session handler //$cfg['session']['pass'] = $cfg['db_pass']; // authentication psw session handler //$cfg['session']['options'] = []; // other options key value array to pass based on selected handler /* * Technical preferences * ------------------------------------------------------------------------- * filter_tool: the class for input filtering that you want to use * mail_br: used in mail composition (no longer needed?) */ $cfg['filter_tool'] = 'htmlpurifier'; $cfg['mail_br'] = "\r\n"; /* * Certificate Encryption * ------------------------------------------------------------------------- * certificate_encryption: boolean to set whether to enable or not the pdf encryption of certificates (default is TRUE) * certificate_password: password to use when encryption is enabled. It must be exactly 32 chars! (default is a random generated one) */ //$cfg['certificate_encryption'] = true; //$cfg['certificate_password'] = "12345678901234567890123456789012";