Codeigniter helper extending |
I believe this is a limitatiom in CIs dispatcher. What you want is a seperate folder foe additional controllers and I am not sure if CI 3 makes that possible. It should be possible fpr you to extend the CI dispatcher (assuming its a class, not sure about that) and add this functionality. It would not be a trivial thing. you would be essentially monkey pat hing CI making down the road updates much harder.
Your problem with a nothet dispatching strategy comes down to defining the actions and mapping uri to class:methods. CI does this automagically for you. So you are stuck with having an automagical dipatcher or one too general that it requires an additio al config file. It's a tough problem but can be solved with either strategy. |
Messages In This Thread |
Codeigniter helper extending - by RajeevElzrando - 01-01-2023, 08:56 PM
RE: Codeigniter helper extending - by InsiteFX - 01-02-2023, 12:48 AM
RE: Codeigniter helper extending - by AkinBredailns - 01-31-2023, 11:02 PM
RE: Codeigniter helper extending - by InsiteFX - 03-22-2023, 12:16 AM
|