mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
60 lines
3.1 KiB
PHP
60 lines
3.1 KiB
PHP
<div class='header ui-widget-header'><?php $clang->eT("Edit survey settings");?></div>
|
|
<?php
|
|
$data['clang'] = $clang;
|
|
$data['action'] = $action;
|
|
$yii = Yii::app();
|
|
$controller = $yii->getController();
|
|
$controller->renderPartial('/admin/survey/subview/tab_view',$data);
|
|
$controller->renderPartial('/admin/survey/subview/tabGeneralEditSurvey_view',$data);
|
|
if (isset($pluginSettings))
|
|
{
|
|
$controller->renderPartial('/admin/survey/subview/tabPluginSettings_view',$data);
|
|
}
|
|
$controller->renderPartial('/admin/survey/subview/tabPresentation_view',$data);
|
|
$controller->renderPartial('/admin/survey/subview/tabPublication_view',$data);
|
|
$controller->renderPartial('/admin/survey/subview/tabNotification_view',$data);
|
|
$controller->renderPartial('/admin/survey/subview/tabTokens_view',$data);
|
|
$controller->renderPartial('/admin/survey/subview/tabPanelIntegration_view',$data);
|
|
|
|
?>
|
|
<input type='hidden' id='sid' name='sid' value="<?php echo $esrow['sid'];?>" />
|
|
<input type='hidden' name='languageids' id='languageids' value="<?php echo $esrow['additional_languages'];?>" />
|
|
<input type='hidden' name='language' value="<?php echo $esrow['language'];?>" />
|
|
<?php if (Permission::model()->hasSurveyPermission($surveyid,'surveysettings','update')){?>
|
|
<div class="hidden hide" id="submitsurveybutton">
|
|
<p><button type="submit" name="action" value='updatesurveysettings'><?php $clang->eT("Save"); ?></button></p>
|
|
<?php if(Permission::model()->hasSurveyPermission($surveyid,'surveylocale','update')) { ?>
|
|
<p><button type="submit" name="action" value='updatesurveysettingsandeditlocalesettings'><?php $clang->eT("Save & edit survey text elements");?></button></p>
|
|
<?php } ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
</form>
|
|
<?php
|
|
$controller->renderPartial('/admin/survey/subview/tabResourceManagement_view',$data);
|
|
|
|
?>
|
|
</div>
|
|
|
|
<div data-copy="submitsurveybutton"></div>
|
|
<div id='dlgEditParameter'>
|
|
<div id='dlgForm' class='form30'>
|
|
<ul>
|
|
<li><label for='paramname'><?php $clang->eT('Parameter name:'); ?></label><input name='paramname' id='paramname' type='text' size='20' />
|
|
</li>
|
|
<li><label for='targetquestion'><?php $clang->eT('Target (sub-)question:'); ?></label><select name='targetquestion' id='targetquestion' size='1'>
|
|
<option value=''><?php $clang->eT('(No target question)'); ?></option>
|
|
<?php foreach ($questions as $question){?>
|
|
<option value='<?php echo $question['qid'].'-'.$question['sqid'];?>'><?php echo $question['title'].': '.ellipsize(flattenText($question['question'],true,true),43,.70);
|
|
if ($question['sqquestion']!='')
|
|
{
|
|
echo ' - '.ellipsize(flattenText($question['sqquestion'],true,true),30,.75);
|
|
}
|
|
?></option> <?php
|
|
}?>
|
|
</select>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<p><button id='btnSaveParams'><?php $clang->eT('Save'); ?></button> <button id='btnCancelParams'><?php $clang->eT('Cancel'); ?></button> </p>
|
|
</div>
|