I already setup the environment mode, but it still manually.
I want to change the development mode based on who login to my system and checked it by usertype session.
i try to create like this on root index.php file:
if($this->session->usertype == '1'){
define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'development');
}
else{
define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'production');
}
But, i got this error:
Fatal error: Uncaught Error: Using $this when not in object context in .....
Any solution will be appreciate. Thank you