Functions In Addon

Hi,

It is possible to use function in one addon from other addon,

I want to use function from other addon to my new addon.

Thanks in advance.. :-)

Hi,

It is possible to use function in one addon from other addon,

I want to use function from other addon to my new addon.

Thanks in advance.. :-)

Hello! Yes it's possible.

Hello! Yes it's possible.

How,

directly by writing function name which used in other addon??

How,

directly by writing function name which used in other addon??

Yes, that's it.

But make sure you have the 1st addon be dependent on the 2nd addon or bracket your changes in:

  if( function_exists('function_name') {
    function_name("hello world");
  }

Thanks beencart and tbirnseth for your suggestion.. :grin: :grin: