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)
Created page with "'''When''' When a single database model was saved using model->save(). See [https://www.yiiframework.com/doc/api/1.1/CActiveRecord#onBeforeSave-detail CActiveRecord::onBefore..."
 
DenisChenu (talk | contribs)
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''When'''
'''When'''


When a single database model was saved using model->save(). See [https://www.yiiframework.com/doc/api/1.1/CActiveRecord#onBeforeSave-detail CActiveRecord::onBeforeSave].
Before a single database model was saved using model->save(). See [https://www.yiiframework.com/doc/api/1.1/CActiveRecord#onBeforeSave-detail CActiveRecord::onBeforeSave].


'''Input'''
'''Input'''


*''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'''
Not all LimeSurvey action use ActiveRecord to save a model.


[[Category:Plugins events]]
[[Category:Plugins events]]

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.