Actions

AfterSurveyComplete: Difference between revisions

From LimeSurvey Manual

No edit summary
m (Add ShowResponse as example)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
'''When'''
'''When'''


This event happen before end message is shown but after Autoload URL redirection is done.
This event is triggered before the end message is shown but after Autoload URL redirection is done.


'''Input'''
'''Input'''
Line 13: Line 13:


* ''Adding content'' : use of addContent function
* ''Adding content'' : use of addContent function
'''Example'''
* See [https://github.com/LimeSurvey/LimeSurvey/tree/master/plugins/Demo/ShowResponse ShowResponse] demo plugin


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

Latest revision as of 11:08, 11 October 2018

When

This event is triggered before the end message is shown but after Autoload URL redirection is done.

Input

The event receives the following information:

  • surveyId the id of the current survey
  • responseId the id of the current response

Possible output

  • Adding content : use of addContent function

Example