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.

link|improve this question
The code above actually sets the param value, but not persistant. I've found at way to save it using db-query, but there must be some other way. – Stilero Jan 31 at 16:50
If it's a JParameter, then no there isn't a way. See [this similar question][1]. [1]: stackoverflow.com/questions/8070213/using-jparameter-in-joomla – cppl Jan 31 at 22:06
feedback

1 Answer

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.