1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/application/views/admin/dataentry/caption_view.php

81 lines
3.3 KiB
PHP

<div class='header ui-widget-header'><?php $clang->eT("Data entry"); ?></div>
<?php echo CHtml::form(array("admin/dataentry/sa/insert"), 'post', array('name'=>'addsurvey', 'id'=>'addsurvey', 'enctype'=>'multipart/form-data'));?>
<table class='data-entry-tbl'>
<tr>
<td colspan='3'>
<strong><?php echo $thissurvey['name']; ?></strong>
<br /><?php echo flattenText($thissurvey['description'],true); ?>
</td>
</tr>
<tr class='data-entry-separator'><td colspan='3'></td></tr>
<?php if (count(Survey::model()->findByPk($surveyid)->additionalLanguages)>0)
{ ?>
<tr>
<td colspan='3'>
<?php echo $langlistbox; ?>
</td>
</tr>
<tr class='data-entry-separator'><td colspan='3'></td></tr>
<?php }
if (tableExists('{{tokens_'.$thissurvey['sid'].'}}')) //Give entry field for token id
{ ?>
<tr>
<td valign='top' width='1%'></td>
<td valign='top' align='right' width='30%'><font color='red'>*</font><strong><?php echo $blang->gT("Token"); ?>:</strong></td>
<td valign='top' align='left' style='padding-left: 20px'>
<input type='text' id='token' name='token' onkeyup='activateSubmit(this);' />
</td>
</tr>
<tr class='data-entry-separator'><td colspan='3'></td></tr>
<script type="text/javascript"><!--
function activateSubmit(me)
{
if (me.value != '')
{
$('#submitdata').button("option", "disabled", false);
}
else
{
$('#submitdata').button("option", "disabled", true);
}
}
//--></script>
<?php }
if ($thissurvey['datestamp'] == "Y") //Give datestampentry field
{
$localtimedate=dateShift(date("Y-m-d H:i:s"), "Y-m-d H:i", Yii::app()->getConfig('timeadjust')); ?>
<tr>
<td valign='top' width='1%'></td>
<td valign='top' align='right' width='30%'><strong>
<?php echo $blang->gT("Datestamp"); ?>:</strong></td>
<td valign='top' align='left' style='padding-left: 20px'>
<input type='text' name='datestamp' value='<?php echo $localtimedate; ?>' />
</td>
</tr>
<tr class='data-entry-separator'><td colspan='3'></td></tr>
<?php }
if ($thissurvey['ipaddr'] == "Y") //Give ipaddress field
{ ?>
<tr>
<td valign='top' width='1%'></td>
<td valign='top' align='right' width='30%'><strong>
<?php echo $blang->gT("IP address"); ?>:</strong></td>
<td valign='top' align='left' style='padding-left: 20px'>
<input type='text' name='ipaddr' value='NULL' />
</td>
</tr>
<tr class='data-entry-separator'><td colspan='3'></td></tr>
<?php } ?>