Is there a way in codeigniter to define a global function that can be called in all controllers easily?
I have a application that will show all latest users who have registered on the app.
what im doing now is, i have autoloaded a model Latest_model
with the below function
function new_users()
{
$this->db->select('*');
$this->db->from('users');
$this->db->order_by('id', 'DESC');
$this->db->limit('5');
$query = $this->db->get();
return $query->result_array();
}
and on all the controllers, at the beginning i call this model
$data['new'] = $this->Latest_model->new_users();
It works but, i need to repeat this in all the functions.
So what would be the best way to achieve this?
Any help will be appreciated