mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
18 lines
No EOL
571 B
PHP
18 lines
No EOL
571 B
PHP
<?php
|
|
$this->widget('ext.SettingsWidget.SettingsWidget', array(
|
|
|
|
'settings' => $settings,
|
|
'title' => isset($plugin['name']) ? sprintf(gT("Settings for plugin %s"), $plugin['name']) : null,
|
|
'formHtmlOptions' => array(
|
|
'id' => "pluginsettings-{$plugin['name']}",
|
|
),
|
|
'method' => 'post',
|
|
'buttons' => array(
|
|
gT('Save plugin settings'),
|
|
gT('Cancel') => array(
|
|
'type' => 'link',
|
|
'href' => App()->createUrl('plugins/index')
|
|
)
|
|
)
|
|
));
|
|
?>
|