Welcome Guest, Not a member yet? Register   Sign In
How to use a $config setting in a pre_system hook [SOLVED]
#1

[eluser]JoostV[/eluser]
I would like to use a config setting in a pre_system hook. Can anybody tell me if and how this can be done?

Specifically, I would like to set some URL-related constants like C_ROOT_URL in my pre_system bootstrap hook class, using config.php's
Code:
$config['base_url']

I already set stuff in this class like
Code:
// Set environment we are currently in
$rootpath = dirname(realpath(BASEPATH)) . DIRECTORY_SEPARATOR;
if (stristr($rootpath, 'O:\htdocs')) {
    define('C_ENVIRONMENT', 'development');
}
elseif (stristr($rootpath, '/home/testuser/domains/thisismytestdomain.com')) {
    define('C_ENVIRONMENT', 'staging');
}
else {
    define('C_ENVIRONMENT', 'production');
}


Messages In This Thread
How to use a $config setting in a pre_system hook [SOLVED] - by El Forum - 01-03-2010, 04:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB