Translations:Plugins - advanced/110/fr
From LimeSurvey Manual
// À l'intérieur de init() Yii::app()->formExtensionService->add(
'globalsettings.general', new TextInput([ 'name' => 'myinput', 'label' => 'Label', 'disabled' => true, 'tooltip' => 'Moo moo moo', 'help' => 'Un texte d'aide', 'save' => function($request, $connection) { $value = $request->getPost('myinput'); if ($value === 'une valeur invalide') { throw new SaveFailedException("Impossible d'enregistrer l'entrée personnalisée 'myinput'"); } else { SettingGlobal::setSetting('myinput', $value); } } , 'load' => function () { return getGlobalSetting('myinput'); } ])
); </syntaxhighlight>