Pretty often I need to access $config variables in views. I know I can pass them from controller to load->view(). But it seems excessive to do i
$config
load->view()
$config['cricket'] = 'bat'; in config.php file
$config['cricket'] = 'bat';
$this->config->item('cricket') use this in view
$this->config->item('cricket')