Is there any way to set a plugin parameter programatically from within a plugin?
I've tried:
$this->params->set('param_name', 'value');
This doesn't work, although many forums suggests it should.
feedback
|
|
After the parameter is set you need to parse all parameters into string value and store in jos_extensions table Don't try to use $params->toString(); as this is JParameters object. You need to go through it manually. | |||
|
feedback
|