AfterFindSurvey
From LimeSurvey Manual
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 |
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');
}