BeforeModelSave: Difference between revisions
From LimeSurvey Manual
DenisChenu (talk | contribs) Add allowing update |
DenisChenu (talk | contribs) mNo edit summary |
||
Line 6: | Line 6: | ||
*''model'' : The current model as an [https://www.yiiframework.com/doc/api/1.1/CActiveRecord ActiveRecord] | *''model'' : The current model as an [https://www.yiiframework.com/doc/api/1.1/CActiveRecord ActiveRecord] | ||
*''surveyId'' : related survey id if exist | |||
*''iSurveyID'' : related survey id if exist | |||
*''dynamicId'' : related dynamic id if exist (for Token and Response) | |||
'''Possible output''' | '''Possible output''' |
Latest revision as of 09:14, 15 November 2018
When
Before a single database model was saved using model->save(). See CActiveRecord::onBeforeSave.
Input
- model : The current model as an ActiveRecord
- surveyId : related survey id if exist
- iSurveyID : related survey id if exist
- dynamicId : related dynamic id if exist (for Token and Response)
Possible output
None.
You can update current model before it was saved.
Warning
Not all LimeSurvey action use ActiveRecord to save a model.