mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
merged rs_intro.php and rs_intro_interface2.php;
removed references to rs_intro_interface2.php; removed rs_intro_interface2.php; bootstrapified rs_intro.php
This commit is contained in:
@@ -1307,20 +1307,12 @@ function get_respondentselection_url($operator_id,$escape = true,$interface2 = f
|
||||
if ($sid != false && !empty($sid) && $sid != 'NULL')
|
||||
$url = LIME_URL . "index.php?interviewer=interviewer" . $amp . "loadall=reload" . $amp . "sid=$sid" . $amp . "token=$call_id" . $amp . "lang=" . DEFAULT_LOCALE;
|
||||
else
|
||||
{
|
||||
if (is_respondent_selection($operator_id) === false)
|
||||
{
|
||||
$url = get_limesurvey_url($operator_id);
|
||||
if (!$escape)
|
||||
$url = str_replace("&","&",$url);
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($interface2)
|
||||
$url = 'rs_intro_interface2.php';
|
||||
else
|
||||
$url = 'rs_intro.php';
|
||||
}
|
||||
{
|
||||
if (is_respondent_selection($operator_id) === false)
|
||||
{
|
||||
if (!$escape) $url = str_replace("&","&",$url); else $url = get_limesurvey_url($operator_id);
|
||||
}
|
||||
else $url = 'rs_intro.php';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -78,17 +78,13 @@ if ($leavemessage)
|
||||
|
||||
$r = $db->GetRow($sql);
|
||||
|
||||
if (!empty($r['rs_answeringmachine'])) print "<p class='rstext well'>" . template_replace($r['rs_answeringmachine'],$operator_id,$case_id) . "</p>";
|
||||
if (!empty($r['rs_answeringmachine'])) print "<div class='rstext well rs'>" . template_replace($r['rs_answeringmachine'],$operator_id,$case_id) . "</div>";
|
||||
}
|
||||
else
|
||||
print "<p class='rstext alert alert-warning'>" . T_("Do not leave a message, please hang up") . "</p>";
|
||||
|
||||
print "<div class=' '>
|
||||
<div class='col-lg-2'><p class=''><a class='btn btn-default'";
|
||||
|
||||
//to remove after rs_intro and rs_intro_interface2 merging //
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"rs_intro_interface2.php\""; else print "href=\"rs_intro.php\"";
|
||||
print ">" . T_("Go Back") . "</a></p></div>";
|
||||
<div class='col-lg-2'><p><a class='btn btn-default' href=\"rs_intro.php\" >" . T_("Go Back") . "</a></p></div>";
|
||||
|
||||
if ($questionnaire_id){
|
||||
$outcomes = $db->GetOne("SELECT q.outcomes FROM `questionnaire` as q WHERE q.questionnaire_id = $questionnaire_id");//
|
||||
@@ -99,22 +95,22 @@ print "<div class=' '>
|
||||
|
||||
print "<div class='col-lg-4'><p class=''><h4 class='text-right'>" . T_("End call with outcome:") . "</h4></p></div>
|
||||
<div class='col-lg-6'>";
|
||||
if (in_array(29,$outcomes)){ //preg_match('/29/',$outcomes)
|
||||
print "<p class=''><a class='btn btn-primary' ";
|
||||
if (in_array(29,$outcomes)){
|
||||
print "<p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=29&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=29');\">";
|
||||
print $des[2]['description'] . "</a></p>";
|
||||
}
|
||||
|
||||
if (in_array(23,$outcomes) && $leavemessage){ //preg_match('/23/',$outcomes
|
||||
print "<p class=''><a class='btn btn-primary' ";
|
||||
if (in_array(23,$outcomes) && $leavemessage){
|
||||
print "<p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=23&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=23');\">";
|
||||
print $des[0]['description'] . "</a></p>";
|
||||
}
|
||||
|
||||
if (in_array(24,$outcomes)){ //preg_match('/24/',$outcomes
|
||||
print "<p class=''><a class='btn btn-primary' ";
|
||||
if (in_array(24,$outcomes)){
|
||||
print "<p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=24&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=24');\">";
|
||||
print $des[1]['description'] . "</a></p>";
|
||||
|
||||
@@ -57,19 +57,14 @@ if (AUTO_LOGOUT_MINUTES !== false) $js[] = "js/childnap.js";
|
||||
|
||||
xhtml_head(T_("Respondent Selection") . " - " . T_("Business answers"),true,array("include/bootstrap/css/bootstrap.min.css","css/rs.css"), $js);
|
||||
|
||||
|
||||
print "<p class='rstext well '>" . T_("Sorry to bother you, I have called the wrong number") . "</p>";
|
||||
print "<p class='rstext well rs'>" . T_("Sorry to bother you, I have called the wrong number") . "</p>";
|
||||
|
||||
print "<div class=' '>
|
||||
<div class='col-lg-2'><p class=''><a class='btn btn-default'";
|
||||
|
||||
//to remove after rs_intro and rs_intro_interface2 merging //
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"rs_intro_interface2.php\""; else print "href=\"rs_intro.php\"";
|
||||
print ">" . T_("Go Back") . "</a></p></div>";
|
||||
<div class='col-lg-2'><p><a class='btn btn-default' href=\"rs_intro.php\" >" . T_("Go Back") . "</a></p></div>";
|
||||
|
||||
$des = $db->GetAll("SELECT description FROM outcome WHERE outcome_id = 16");
|
||||
print "<div class='col-lg-4'><p class=''><h4 class='text-right'>" . T_("End call with outcome:") . "</h4></p></div>
|
||||
<div class='col-lg-6'><p class=''><a class='btn btn-primary' ";
|
||||
print "<div class='col-lg-4'><p><h4 class='text-right'>" . T_("End call with outcome:") . "</h4></p></div>
|
||||
<div class='col-lg-6'><p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=16&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=16');\">";
|
||||
print T_($des[0]['description']) . "</a></p></div>";
|
||||
|
||||
@@ -77,16 +77,12 @@ $sql = "SELECT rs_callback
|
||||
WHERE questionnaire_id = '$questionnaire_id'";
|
||||
$r = $db->GetRow($sql);
|
||||
|
||||
if (!empty($r['rs_callback'])) print "<p class='well'>" . template_replace($r['rs_callback'],$operator_id,$case_id) . "</p>";
|
||||
if (!empty($r['rs_callback'])) print "<div class='rstext well rs'>" . template_replace($r['rs_callback'],$operator_id,$case_id) . "</div>";
|
||||
|
||||
print "<p class='rstext alert alert-info'>" . T_("Survey is") . " " . round(limesurvey_percent_complete($case_id),1) . " % " . T_("complete") . "</p>";
|
||||
|
||||
print "<div class=' '>
|
||||
<div class='col-lg-2'><p class=''><a class='btn btn-default'";
|
||||
|
||||
//to remove after rs_intro and rs_intro_interface2 merging //
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"rs_intro_interface2.php\""; else print "href=\"rs_intro.php\"";
|
||||
print ">" . T_("Go Back") . "</a></p></div>";
|
||||
<div class='col-lg-2'><p><a class='btn btn-default' href=\"rs_intro.php\" >" . T_("Go Back") . "</a></p></div>";
|
||||
|
||||
//filter displayed outcomes
|
||||
if ($questionnaire_id){
|
||||
@@ -96,7 +92,7 @@ print "<div class=' '>
|
||||
if (in_array(8,$outcomes)){
|
||||
$des = $db->GetAll("SELECT description FROM outcome WHERE outcome_id = 8");
|
||||
print "<div class='col-lg-4'><p class=''><h4 class=' '>" . T_("End call with outcome:") . "</h4></p>
|
||||
<p class=''><a class='btn btn-primary' ";
|
||||
<p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=8');\">";
|
||||
print T_($des[0]['description']) . "</a></p></div>";
|
||||
@@ -104,7 +100,7 @@ print "<div class=' '>
|
||||
}
|
||||
|
||||
print "<div class='col-lg-6'>
|
||||
<p class=''><a href=\"" . (get_limesurvey_url($operator_id)) . "\" class='btn btn-primary' >" . T_("Yes - Continue where we left off") . "</a></p></div>";
|
||||
<p><a href=\"" . (get_limesurvey_url($operator_id)) . "\" class='btn btn-primary' >" . T_("Yes - Continue where we left off") . "</a></p></div>";
|
||||
|
||||
print "</div>";
|
||||
|
||||
|
||||
147
rs_intro.php
147
rs_intro.php
@@ -20,11 +20,11 @@
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*
|
||||
* @author Adam Zammit <adam.zammit@deakin.edu.au>
|
||||
* @copyright Deakin University 2007,2008
|
||||
* @author Adam Zammit <adam.zammit@acspri.org.au>
|
||||
* @copyright Australian Consortium for Social and Political Research Inc 2007,2008
|
||||
* @package queXS
|
||||
* @subpackage user
|
||||
* @link http://www.deakin.edu.au/dcarf/ queXS was writen for DCARF - Deakin Computer Assisted Research Facility
|
||||
* @link http://www.acspri.org.au/ queXS was writen for Australian Consortium for Social and Political Research Incorporated (ACSPRI)
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
|
||||
*
|
||||
*/
|
||||
@@ -62,74 +62,101 @@ include ("functions/functions.limesurvey.php");
|
||||
|
||||
$js = array("js/popup.js","include/jquery/jquery-1.4.2.min.js","include/jquery-ui/jquery-ui.min.js");
|
||||
|
||||
if (AUTO_LOGOUT_MINUTES !== false)
|
||||
{
|
||||
$js[] = "js/childnap.js";
|
||||
}
|
||||
|
||||
|
||||
xhtml_head(T_("Respondent Selection - Introduction"),true,array("css/rs.css","include/jquery-ui/jquery-ui.min.css"), $js);
|
||||
|
||||
//display introduction text
|
||||
|
||||
if (AUTO_LOGOUT_MINUTES !== false) $js[] = "js/childnap.js";
|
||||
|
||||
$operator_id = get_operator_id();
|
||||
$case_id = get_case_id($operator_id);
|
||||
$questionnaire_id = get_questionnaire_id($operator_id);
|
||||
|
||||
//display introduction text
|
||||
$sql = "SELECT rs_intro,rs_project_intro,rs_callback
|
||||
FROM questionnaire
|
||||
WHERE questionnaire_id = '$questionnaire_id'";
|
||||
if($questionnaire_id && $operator_id){
|
||||
|
||||
$r = $db->GetRow($sql);
|
||||
xhtml_head(T_("Respondent Selection") . " - " . T_("Introduction"),false,array("include/bootstrap/css/bootstrap.min.css","css/rs.css"), $js);// "include/bootstrap/css/bootstrap-theme.min.css",
|
||||
|
||||
print "<p class='rstext'>". template_replace($r['rs_intro'],$operator_id,$case_id) . "</p>";
|
||||
//display outcomes
|
||||
$outcomes = $db->GetOne("SELECT q.outcomes FROM `questionnaire` as q WHERE q.questionnaire_id = $questionnaire_id");//
|
||||
$outcomes = explode(",",$outcomes);
|
||||
|
||||
$des = $db->GetAll("SELECT description FROM outcome WHERE outcome_id IN (1,2,3,6,8,16,17,18,30,31)");
|
||||
translate_array($des,array("description"));
|
||||
|
||||
//display outcomes
|
||||
print "<div class='col-lg-4 text-danger'>
|
||||
<h3>" . T_("End call with outcome:") . "</h3>";
|
||||
print "<div class='panel panel-danger'><div class='panel-heading'><t class='panel-title'>" . T_("Not Contacted") . "</t></div>
|
||||
<div class='panel-body'>";
|
||||
if ( ALTERNATE_INTERFACE ) print "<p><a class='btn btn-default' href=\"javascript:parent.location.href = 'index_interface2.php?outcome=1&endcase=endcase'\">" . $des[0]['description'] . "</a></p>";
|
||||
print "<p><a class='btn btn-default'";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=2&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=2');\">";
|
||||
print $des[1]['description'] . "</a></p>";
|
||||
if ( ALTERNATE_INTERFACE ) print "<p><a class='btn btn-default' href=\"javascript:parent.location.href = 'index_interface2.php?outcome=3&endcase=endcase'\">" . $des[2]['description'] . "</a></p>";
|
||||
print "</div></div>";
|
||||
|
||||
print "<div class='panel panel-info'><div class='panel-heading'><t class='panel-title'>" . T_("Contacted") . "</t></div>
|
||||
<div class='panel-body' style='padding:10px;'>";
|
||||
if (in_array(8,$outcomes)){
|
||||
print "<p><a class='btn btn-default' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=8');\">";
|
||||
print $des[4]['description'] . "</a></p>"; }
|
||||
if (in_array(6,$outcomes)){
|
||||
print "<p><a class='btn btn-default' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=6&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=6');\">";
|
||||
print $des[3]['description'] . "</a></p>"; }
|
||||
if (in_array(17,$outcomes)){
|
||||
print "<p><a class='btn btn-default' title = \"" . T_("No eligible respondent (person never available on this number)") . "\"";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=17&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=17');\">";
|
||||
print $des[6]['description'] . " * </a></p>"; }
|
||||
if (in_array(18,$outcomes)){
|
||||
print "<p><a class='btn btn-default' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=18&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=18');\">";
|
||||
print $des[7]['description'] . "</a></p>"; }
|
||||
if (in_array(31,$outcomes)){
|
||||
print "<p><a class='btn btn-default' title = \"" . T_("Non contact (person not currently available on this number: no appointment made)") . "\"";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=31&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=31');\">";
|
||||
print $des[9]['description'] . " * </a></p>"; }
|
||||
if (in_array(30,$outcomes)){
|
||||
print "<p><a class='btn btn-default' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=30&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=30');\">";
|
||||
print $des[8]['description'] . "</a></p>"; }
|
||||
if (in_array(16,$outcomes))
|
||||
print "<p><a class='btn btn-default' href=\"rs_business.php\">" . $des[5]['description'] . "</a></p>";
|
||||
if (in_array(23,$outcomes) || in_array(24,$outcomes) || in_array(29,$outcomes))
|
||||
print "<p><a class='btn btn-default' href=\"rs_answeringmachine.php\">" . T_("Answering machine") . "</a></p>";
|
||||
print "</div></div>";
|
||||
print "</div>";
|
||||
|
||||
print "<div class=\"col-sm-7 \"><h3 class='text-primary'>" . T_("Respondent Selection") . " - " . T_("Introduction") . "</h3>";
|
||||
//display introduction text
|
||||
$sql = "SELECT rs_intro,rs_project_intro,rs_callback
|
||||
FROM questionnaire
|
||||
WHERE questionnaire_id = '$questionnaire_id'";
|
||||
|
||||
$r = $db->GetRow($sql);
|
||||
if (!empty($r['rs_intro'])) print "<div class='rstext well rs'>" . template_replace($r['rs_intro'],$operator_id,$case_id) . "</div>";
|
||||
print "</div>";
|
||||
|
||||
// display continue
|
||||
print "<div class=\"col-sm-7 text-right\" style=\"margin-top: 50px;\">";
|
||||
print "<p><a class=\"btn btn-lg btn-primary\" href=\"";
|
||||
if (limesurvey_percent_complete($case_id) == false){
|
||||
if(empty($r['rs_project_intro'])) { //If nothing is specified as a project introduction, skip straight to questionnaire
|
||||
print(get_limesurvey_url($operator_id)); }
|
||||
else print "rs_project_intro.php";
|
||||
}
|
||||
else {
|
||||
if(empty($r['rs_callback'])) { //If nothing is specified as a callback screen, skip straight to questionnaire
|
||||
print(get_limesurvey_url($operator_id)); }
|
||||
else print "rs_callback.php";
|
||||
}
|
||||
print "\">" . T_("Yes - Continue") . "</a></p>";
|
||||
print "</div>";
|
||||
|
||||
if (limesurvey_percent_complete($case_id) == false)
|
||||
{
|
||||
if(empty($r['rs_project_intro']))
|
||||
{
|
||||
//If nothing is specified as a project introduction, skip straight to questionnaire
|
||||
?>
|
||||
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?>
|
||||
<p class='rsoption'><a href="rs_project_intro.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
} else {
|
||||
if(empty($r['rs_callback']))
|
||||
{
|
||||
//If nothing is specified as a callback screen, skip straight to questionnaire
|
||||
?>
|
||||
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?>
|
||||
<p class='rsoption'><a href="rs_callback.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
<p class='rsoption'><a href="rs_business.php"><?php echo T_("Business number"); ?></a></p>
|
||||
<p class='rsoption'><a href="rs_answeringmachine.php"><?php echo T_("Answering machine"); ?></a></p>
|
||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=2');"><?php echo T_("End call with outcome: No answer (ring out or busy) "); ?></a></p>
|
||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=18');"><?php echo T_("End call with outcome: Accidental hang up"); ?></a></p>
|
||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=6');"><?php echo T_("End call with outcome: Refusal by unknown person"); ?></a></p>
|
||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=8');"><?php echo T_("End call with outcome: Refusal by respondent"); ?></a></p>
|
||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=17');"><?php echo T_("End call with outcome: No eligible respondent (person never available on this number)"); ?></a></p>
|
||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=31');"><?php echo T_("End call with outcome: Non contact (person not currently available on this number: no appointment made)"); ?></a></p>
|
||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=30');"><?php echo T_("End call with outcome: Out of sample (already completed in another mode)"); ?></a></p>
|
||||
<?php
|
||||
|
||||
xhtml_foot();
|
||||
|
||||
|
||||
@@ -1,144 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Respondent selection introduction
|
||||
*
|
||||
*
|
||||
* This file is part of queXS
|
||||
*
|
||||
* queXS is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* queXS is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with queXS; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*
|
||||
* @author Adam Zammit <adam.zammit@acspri.org.au>
|
||||
* @copyright Australian Consortium for Social and Political Research Inc 2007,2008
|
||||
* @package queXS
|
||||
* @subpackage user
|
||||
* @link http://www.acspri.org.au/ queXS was writen for Australian Consortium for Social and Political Research Incorporated (ACSPRI)
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Configuration file
|
||||
*/
|
||||
include ("config.inc.php");
|
||||
|
||||
/**
|
||||
* Database file
|
||||
*/
|
||||
include ("db.inc.php");
|
||||
|
||||
/**
|
||||
* Authentication
|
||||
*/
|
||||
require ("auth-interviewer.php");
|
||||
|
||||
|
||||
/**
|
||||
* XHTML functions
|
||||
*/
|
||||
include ("functions/functions.xhtml.php");
|
||||
|
||||
/**
|
||||
* Operator functions
|
||||
*/
|
||||
include ("functions/functions.operator.php");
|
||||
|
||||
/**
|
||||
* Limesurvey functions
|
||||
*/
|
||||
include ("functions/functions.limesurvey.php");
|
||||
|
||||
$js = array("js/popup.js","include/jquery/jquery-1.4.2.min.js","include/jquery-ui/jquery-ui.min.js");
|
||||
|
||||
if (AUTO_LOGOUT_MINUTES !== false)
|
||||
{
|
||||
$js[] = "js/childnap.js";
|
||||
}
|
||||
|
||||
|
||||
xhtml_head(T_("Respondent Selection - Introduction"),false,array("include/bootstrap/css/bootstrap.min.css","css/rs.css","css/rs.css","include/jquery-ui/jquery-ui.min.css"), $js);
|
||||
|
||||
$operator_id = get_operator_id();
|
||||
$case_id = get_case_id($operator_id);
|
||||
$questionnaire_id = get_questionnaire_id($operator_id);
|
||||
|
||||
//display outcomes
|
||||
?>
|
||||
<div class="col-sm-3 text-danger">
|
||||
<h4><?php echo T_("End call with outcome:"); ?></h4>
|
||||
<ul class="" style="padding: 0 20px;">
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=1&endcase=endcase'"><?php echo T_("Not attempted or worked"); ?></a></p></ul>
|
||||
<ul class="panel-body" style="padding: 0 20px;"><b><?php echo T_("Not Contacted");?></b>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=2&endcase=endcase'"><?php echo T_("No answer (ring out or busy) "); ?></a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=3&endcase=endcase'"><?php echo T_("Technical phone problems"); ?></a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=18&endcase=endcase'"><?php echo T_("Accidental hang up"); ?></a></p></ul>
|
||||
<ul class="panel-body" style="padding: 0 20px;"><b><?php echo T_("Contacted");?></b>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'"><?php echo T_("Refusal by respondent"); ?></a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=6&endcase=endcase'"><?php echo T_("Refusal by unknown person"); ?></a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=17&endcase=endcase'" title = "<?php echo T_("No eligible respondent (person never available on this number)"); ?>" ><?php echo T_("No eligible respondent"); ?> * </a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=31&endcase=endcase'" title ="<?php echo T_("Non contact (person not currently available on this number: no appointment made)"); ?>" ><?php echo T_("Non contact"); ?> * </a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="javascript:parent.location.href = 'index_interface2.php?outcome=30&endcase=endcase'"><?php echo T_("Out of sample (already completed in another mode)"); ?></a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="rs_business_interface2.php"><?php echo T_("Business number"); ?></a></p>
|
||||
<p class=''><a class="btn btn-default text-danger" href="rs_answeringmachine_interface2.php"><?php echo T_("Answering machine"); ?></a></p></ul>
|
||||
</div>
|
||||
<?php
|
||||
//display introduction text
|
||||
$sql = "SELECT rs_intro,rs_project_intro,rs_callback
|
||||
FROM questionnaire
|
||||
WHERE questionnaire_id = '$questionnaire_id'";
|
||||
|
||||
$r = $db->GetRow($sql);
|
||||
print "</br><div class=\"col-sm-7 rs\">";
|
||||
print "<p class='rstext'>". template_replace($r['rs_intro'],$operator_id,$case_id) . "</p>";
|
||||
print "</div>";
|
||||
|
||||
// display continue
|
||||
print "<div class=\"col-sm-2 \" style=\"margin-top: 50px;\">";
|
||||
if (limesurvey_percent_complete($case_id) == false)
|
||||
{
|
||||
if(empty($r['rs_project_intro']))
|
||||
{
|
||||
//If nothing is specified as a project introduction, skip straight to questionnaire
|
||||
?>
|
||||
<p class=''><a class="btn btn-lg btn-primary col-sm-offset-1" href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?>
|
||||
<p class=''><a class="btn btn-primary" href="rs_project_intro_interface2.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
} else {
|
||||
if(empty($r['rs_callback']))
|
||||
{
|
||||
//If nothing is specified as a callback screen, skip straight to questionnaire
|
||||
?>
|
||||
<p class=''><a class="btn btn-primary" href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?>
|
||||
<p class=''><a class="btn btn-primary" href="rs_callback_interface2.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
print "</div>";
|
||||
|
||||
xhtml_foot();
|
||||
|
||||
|
||||
?>
|
||||
@@ -73,15 +73,10 @@ $sql = "SELECT rs_project_intro
|
||||
|
||||
$r = $db->GetRow($sql);
|
||||
|
||||
if (!empty($r['rs_project_intro'])) print "<p class='rstext well'>" . template_replace($r['rs_project_intro'],$operator_id,$case_id) . "</p>";
|
||||
if (!empty($r['rs_project_intro'])) print "<div class='rstext well rs'>" . template_replace($r['rs_project_intro'],$operator_id,$case_id) . "</div>";
|
||||
|
||||
print "<div class=' '>
|
||||
<div class='col-lg-2'><p class=''><a class='btn btn-default'";
|
||||
|
||||
//to remove after rs_intro and rs_intro_interface2 merging //
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"rs_intro_interface2.php\""; else print "href=\"rs_intro.php\"";
|
||||
|
||||
print ">" . T_("Go Back") . "</a></p></div>";
|
||||
<div class='col-lg-2'><p><a class='btn btn-default' href=\"rs_intro.php\" >" . T_("Go Back") . "</a></p></div>";
|
||||
|
||||
if ($questionnaire_id){
|
||||
//filter displayed outcomes
|
||||
@@ -92,31 +87,31 @@ print "<div class=' '>
|
||||
translate_array($des,array("description"));
|
||||
|
||||
print "<div class='col-lg-6'>
|
||||
<p class=''><h4 class=''>" . T_("End call with outcome:") . "</h4></p>";
|
||||
<p><h4 class=''>" . T_("End call with outcome:") . "</h4></p>";
|
||||
|
||||
if (in_array(8,$outcomes)){
|
||||
print "<p class=''><a class='btn btn-primary' ";
|
||||
print "<p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=29');\">";
|
||||
print $des[0]['description'] . "</a></p>";
|
||||
}
|
||||
|
||||
if (in_array(17,$outcomes)){
|
||||
print "<p class=''><a class='btn btn-primary' ";
|
||||
print "<p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=17&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=23');\">";
|
||||
print $des[1]['description'] . "</a></p>";
|
||||
}
|
||||
|
||||
if (in_array(30,$outcomes)){
|
||||
print "<p class=''><a class='btn btn-primary' ";
|
||||
print "<p><a class='btn btn-primary' ";
|
||||
if ( ALTERNATE_INTERFACE ) print "href=\"javascript:parent.location.href = 'index_interface2.php?outcome=30&endcase=endcase'\">";
|
||||
else print "href=\"javascript:parent.poptastic('call.php?defaultoutcome=24');\">";
|
||||
print $des[2]['description'] . "</a></p>";
|
||||
}
|
||||
print "</div>";
|
||||
}
|
||||
print "<div class='col-lg-4'><p class=''><a class=\"btn btn-lg btn-primary\" href=\"" . (get_limesurvey_url($operator_id)) . "\">" . T_("Yes - Continue") . "</a></p></div>";
|
||||
print "<div class='col-lg-4'><p><a class=\"btn btn-lg btn-primary\" href=\"" . (get_limesurvey_url($operator_id)) . "\">" . T_("Yes - Continue") . "</a></p></div>";
|
||||
print "</div>";
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user