AfterFindSurvey: Difference between revisions
From LimeSurvey Manual
Created page with "{{FeatureStarting|2.63.0. build ??????}} '''When''' This event is fired after loading a survey to participant to be able to modify/override some display parameters for curr..." |
No edit summary |
||
Line 16: | Line 16: | ||
|- | |- | ||
| template || string || The template name to be used for display | | template || string || The template name to be used for display | ||
|- | |||
| usecookie || string || Set cookie to prevent repeated participation: 'Y' or 'N' | |||
|- | |||
| allowprev || string || Allow backward navigation: 'Y' or 'N' | |||
|- | |- | ||
|} | |} |
Revision as of 16:00, 7 February 2017
When
This event is fired after loading a survey to participant to be able to modify/override some display parameters for current display session.
Input
The event receives the following information:
Name | Type | Description |
---|---|---|
surveyId | integer | The id of the current survey |
template | string | The template name to be used for display |
usecookie | string | Set cookie to prevent repeated participation: 'Y' or 'N' |
allowprev | string | Allow backward navigation: 'Y' or 'N' |
Possible output
None
Examples
public function __construct(PluginManager $manager, $id) {
parent::__construct($manager, $id);
$this->subscribe('afterFindSurvey', 'processTest');
}
public function processTest(){
$this->event->set('template','news_paper');
}