Question

Lets say I have 2 modules: A and B.

If I want to call a function in one of the models of module B from module A, what is the correct way?

Should the communication between modules only happen between controllers or I can call directly a model from module B in a controller form module A?

Thanks.

Était-ce utile?

La solution

follow the steps below

1) load model of B from A module like $this->load->model("b_model");

2) if your function name is user then call like this $this->b_model->user();
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top