mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
637 lines
25 KiB
PHP
637 lines
25 KiB
PHP
<?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: questionquota.php 3571 2007-12-19 10:32:25Z machaven $
|
|
*/
|
|
|
|
include_once("login_check.php"); //Login Check dies also if the script is started directly
|
|
|
|
function getQuotaAnswers($qid,$surveyid,$quota_id)
|
|
{
|
|
global $clang;
|
|
$baselang = GetBaseLanguageFromSurveyID($surveyid);
|
|
$query = "SELECT type, title FROM ".db_table_name('questions')." WHERE qid='{$qid}' AND language='{$baselang}'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
$qtype = $result->FetchRow();
|
|
|
|
if ($qtype['type'] == 'G')
|
|
{
|
|
$query = "SELECT * FROM ".db_table_name('quota_members')." WHERE sid='{$surveyid}' and qid='{$qid}' and quota_id='{$quota_id}'";
|
|
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$answerlist = array('M' => array('Title' => $qtype['title'], 'Display' => $clang->gT("Male"), 'code' => 'M'),
|
|
'F' => array('Title' => $qtype['title'],'Display' => $clang->gT("Female"), 'code' => 'F'));
|
|
|
|
if ($result->RecordCount() > 0)
|
|
{
|
|
while ($quotalist = $result->FetchRow())
|
|
{
|
|
$answerlist[$quotalist['code']]['rowexists'] = '1';
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
if ($qtype['type'] == 'M')
|
|
{
|
|
$query = "SELECT * FROM ".db_table_name('quota_members')." WHERE sid='{$surveyid}' and qid='{$qid}' and quota_id='{$quota_id}'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$query = "SELECT code,answer FROM ".db_table_name('answers')." WHERE qid='{$qid}'";
|
|
$ansresult = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$answerlist = array();
|
|
|
|
while ($dbanslist = $ansresult->FetchRow())
|
|
{
|
|
$tmparrayans = array('Title' => $qtype['title'], 'Display' => substr($dbanslist['answer'],0,40), 'code' => $dbanslist['code']);
|
|
$answerlist[$dbanslist['code']] = $tmparrayans;
|
|
}
|
|
|
|
if ($result->RecordCount() > 0)
|
|
{
|
|
while ($quotalist = $result->FetchRow())
|
|
{
|
|
$answerlist[$quotalist['code']]['rowexists'] = '1';
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
if ($qtype['type'] == 'A')
|
|
{
|
|
$query = "SELECT * FROM ".db_table_name('quota_members')." WHERE sid='{$surveyid}' and qid='{$qid}' and quota_id='{$quota_id}'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$query = "SELECT code,answer FROM ".db_table_name('answers')." WHERE qid='{$qid}'";
|
|
$ansresult = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$answerlist = array();
|
|
|
|
while ($dbanslist = $ansresult->FetchRow())
|
|
{
|
|
for ($x=1; $x<6; $x++)
|
|
{
|
|
$tmparrayans = array('Title' => $qtype['title'], 'Display' => substr($dbanslist['answer'],0,40).' ['.$x.']', 'code' => $dbanslist['code']);
|
|
$answerlist[$dbanslist['code']."-".$x] = $tmparrayans;
|
|
}
|
|
}
|
|
|
|
if ($result->RecordCount() > 0)
|
|
{
|
|
while ($quotalist = $result->FetchRow())
|
|
{
|
|
$answerlist[$quotalist['code']]['rowexists'] = '1';
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
if ($qtype['type'] == 'B')
|
|
{
|
|
$query = "SELECT * FROM ".db_table_name('quota_members')." WHERE sid='{$surveyid}' and qid='{$qid}' and quota_id='{$quota_id}'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$query = "SELECT code,answer FROM ".db_table_name('answers')." WHERE qid='{$qid}'";
|
|
$ansresult = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$answerlist = array();
|
|
|
|
while ($dbanslist = $ansresult->FetchRow())
|
|
{
|
|
for ($x=1; $x<11; $x++)
|
|
{
|
|
$tmparrayans = array('Title' => $qtype['title'], 'Display' => substr($dbanslist['answer'],0,40).' ['.$x.']', 'code' => $dbanslist['code']);
|
|
$answerlist[$dbanslist['code']."-".$x] = $tmparrayans;
|
|
}
|
|
}
|
|
|
|
if ($result->RecordCount() > 0)
|
|
{
|
|
while ($quotalist = $result->FetchRow())
|
|
{
|
|
$answerlist[$quotalist['code']]['rowexists'] = '1';
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
if ($qtype['type'] == 'Y')
|
|
{
|
|
$query = "SELECT * FROM ".db_table_name('quota_members')." WHERE sid='{$surveyid}' and qid='{$qid}' and quota_id='{$quota_id}'";
|
|
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$answerlist = array('Y' => array('Title' => $qtype['title'], 'Display' => $clang->gT("Yes"), 'code' => 'Y'),
|
|
'N' => array('Title' => $qtype['title'],'Display' => $clang->gT("No"), 'code' => 'N'));
|
|
|
|
if ($result->RecordCount() > 0)
|
|
{
|
|
while ($quotalist = $result->FetchRow())
|
|
{
|
|
$answerlist[$quotalist['code']]['rowexists'] = '1';
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
if ($qtype['type'] == 'I')
|
|
{
|
|
|
|
$slangs = GetAdditionalLanguagesFromSurveyID($surveyid);
|
|
array_unshift($slangs,$baselang);
|
|
|
|
$query = "SELECT * FROM ".db_table_name('quota_members')." WHERE sid='{$surveyid}' and qid='{$qid}' and quota_id='{$quota_id}'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
while(list($key,$value) = each($slangs))
|
|
{
|
|
$tmparrayans = array('Title' => $qtype['title'], 'Display' => getLanguageNameFromCode($value,false), $value);
|
|
$answerlist[$value] = $tmparrayans;
|
|
}
|
|
|
|
if ($result->RecordCount() > 0)
|
|
{
|
|
while ($quotalist = $result->FetchRow())
|
|
{
|
|
$answerlist[$quotalist['code']]['rowexists'] = '1';
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
if (!isset($answerlist))
|
|
{
|
|
return array();
|
|
}
|
|
else
|
|
{
|
|
return $answerlist;
|
|
}
|
|
}
|
|
|
|
if($sumrows5['edit_survey_property'] || $_SESSION['USER_RIGHT_SUPERADMIN'] == 1)
|
|
{
|
|
if (isset($_POST['quotamax'])) $_POST['quotamax']=sanitize_int($_POST['quotamax']);
|
|
if (!isset($action)) $action=returnglobal('action');
|
|
if (!isset($subaction)) $subaction=returnglobal('subaction');
|
|
if (!isset($quotasoutput)) $quotasoutput = "";
|
|
if($subaction == "insertquota")
|
|
{
|
|
$_POST = array_map('db_quote', $_POST);
|
|
$query = "INSERT INTO ".db_table_name('quota')." (sid,name,qlimit,action) VALUES ('$surveyid','{$_POST['quota_name']}','{$_POST['quota_limit']}','{$_POST['quota_action']}')";
|
|
$connect->Execute($query) or safe_die($connect->ErrorMsg());
|
|
$viewquota = "1";
|
|
|
|
}
|
|
|
|
if($subaction == "modifyquota")
|
|
{
|
|
$_POST = array_map('db_quote', $_POST);
|
|
$query = "UPDATE ".db_table_name('quota')." SET name='{$_POST['quota_name']}', qlimit='{$_POST['quota_limit']}', action='{$_POST['quota_action']}' where id='{$_POST['quota_id']}' ";
|
|
$connect->Execute($query) or safe_die($connect->ErrorMsg());
|
|
$viewquota = "1";
|
|
|
|
}
|
|
|
|
if($subaction == "insertquotaanswer")
|
|
{
|
|
$_POST = array_map('db_quote', $_POST);
|
|
$query = "INSERT INTO ".db_table_name('quota_members')." (sid,qid,quota_id,code) VALUES ('$surveyid','{$_POST['quota_qid']}','{$_POST['quota_id']}','{$_POST['quota_anscode']}')";
|
|
$connect->Execute($query) or safe_die($connect->ErrorMsg());
|
|
$viewquota = "1";
|
|
|
|
}
|
|
|
|
if($subaction == "quota_delans")
|
|
{
|
|
$_POST = array_map('db_quote', $_POST);
|
|
$query = "DELETE FROM ".db_table_name('quota_members')." WHERE qid='{$_POST['quota_qid']}' and code='{$_POST['quota_anscode']}'";
|
|
$connect->Execute($query) or safe_die($connect->ErrorMsg());
|
|
$viewquota = "1";
|
|
|
|
}
|
|
|
|
|
|
if($subaction == "quota_delquota")
|
|
{
|
|
$_POST = array_map('db_quote', $_POST);
|
|
$query = "DELETE FROM ".db_table_name('quota')." WHERE id='{$_POST['quota_id']}'";
|
|
$connect->Execute($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$query = "DELETE FROM ".db_table_name('quota_members')." WHERE quota_id='{$_POST['quota_id']}'";
|
|
$connect->Execute($query) or safe_die($connect->ErrorMsg());
|
|
$viewquota = "1";
|
|
|
|
}
|
|
|
|
if ($subaction == "quota_editquota")
|
|
{
|
|
$_POST = array_map('db_quote', $_POST);
|
|
$query = "SELECT * FROM ".db_table_name('quota')." where id='{$_POST['quota_id']}'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
$quotainfo = $result->FetchRow();
|
|
|
|
$quotasoutput .='<form action="'.$scriptname.'" method="post">
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#F8F8FF">
|
|
<tr>
|
|
<td valign="top">
|
|
<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="2" class="header">'.$clang->gT("Modify Quota").'</td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="right"><blockquote>
|
|
<p><strong>'.$clang->gT("Quota Name").':</strong></p>
|
|
</blockquote></td>
|
|
<td align="left"> <input name="quota_name" type="text" size="30" maxlength="255" value="'.$quotainfo['name'].'"></td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="right"><blockquote>
|
|
<p><strong>'.$clang->gT("Quota Limit").':</strong></p>
|
|
</blockquote></td>
|
|
<td align="left"><input name="quota_limit" type="text" size="12" maxlength="8" value="'.$quotainfo['qlimit'].'"></td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="right"><blockquote>
|
|
<p><strong>'.$clang->gT("Quota Action").':</strong></p>
|
|
</blockquote></td>
|
|
<td align="left"> <select name="quota_action">
|
|
<option value ="1" ';
|
|
if($quotainfo['action'] == 1) $quotasoutput .= "selected";
|
|
$quotasoutput .='>'.$clang->gT("Terminate Survey") .'</option>
|
|
<option value ="2" ';
|
|
if($quotainfo['action'] == 2) $quotasoutput .= "selected";
|
|
$quotasoutput .= '>'.$clang->gT("Terminate Survey With Warning") .'</option>
|
|
</select></td>
|
|
</tr>
|
|
<tr align="left" class="evenrow">
|
|
<td> </td>
|
|
<td><table width="30%"><tr><td align="left"><input name="submit" type="submit" value="'.$clang->gT("Update Quota").'" />
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="subaction" value="modifyquota" />
|
|
<input type="hidden" name="quota_id" value="'.$quotainfo['id'].'" />
|
|
</form></td><td>
|
|
<form action="'.$scriptname.'" method="post">
|
|
<input name="submit" type="submit" id="submit" value="'.$clang->gT("Cancel").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
</form></td></tr></table></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
|
|
if (($action == "quotas" && !isset($subaction)) || isset($viewquota))
|
|
{
|
|
|
|
$query = "SELECT * FROM ".db_table_name('quota')." where sid='".$surveyid."'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
$quotasoutput .='<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#F8F8FF">
|
|
<tr>
|
|
<td valign="top">
|
|
<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="6" class="header">'.$clang->gT("Survey Quotas").'</td>
|
|
</tr>
|
|
<tr>
|
|
<th width="20%">'.$clang->gT("Quota Name").'</th>
|
|
<th width="20%">'.$clang->gT("Status").'</th>
|
|
<th width="30%">'.$clang->gT("Quota Action").'</th>
|
|
<th width="5%">'.$clang->gT("Limit").'</th>
|
|
<th width="5%">'.$clang->gT("Completed").'</th>
|
|
<th width="20%">'.$clang->gT("Action").'</th>
|
|
</tr>';
|
|
|
|
if ($result->RecordCount() > 0)
|
|
{
|
|
|
|
while ($quotalisting = $result->FetchRow())
|
|
{
|
|
$quotasoutput .='<tr>
|
|
<td align="center">'.$quotalisting['name'].'</td>
|
|
<td align="center">';
|
|
if ($quotalisting['active'] == 1)
|
|
{
|
|
$quotasoutput .= '<font color="#48B150">'.$clang->gT("Active").'</font>';
|
|
} else {
|
|
$quotasoutput .= '<font color="#B73838">'.$clang->gT("Not Active").'</font>';
|
|
}
|
|
$quotasoutput .='</td>
|
|
<td align="center">';
|
|
if ($quotalisting['action'] == 1)
|
|
{
|
|
$quotasoutput .= $clang->gT("Terminate Survey");
|
|
} elseif ($quotalisting['action'] == 2) {
|
|
$quotasoutput .= $clang->gT("Terminate Survey With Warning");
|
|
}
|
|
$quotasoutput .='</td>
|
|
<td align="center">'.$quotalisting['qlimit'].'</td>
|
|
<td align="center">N/A</td>
|
|
<td align="center" style="padding: 3px;">
|
|
<table width="100%"><tr><td align="center">
|
|
<form action="'.$scriptname.'" method="post">
|
|
<input name="submit" type="submit" id="submit" value="'.$clang->gT("Modify").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="quota_id" value="'.$quotalisting['id'].'" />
|
|
<input type="hidden" name="subaction" value="quota_editquota" />
|
|
</form></td><td>
|
|
<form action="'.$scriptname.'" method="post">
|
|
<input name="submit" type="submit" id="submit" value="'.$clang->gT("Remove").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="quota_id" value="'.$quotalisting['id'].'" />
|
|
<input type="hidden" name="subaction" value="quota_delquota" />
|
|
</form></td></tr></table>
|
|
</td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="center"> </td>
|
|
<td align="center"><strong>'.$clang->gT("Questions").'</strong></td>
|
|
<td align="center"><strong>'.$clang->gT("Answers").'</strong></td>
|
|
<td align="center"> </td>
|
|
<td align="center"> </td>
|
|
<td style="padding: 3px;" align="center"><form action="'.$scriptname.'" method="post">
|
|
<input name="submit" type="submit" id="quota_new" value="'.$clang->gT("Add Answer").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="quota_id" value="'.$quotalisting['id'].'" />
|
|
<input type="hidden" name="subaction" value="new_answer" /></form></td>
|
|
</tr>';
|
|
|
|
$query = "SELECT id,code,qid FROM ".db_table_name('quota_members')." where quota_id='".$quotalisting['id']."'";
|
|
$result2 = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
|
|
if ($result2->RecordCount() > 0)
|
|
{
|
|
while ($quota_questions = $result2->FetchRow())
|
|
{
|
|
$question_answers = getQuotaAnswers($quota_questions['qid'],$surveyid,$quotalisting['id']);
|
|
$quotasoutput .='<tr class="evenrow">
|
|
<td align="center"> </td>
|
|
<td align="center">'.$question_answers[$quota_questions['code']]['Title'].'</td>
|
|
<td align="center">'.$question_answers[$quota_questions['code']]['Display'].'</td>
|
|
<td align="center"> </td>
|
|
<td align="center"> </td>
|
|
<td style="padding: 3px;" align="center">
|
|
<form action="'.$scriptname.'" method="post">
|
|
<input name="submit" type="submit" id="submit" value="'.$clang->gT("Remove").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="quota_qid" value="'.$quota_questions['qid'].'" />
|
|
<input type="hidden" name="quota_anscode" value="'.$quota_questions['code'].'" />
|
|
<input type="hidden" name="subaction" value="quota_delans" />
|
|
</form>
|
|
</td>
|
|
</tr>';
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else
|
|
{
|
|
$quotasoutput .='<tr>
|
|
<td colspan="6" align="center">'.$clang->gT("No quotas have been set for this survey").'.</td>
|
|
</tr>';
|
|
}
|
|
|
|
$quotasoutput .='<tr>
|
|
<td align="center"><form action="'.$scriptname.'" method="post">
|
|
<input name="submit" type="submit" id="quota_new" value="'.$clang->gT("Add New Quota").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="subaction" value="new_quota" /></form></td>
|
|
<td align="center"> </td>
|
|
<td align="center"> </td>
|
|
<td align="center"> </td>
|
|
<td align="center"> </td>
|
|
<td align="center" style="padding: 3px;"> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
|
|
|
|
if($subaction == "new_answer" || ($subaction == "new_answer_two" && !isset($_POST['quota_qid'])))
|
|
{
|
|
if ($subaction == "new_answer_two") $_POST['quota_id'] = $_POST['quota_id'];
|
|
|
|
$allowed_types = "(type ='G' or type ='M' or type ='Y' or type ='A' or type ='B' or type ='I')";
|
|
$query = "SELECT qid, title, question FROM ".db_table_name('questions')." WHERE $allowed_types AND sid='$surveyid' AND language='{$baselang}'";
|
|
$result = db_execute_assoc($query) or safe_die($connect->ErrorMsg());
|
|
if ($result->RecordCount() == 0)
|
|
{
|
|
$quotasoutput .='<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td class="header">'.$clang->gT("Add Answer").': '.$clang->gT("Question Selection").'</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center"><br />'.$clang->gT("Sorry there are no supported question types in this survey.").'<br /><br /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>';
|
|
} else
|
|
{
|
|
$quotasoutput .='<form action="'.$scriptname.'" method="post">
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#F8F8FF">
|
|
<tr>
|
|
<td valign="top">
|
|
<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="2" class="header">'.$clang->gT("Survey Quota").': '.$clang->gT("Add Answer").'</td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="center"> </td>
|
|
<td align="center"> </td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td width="21%" align="center" valign="top"><strong>'.$clang->gT("Select Question").':</strong></td>
|
|
<td align="left">
|
|
<select name="quota_qid" size="15">';
|
|
|
|
while ($questionlisting = $result->FetchRow())
|
|
{
|
|
$quotasoutput .='<option value="'.$questionlisting['qid'].'">'.$questionlisting['title'].': '.strip_tags(substr($questionlisting['question'],0,40)).'</option>';
|
|
}
|
|
|
|
|
|
$quotasoutput .=' </select>
|
|
</td>
|
|
</tr>
|
|
<tr align="left" class="evenrow">
|
|
<td colspan="2"> </td>
|
|
</tr>
|
|
<tr align="left" class="evenrow">
|
|
<td> </td>
|
|
<td>
|
|
<input name="submit" type="submit" id="submit" value="'.$clang->gT("Next").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="subaction" value="new_answer_two" />
|
|
<input type="hidden" name="quota_id" value="'.$_POST['quota_id'].'" />
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
}
|
|
|
|
if($subaction == "new_answer_two" && isset($_POST['quota_qid']))
|
|
{
|
|
$_POST = array_map('db_quote', $_POST);
|
|
|
|
$question_answers = getQuotaAnswers($_POST['quota_qid'],$surveyid,$_POST['quota_id']);
|
|
$x=0;
|
|
|
|
foreach ($question_answers as $qacheck)
|
|
{
|
|
if (isset($qacheck['rowexists'])) $x++;
|
|
}
|
|
|
|
reset($question_answers);
|
|
|
|
if (count($question_answers) == $x)
|
|
{
|
|
$quotasoutput .='<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td class="header">'.$clang->gT("Add Answer").': '.$clang->gT("Question Selection").'</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center"><br />'.$clang->gT("All answers are already selected in this quota.").'<br /><br /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>';
|
|
} else
|
|
{
|
|
$quotasoutput .='<form action="'.$scriptname.'" method="post">
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#F8F8FF">
|
|
<tr>
|
|
<td valign="top">
|
|
<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="2" class="header">'.$clang->gT("Survey Quota").': '.$clang->gT("Add Answer").'</td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="center"> </td>
|
|
<td align="center"> </td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td width="21%" align="center" valign="top"><strong>'.$clang->gT("Select Answer").':</strong></td>
|
|
<td align="left">
|
|
<select name="quota_anscode" size="15">';
|
|
|
|
while (list($key,$value) = each($question_answers))
|
|
{
|
|
if (!isset($value['rowexists'])) $quotasoutput .='<option value="'.$key.'">'.strip_tags(substr($value['Display'],0,40)).'</option>';
|
|
}
|
|
|
|
|
|
$quotasoutput .=' </select>
|
|
</td>
|
|
</tr>
|
|
<tr align="left" class="evenrow">
|
|
<td colspan="2"> </td>
|
|
</tr>
|
|
<tr align="left" class="evenrow">
|
|
<td> </td>
|
|
<td>
|
|
<input name="submit" type="submit" id="submit" value="'.$clang->gT("Next").'">
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="subaction" value="insertquotaanswer" />
|
|
<input type="hidden" name="quota_qid" value="'.$_POST['quota_qid'].'" />
|
|
<input type="hidden" name="quota_id" value="'.$_POST['quota_id'].'" />
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
}
|
|
|
|
if ($subaction == "new_quota")
|
|
{
|
|
$quotasoutput .='<form action="'.$scriptname.'" method="post">
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#F8F8FF">
|
|
<tr>
|
|
<td valign="top">
|
|
<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="2" class="header">'.$clang->gT("New Quota").'</td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="right"><blockquote>
|
|
<p><strong>'.$clang->gT("Quota Name").':</strong></p>
|
|
</blockquote></td>
|
|
<td align="left"> <input name="quota_name" type="text" size="30" maxlength="255"></td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="right"><blockquote>
|
|
<p><strong>'.$clang->gT("Quota Limit").':</strong></p>
|
|
</blockquote></td>
|
|
<td align="left"><input name="quota_limit" type="text" size="12" maxlength="8"></td>
|
|
</tr>
|
|
<tr class="evenrow">
|
|
<td align="right"><blockquote>
|
|
<p><strong>'.$clang->gT("Quota Action").':</strong></p>
|
|
</blockquote></td>
|
|
<td align="left"> <select name="quota_action">
|
|
<option value ="1">'.$clang->gT("Terminate Survey") .'</option>
|
|
<option value ="2">'.$clang->gT("Terminate Survey With Warning") .'</option>
|
|
</select></td>
|
|
</tr>
|
|
<tr align="left" class="evenrow">
|
|
<td> </td>
|
|
<td><input name="submit" type="submit" value="'.$clang->gT("Add New Quota").'" />
|
|
<input type="hidden" name="sid" value="'.$surveyid.'" />
|
|
<input type="hidden" name="action" value="quotas" />
|
|
<input type="hidden" name="subaction" value="insertquota" />
|
|
</td>
|
|
|
|
</form>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
}
|
|
|
|
?>
|