Actions

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 difference)

Revision as of 15:56, 7 February 2017

 Hint: This features is available starting in version 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 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');
    }