As far as best practices go is this recommended? I have a comments controller + model that needs to be called in an items and profiles controller. The comments controller automatically loads the comments model.
Is it acceptable to call the comments controller directly from the items and profile controller, or is the "best practice" way to call the comments model instead?
I ask because in kohana, the view isn't a singleton class so if I were to call a controller within another controller I end up with two views. On the other hand, if I were to just call the model, there would be duplicate code within the items and profiles controller.
All you MVC experts help! =)