You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to joomla-de...@googlegroups.com
Hi all,
I have a custom module with custom paramaters which I'd like to be able to get from either a plugin (non-related) or from the modules helper file which is also used by the plugin.
The reason being is that these paramaters can/will be used by other extensions (mainly plugins).
I've googled and cannot find anything that works (I've tried the obvious methods used when calling them in the module etc.); I can only load the modules parameters from the modules own tmpl file or the modules own definition file!
Any ideas would be gratefully received.
Best regards, K...
Mark Dexter
unread,
Aug 2, 2012, 7:21:02 PM8/2/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to joomla-de...@googlegroups.com
The module params are stored (as a JSON string) in the params column
in the #__modules table. So you could get them by a direct query or
you could use the API. JModuleHelper has a getModule() method that
looks like it will do the work for you. Good luck. Mark