Jonathon Posted December 12, 2015 Report Posted December 12, 2015 Hey everyone I am working on a module, and I want to incorperate some of the other module functionality. What I want to be able to do is Open a Support Ticket in my module from code. Can anyone please help me with the correct loading of the module Quote
Cody Posted December 12, 2015 Report Posted December 12, 2015 I think by module you mean plugin, right? You can load the models of a plugin directly, and then use them in your plugin, like so: from a controller: $this->uses(array('PluginName.PluginModelName')); $this->PluginModelName->modelMethod(); from a model: Loader::loadModels($this, array('PluginName.PluginModelName')); $this->PluginModelName->modelMethod(); Michael and ariq01 2 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.