mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Merging the Limesurvey 1.91+ branch of queXS in to the trunk
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
<?php
|
||||
/*
|
||||
* LimeSurvey
|
||||
* Copyright (C) 2007 The LimeSurvey Project Team / Carsten Schmitz
|
||||
* All rights reserved.
|
||||
* License: GNU/GPL License v2 or later, see LICENSE.php
|
||||
* LimeSurvey is free software. This version may have been modified pursuant
|
||||
* to the GNU General Public License, and as distributed it includes or
|
||||
* is derivative of works licensed under the GNU General Public License or
|
||||
* other free or open source software licenses.
|
||||
* See COPYRIGHT.php for copyright notices and details.
|
||||
*
|
||||
* $Id: preview.php 7389 2009-08-02 20:22:15Z c_schmitz $
|
||||
*/
|
||||
* LimeSurvey
|
||||
* Copyright (C) 2007 The LimeSurvey Project Team / Carsten Schmitz
|
||||
* All rights reserved.
|
||||
* License: GNU/GPL License v2 or later, see LICENSE.php
|
||||
* LimeSurvey is free software. This version may have been modified pursuant
|
||||
* to the GNU General Public License, and as distributed it includes or
|
||||
* is derivative of works licensed under the GNU General Public License or
|
||||
* other free or open source software licenses.
|
||||
* See COPYRIGHT.php for copyright notices and details.
|
||||
*
|
||||
* $Id: preview.php 10925 2011-09-02 14:12:02Z c_schmitz $
|
||||
*/
|
||||
|
||||
|
||||
//Ensure script is not run directly, avoid path disclosure
|
||||
@@ -26,63 +26,116 @@ if (empty($qid)) {die("No QID provided.");}
|
||||
|
||||
if (!isset($_GET['lang']) || $_GET['lang'] == "")
|
||||
{
|
||||
$language = GetBaseLanguageFromSurveyID($surveyid);
|
||||
$language = GetBaseLanguageFromSurveyID($surveyid);
|
||||
} else {
|
||||
$language = $_GET['lang'];
|
||||
$language = $_GET['lang'];
|
||||
}
|
||||
|
||||
$_SESSION['s_lang'] = $language;
|
||||
$_SESSION['fieldmap']=createFieldMap($surveyid,'full',true,$qid);
|
||||
// Prefill question/answer from defaultvalues
|
||||
foreach ($_SESSION['fieldmap'] as $field)
|
||||
{
|
||||
if (isset($field['defaultvalue']))
|
||||
{
|
||||
$_SESSION[$field['fieldname']]=$field['defaultvalue'];
|
||||
}
|
||||
}
|
||||
$clang = new limesurvey_lang($language);
|
||||
|
||||
$thissurvey=getSurveyInfo($surveyid);
|
||||
$_SESSION['dateformats'] = getDateFormatData($thissurvey['surveyls_dateformat']);
|
||||
|
||||
$qquery = 'SELECT * FROM '.db_table_name('questions')." WHERE sid='$surveyid' AND qid='$qid' AND language='{$language}'";
|
||||
$qresult = db_execute_assoc($qquery);
|
||||
$qrows = $qresult->FetchRow();
|
||||
$ia = array(0 => $qid,
|
||||
1 => "FIELDNAME",
|
||||
2 => $qrows['title'],
|
||||
3 => $qrows['question'],
|
||||
4 => $qrows['type'],
|
||||
5 => $qrows['gid'],
|
||||
6 => $qrows['mandatory'],
|
||||
7 => $qrows['other']);
|
||||
|
||||
$ia = array(0 => $qid,
|
||||
1 => $surveyid.'X'.$qrows['gid'].'X'.$qid,
|
||||
2 => $qrows['title'],
|
||||
3 => $qrows['question'],
|
||||
4 => $qrows['type'],
|
||||
5 => $qrows['gid'],
|
||||
6 => $qrows['mandatory'],
|
||||
//7 => $qrows['other']); // ia[7] is conditionsexist not other
|
||||
7 => 'N',
|
||||
8 => 'N' ); // ia[8] is usedinconditions
|
||||
|
||||
$answers = retrieveAnswers($ia);
|
||||
$thistpl="$templaterootdir/".$thissurvey['template'];
|
||||
doHeader();
|
||||
$dummy_js = '
|
||||
<!-- JAVASCRIPT FOR CONDITIONAL QUESTIONS -->
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
function checkconditions(value, name, type)
|
||||
{
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<form method="post" action="index.php" id="limesurvey" name="limesurvey">
|
||||
';
|
||||
|
||||
|
||||
|
||||
$question="<label for='$answers[0][7]'>" . $answers[0][0] . "</label>";
|
||||
$answer=$answers[0][1];
|
||||
$help=$answers[0][2];
|
||||
$questioncode=$answers[0][5];
|
||||
$content = templatereplace(file_get_contents("$thistpl/startpage.pstpl"));
|
||||
$content .= templatereplace(file_get_contents("$thistpl/startgroup.pstpl"));
|
||||
$content .= templatereplace(file_get_contents("$thistpl/question.pstpl"));
|
||||
$content .= templatereplace(file_get_contents("$thistpl/endgroup.pstpl")).$dummy_js;
|
||||
$content .= templatereplace(file_get_contents("$thistpl/endpage.pstpl"));
|
||||
if($qrows['mandatory'] == 'Y')
|
||||
if (!$thissurvey['template'])
|
||||
{
|
||||
$mandatory = ' mandatory';
|
||||
$thistpl=sGetTemplatePath($defaulttemplate);
|
||||
}
|
||||
else
|
||||
{
|
||||
$mandatory = '';
|
||||
$thistpl=sGetTemplatePath(validate_templatedir($thissurvey['template']));
|
||||
}
|
||||
$content = str_replace('{QUESTION_CLASS}' , question_class($qrows['type']) . $mandatory , $content);
|
||||
|
||||
doHeader();
|
||||
$dummy_js = '
|
||||
<!-- JAVASCRIPT FOR CONDITIONAL QUESTIONS -->
|
||||
<script type="text/javascript">
|
||||
/* <![CDATA[ */
|
||||
function checkconditions(value, name, type)
|
||||
{
|
||||
}
|
||||
function noop_checkconditions(value, name, type)
|
||||
{
|
||||
}
|
||||
/* ]]> */
|
||||
</script>
|
||||
';
|
||||
|
||||
|
||||
$answer=$answers[0][1];
|
||||
$help=$answers[0][2];
|
||||
|
||||
$question = $answers[0][0];
|
||||
$question['code']=$answers[0][5];
|
||||
$question['class'] = question_class($qrows['type']);
|
||||
$question['essentials'] = 'id="question'.$qrows['qid'].'"';
|
||||
$question['sgq']=$ia[1];
|
||||
|
||||
//Temporary fix for error condition arising from linked question via replacement fields
|
||||
//@todo: find a consistent way to check and handle this - I guess this is already handled but the wrong values are entered into the DB
|
||||
|
||||
$search_for = '{INSERTANS';
|
||||
if(strpos($question['text'],$search_for)!==false){
|
||||
$pattern_text = '/{([A-Z])*:([0-9])*X([0-9])*X([0-9])*}/';
|
||||
$replacement_text = $clang->gT('[Dependency on another question (ID $4)]');
|
||||
$text = preg_replace($pattern_text,$replacement_text,$question['text']);
|
||||
$question['text']=$text;
|
||||
}
|
||||
|
||||
if ($qrows['mandatory'] == 'Y')
|
||||
{
|
||||
$question['man_class'] = ' mandatory';
|
||||
}
|
||||
else
|
||||
{
|
||||
$question['man_class'] = '';
|
||||
};
|
||||
|
||||
$content = templatereplace(file_get_contents("$thistpl/startpage.pstpl"));
|
||||
$content .='<form method="post" action="index.php" id="limesurvey" name="limesurvey" autocomplete="off">';
|
||||
$content .= templatereplace(file_get_contents("$thistpl/startgroup.pstpl"));
|
||||
|
||||
$question_template = file_get_contents("$thistpl/question.pstpl");
|
||||
if(substr_count($question_template , '{QUESTION_ESSENTIALS}') > 0 ) // the following has been added for backwards compatiblity.
|
||||
{// LS 1.87 and newer templates
|
||||
$content .= "\n".templatereplace($question_template)."\n";
|
||||
}
|
||||
else
|
||||
{// LS 1.86 and older templates
|
||||
$content .= '<div '.$question['essentials'].' class="'.$question['class'].$question['man_class'].'">';
|
||||
$content .= "\n".templatereplace($question_template)."\n";
|
||||
$content .= "\n\t</div>\n";
|
||||
};
|
||||
|
||||
$content .= templatereplace(file_get_contents("$thistpl/endgroup.pstpl")).$dummy_js;
|
||||
$content .= '<p> </form>';
|
||||
$content .= templatereplace(file_get_contents("$thistpl/endpage.pstpl"));
|
||||
|
||||
echo $content;
|
||||
echo "</html>\n";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user