codeigniter has in index.php define('ENVIRONMENT', 'production'); for whole website. I am makeing changes in specific controller so I would like to have setting define('ENVIRONMENT', 'development'); for this controller but leave 'production' for all other controllers.
Is it possible to achieve this?