mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
93 lines
3.6 KiB
PHP
93 lines
3.6 KiB
PHP
<div class='header ui-widget-header'><?php $clang->eT("Data entry"); ?></div>
|
|
<div class='messagebox ui-corner-all'>
|
|
<br />
|
|
<?php if(isset($save) && $errormsg): ?>
|
|
<?php $clang->eT("Try again"); ?>:
|
|
<?php echo CHtml::form();?>
|
|
<table class='outlinetable'>
|
|
<tr>
|
|
<td align='right'><?php $clang->eT("Identifier:"); ?></td>
|
|
<td>
|
|
<?php echo CHtml::textField('text','save_identifier',$_POST['save_identifier']);?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align='right'><?php $clang->eT("Password:"); ?></td>
|
|
<td>
|
|
<?php echo CHtml::passwordField('save_password',$_POST['save_password']);?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align='right'><?php $clang->eT("Confirm Password:"); ?></td>
|
|
<td>
|
|
<?php echo CHtml::passwordField('save_confirmpassword',$_POST['save_confirmpassword']);?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align='right'><?php $clang->eT("Email:"); ?></td>
|
|
<td>
|
|
<?php echo CHtml::textField('save_email',$_POST['save_email']);?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align='right'><?php $clang->eT("Start language:"); ?></td>
|
|
<td>
|
|
<?php echo CHtml::textField('text','save_language',$_POST['save_language']);?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<input type='submit' value='<?php $clang->eT("Submit"); ?>' />
|
|
<input type='hidden' name='sid' value='<?php echo $surveyid; ?>' />
|
|
<?php echo CHtml::hiddenField('subaction',$_POST['subaction']);?>
|
|
<input type='hidden' name='language' value='<?php echo $lang; ?>' />
|
|
<input type='hidden' name='save' value='on' />
|
|
</td>
|
|
<?php
|
|
echo $hiddenfields;
|
|
|
|
if (isset($_POST['datestamp'])) {
|
|
echo CHtml::hiddenField('datestamp', $_POST['datestamp']);
|
|
}
|
|
|
|
if (isset($_POST['ipaddr']))
|
|
{
|
|
echo CHtml::hiddenField('ipaddr', $_POST['ipaddr']);
|
|
}
|
|
?>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<?php endif; ?>
|
|
|
|
<?php
|
|
|
|
foreach($dataentrymsgs as $msg) {
|
|
echo $msg . "<br />\n";
|
|
}
|
|
|
|
?>
|
|
|
|
<?php if(isset($thisid)): ?>
|
|
<div class='successheader'><?php $clang->eT("Success"); ?></div>
|
|
<?php echo $clang->gT("The entry was assigned the following record id: ")."{$thisid}"; ?> <br /><br />
|
|
<?php endif; ?>
|
|
|
|
<?php echo $errormsg; ?>
|
|
|
|
<input type='submit' value='<?php $clang->eT("Add another record"); ?>' onclick="window.open('<?php echo $this->createUrl('/admin/dataentry/sa/view/surveyid/'.$surveyid.'/lang/'.$lang); ?>', '_top')" />
|
|
<br /><br />
|
|
<input type='submit' value='<?php $clang->eT("Return to survey administration"); ?>' onclick="window.open('<?php echo $this->createUrl('admin/survey/sa/view/surveyid/'.$surveyid); ?>', '_top')" />
|
|
<br /><br />
|
|
|
|
<?php if(isset($thisid) && Permission::model()->hasSurveyPermission($surveyid, 'responses','read')): ?>
|
|
<input type='submit' value='<?php $clang->eT("View this record"); ?>' onclick="window.open('<?php echo $this->createUrl('/admin/responses/sa/view/surveyid/'.$surveyid.'/id/'.$thisid); ?>', '_top')" />
|
|
<br /><br />
|
|
<?php endif; ?>
|
|
|
|
<?php if(isset($save)): ?>
|
|
<input type='submit' value='<?php $clang->eT("Browse saved responses"); ?>' onclick="window.open('<?php echo $this->createUrl('/admin/saved/sa/view/surveyid/'.$surveyid.'/all'); ?>', '_top')" />
|
|
<br /><br />
|
|
<?php endif; ?>
|
|
</div>
|