x

Main chapters

  1. LimeSurvey Cloud vs LimeSurvey CE
  2. LimeSurvey Cloud - Quick start guide
  3. LimeSurvey CE - Installation
  4. How to design a good survey (Guide)
  5. Getting started
  6. LimeSurvey configuration
  7. Introduction - Surveys
  8. View survey settings
  9. View survey menu
  10. View survey structure
  11. Introduction - Questions
  12. Introduction - Question Groups
  13. Introduction - Surveys - Management
  14. Survey toolbar options
  15. Multilingual survey
  16. Quick start guide - ExpressionScript
  17. Advanced features
  18. General FAQ
  19. Troubleshooting
  20. Workarounds
  21. License
  22. Version change log
  23. Plugins - Advanced
 Actions

BeforeModelSave: Difference between revisions

From LimeSurvey Manual

DenisChenu (talk | contribs)
m Add warning
DenisChenu (talk | contribs)
mNo edit summary
 
(One intermediate revision by the same user not shown)
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'''


None.
None.
You can update current model before it was saved.


'''Warning'''
'''Warning'''

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.