Jump to content

Recommended Posts

Posted

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 :)

Posted

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();

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...