PHP Classes

File: local/config.incl.dist.php

Recommend this page to a friend!
  Packages of Peter Buzanits   Booosta Installer   local/config.incl.dist.php   Download  
File: local/config.incl.dist.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Booosta Installer
Install applications to use the Booosta Framework
Author: By
Last change:
Date: 6 months ago
Size: 1,422 bytes
 

Contents

Class file image Download
<?php
namespace booosta;

Framework::$CONFIG = [
'site_name' => '{sitename}',
'page_title' => '{sitename}',
'page_title_short' => '{sitename_short}',
'allow_registration' => {allow_registration},
'confirm_registration' => {confirm_registration},
'aes256_keyfile' => 'local/key.php',
'language' => '{language}',
'template_module' => 'adminlte',
 
'db_module' => '{db_module}',
'db_hostname' => '{db_hostname}',
'db_user' => '{db_user}',
'db_password' => '{db_password}',
'db_database' => '{db_database}',

'mail_sender' => '{mail_sender}',
'mail_backend' => '{mail_backend}',
'mail_smtp_params' => [ 'host' => '{smtp_host}', 'auth' => true, 'username' => '{smtp_username}', 'password' => '{smtp_password}' ],

'use_edit_delete_pics' => true,

'jquery_loaded' => true,
'bootstrap_loaded' => true,
'datatables_loaded' => true,
'always_load_jquery' => false,
'use_bootstrap_select' => true,
'templateparser_defaultvars' => ['boxsize' => '12,12,12,12'],

# usually you do not need to change anything beyond this line

'DEBUG_MODE' => false,
'LOG_MODE' => false,
'BACKUPMODE' => false,

'serial_field' => ['usersettings'],
'ESCAPE_CURL' => false,
'NO_DBCONNECT' => false,

];