* Steps, on which kApplication should not be initialized, because of missing correct db table structure
*
* @var Array
*/
var$skipApplicationSteps=Array('check_paths','clean_db','db_config','db_reconfig'/*, 'install_setup'*/);// remove install_setup when application will work separately from install
/**
* Folders that should be writeable to continue installation. $1 - main writeable folder from config.php ("/system" by default)
*
* @var Array
*/
var$writeableFolders=Array(
'$1',
'$1/.restricted',
'$1/images',
'$1/images/pending',
'$1/images/emoticons',// for "In-Bulletin"
'$1/user_files',
'$1/cache',
);
/**
* Contains last error message text
*
* @var string
*/
var$errorMessage='';
/**
* Base path for includes in templates
*
* @var string
*/
var$baseURL='';
/**
* Holds number of last executed query in the SQL
*
* @var int
*/
var$LastQueryNum=0;
/**
* Dependencies, that should be used in upgrade process
*
* @var Array
*/
var$upgradeDepencies=Array();
/**
* Log of upgrade - list of upgraded modules and their versions
*
* @var Array
*/
var$upgradeLog=Array();
/**
* Common tools required for installation process
*
* @var kInstallToolkit
*/
var$toolkit=null;
functionInit()
{
include_once(FULL_PATH.REL_PATH.'/kernel/kbase.php');// required by kDBConnection class