Actions

Translations

Translations:Plugins - advanced/129/nl

From LimeSurvey Manual

$event->set(

           "surveysettings.{$this->id}",
           [
               'name' => get_class($this),
               'settings' => [
                   'isActive' => [
                       'type' => 'boolean',
                       'label' => 'isActive',
                       'current' => $this->getIsActive($surveyId),
                       'help' => 'Activate plugin for this survey'
                   ],
               ]
           ]
       );
   }