Actions

AfterFindSurvey

From LimeSurvey Manual

Revision as of 15:56, 7 February 2017 by T6nnp6nn (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 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');
    }