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
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
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now