mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Replaced short tags with long ones
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Create an appointment for the currently assigned case
|
* Create an appointment for the currently assigned case
|
||||||
*
|
*
|
||||||
@@ -129,12 +129,12 @@ if(isset($_GET['respondent_id']) && $_GET['respondent_id'] == 0)
|
|||||||
{
|
{
|
||||||
//ability to create a new one
|
//ability to create a new one
|
||||||
?>
|
?>
|
||||||
<p><? echo T_("Create new respondent:"); ?></p>
|
<p><?php echo T_("Create new respondent:"); ?></p>
|
||||||
<form id="addRespondent" method="post" action="">
|
<form id="addRespondent" method="post" action="">
|
||||||
<? display_respondent_form(); ?>
|
<?php display_respondent_form(); ?>
|
||||||
<p><input type="submit" value="<? echo T_("Add this respondent"); ?>"/></p>
|
<p><input type="submit" value="<?php echo T_("Add this respondent"); ?>"/></p>
|
||||||
</form>
|
</form>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else if(isset($_GET['respondent_id']))
|
else if(isset($_GET['respondent_id']))
|
||||||
{
|
{
|
||||||
@@ -179,18 +179,18 @@ else if(isset($_GET['respondent_id']))
|
|||||||
{
|
{
|
||||||
//ability to add a new one
|
//ability to add a new one
|
||||||
?>
|
?>
|
||||||
<p><? echo T_("Add new phone number (with area code, eg 0398761234):"); ?></p>
|
<p><?php echo T_("Add new phone number (with area code, eg 0398761234):"); ?></p>
|
||||||
<form id="addPhone" method="get" action="">
|
<form id="addPhone" method="get" action="">
|
||||||
<p><input type="text" name="phonenum"/></p>
|
<p><input type="text" name="phonenum"/></p>
|
||||||
<p><input type="submit" value="<? echo T_("Add this phone number"); ?>"/>
|
<p><input type="submit" value="<?php echo T_("Add this phone number"); ?>"/>
|
||||||
<input type="hidden" name="start" value="<? print $_GET['start']; ?>"/>
|
<input type="hidden" name="start" value="<?php print $_GET['start']; ?>"/>
|
||||||
<input type="hidden" name="end" value="<? print $_GET['end']; ?>"/>
|
<input type="hidden" name="end" value="<?php print $_GET['end']; ?>"/>
|
||||||
<input type="hidden" name="d" value="<? print $day; ?>"/>
|
<input type="hidden" name="d" value="<?php print $day; ?>"/>
|
||||||
<input type="hidden" name="m" value="<? print $month; ?>"/>
|
<input type="hidden" name="m" value="<?php print $month; ?>"/>
|
||||||
<input type="hidden" name="y" value="<? print $year; ?>"/>
|
<input type="hidden" name="y" value="<?php print $year; ?>"/>
|
||||||
<input type="hidden" name="respondent_id" value="<? print $respondent_id; ?>"/></p>
|
<input type="hidden" name="respondent_id" value="<?php print $respondent_id; ?>"/></p>
|
||||||
</form>
|
</form>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -201,20 +201,20 @@ else if(isset($_GET['respondent_id']))
|
|||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p><? echo T_("Appointment:"); ?></p>
|
<p><?php echo T_("Appointment:"); ?></p>
|
||||||
<form id="appointment" method="post" action="">
|
<form id="appointment" method="post" action="">
|
||||||
<? print "<p>" . T_("Accept appointment from ") .convert_time($_GET['start']).T_(" till ").convert_time($_GET['end']).T_(" on ") . "$day/$month/$year? " . T_("on") . " $phonenum </p>"; ?>
|
<?php print "<p>" . T_("Accept appointment from ") .convert_time($_GET['start']).T_(" till ").convert_time($_GET['end']).T_(" on ") . "$day/$month/$year? " . T_("on") . " $phonenum </p>"; ?>
|
||||||
<p>
|
<p>
|
||||||
<input type="hidden" name="start" value="<? print $_GET['start']; ?>"/>
|
<input type="hidden" name="start" value="<?php print $_GET['start']; ?>"/>
|
||||||
<input type="hidden" name="end" value="<? print $_GET['end']; ?>"/>
|
<input type="hidden" name="end" value="<?php print $_GET['end']; ?>"/>
|
||||||
<input type="hidden" name="day" value="<? print $day; ?>"/>
|
<input type="hidden" name="day" value="<?php print $day; ?>"/>
|
||||||
<input type="hidden" name="month" value="<? print $month; ?>"/>
|
<input type="hidden" name="month" value="<?php print $month; ?>"/>
|
||||||
<input type="hidden" name="year" value="<? print $year; ?>"/>
|
<input type="hidden" name="year" value="<?php print $year; ?>"/>
|
||||||
<input type="hidden" name="respondent_id" value="<? print $respondent_id; ?>"/>
|
<input type="hidden" name="respondent_id" value="<?php print $respondent_id; ?>"/>
|
||||||
<input type="hidden" name="contact_phone_id" value="<? print $contact_phone_id; ?>"/>
|
<input type="hidden" name="contact_phone_id" value="<?php print $contact_phone_id; ?>"/>
|
||||||
<input type="submit" value="Make appointment"/></p>
|
<input type="submit" value="Make appointment"/></p>
|
||||||
</form>
|
</form>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display appointments for this case and their outcomes if any
|
* Display appointments for this case and their outcomes if any
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Update case availability
|
* Update case availability
|
||||||
*
|
*
|
||||||
|
|||||||
2
call.php
2
call.php
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Popup screen to manage calling and hanging up and assigning outcomes to calls
|
* Popup screen to manage calling and hanging up and assigning outcomes to calls
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Popup screen to manage calling and hanging up and assigning outcomes to calls
|
* Popup screen to manage calling and hanging up and assigning outcomes to calls
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display a list of calls and outcomes for this operator over time
|
* Display a list of calls and outcomes for this operator over time
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display a list of calls and outcomes for this case
|
* Display a list of calls and outcomes for this case
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display notes for this case and the ability to add notes
|
* Display notes for this case and the ability to add notes
|
||||||
*
|
*
|
||||||
@@ -63,12 +63,12 @@ if (isset($_GET['add']))
|
|||||||
?>
|
?>
|
||||||
<form method="post" action="?">
|
<form method="post" action="?">
|
||||||
<p>
|
<p>
|
||||||
<input type="text" class="textclass" name="note" id="note"/><input class="submitclass" type="submit" name="submit" value="<? echo T_("Add note"); ?>"/>
|
<input type="text" class="textclass" name="note" id="note"/><input class="submitclass" type="submit" name="submit" value="<?php echo T_("Add note"); ?>"/>
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
<p><a href="?"><? echo T_("Go back"); ?></a></p>
|
<p><a href="?"><?php echo T_("Go back"); ?></a></p>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Default Configuration file
|
* Default Configuration file
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Configuration file
|
* Configuration file
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Configuration file
|
* Configuration file
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display sample details of respondent
|
* Display sample details of respondent
|
||||||
*
|
*
|
||||||
@@ -86,12 +86,12 @@ if (isset($_GET['respondent_id']) && $_GET['respondent_id'] == 0)
|
|||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<form method="post" action="?">
|
<form method="post" action="?">
|
||||||
<? display_respondent_form(false,$case_id); ?>
|
<?php display_respondent_form(false,$case_id); ?>
|
||||||
<div class="text"><input type='submit' name='submit' id='submit' value='<? echo T_("Add respondent"); ?>'/></div>
|
<div class="text"><input type='submit' name='submit' id='submit' value='<?php echo T_("Add respondent"); ?>'/></div>
|
||||||
</form>
|
</form>
|
||||||
<div><a href="?"><? echo T_("Go back"); ?></a></div>
|
<div><a href="?"><?php echo T_("Go back"); ?></a></div>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Database configuration file
|
* Database configuration file
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display the end work screen to the operator
|
* Display the end work screen to the operator
|
||||||
*
|
*
|
||||||
|
|||||||
124
index.php
124
index.php
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display the main page including all panels and tabs
|
* Display the main page including all panels and tabs
|
||||||
*
|
*
|
||||||
@@ -133,17 +133,17 @@ print $script;
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<div id="casefunctions" class="header">
|
<div id="casefunctions" class="header">
|
||||||
<div class='box'><a href="javascript:poptastic('call.php?end=end');"><? echo T_("End"); ?></a></div>
|
<div class='box'><a href="javascript:poptastic('call.php?end=end');"><?php echo T_("End"); ?></a></div>
|
||||||
<div class='box'><a href="javascript:poptastic('appointment.php');"><? echo T_("Appointment"); ?></a></div>
|
<div class='box'><a href="javascript:poptastic('appointment.php');"><?php echo T_("Appointment"); ?></a></div>
|
||||||
<div class='box important'><a href="javascript:poptastic('call.php');"><? echo T_("Call/Hangup"); ?></a></div>
|
<div class='box important'><a href="javascript:poptastic('call.php');"><?php echo T_("Call/Hangup"); ?></a></div>
|
||||||
<div class='box'><a href="javascript:poptastic('supervisor.php');"><? echo T_("Supervisor"); ?></a></div>
|
<div class='box'><a href="javascript:poptastic('supervisor.php');"><?php echo T_("Supervisor"); ?></a></div>
|
||||||
<div class='box' id='recbox'><a id='reclink' class='offline' href="javascript:poptastic('record.php?start=start');"><? echo T_("Start REC"); ?></a></div>
|
<div class='box' id='recbox'><a id='reclink' class='offline' href="javascript:poptastic('record.php?start=start');"><?php echo T_("Start REC"); ?></a></div>
|
||||||
<? if (HEADER_EXPANDER_MANUAL){ ?> <div class='headerexpand'><img id='headerexpandimage' src='./images/arrow-up-2.png' alt='<? echo T_('Arrow for expanding or contracting'); ?>'/></div> <? } ?>
|
<?php if (HEADER_EXPANDER_MANUAL){ ?> <div class='headerexpand'><img id='headerexpandimage' src='./images/arrow-up-2.png' alt='<?php echo T_('Arrow for expanding or contracting'); ?>'/></div> <?php } ?>
|
||||||
<div class='box'><a href='index.php?'><? echo T_("Restart"); ?></a></div>
|
<div class='box'><a href='index.php?'><?php echo T_("Restart"); ?></a></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="content" class="content">
|
<div id="content" class="content">
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
$case_id = get_case_id($operator_id,true);
|
$case_id = get_case_id($operator_id,true);
|
||||||
$ca = get_call_attempt($operator_id,true);
|
$ca = get_call_attempt($operator_id,true);
|
||||||
@@ -168,11 +168,11 @@ xhtml_object($data,"main-content");
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="respondent" class="header">
|
<div id="respondent" class="header">
|
||||||
<?xhtml_object("respondent.php","main-respondent");?>
|
<?php xhtml_object("respondent.php","main-respondent");?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="qstatus" class="header">
|
<div id="qstatus" class="header">
|
||||||
<?xhtml_object("status.php","main-qstatus");?>
|
<?php xhtml_object("status.php","main-qstatus");?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@@ -181,92 +181,92 @@ xhtml_object($data,"main-content");
|
|||||||
|
|
||||||
<div class="tabber" id="tab-main">
|
<div class="tabber" id="tab-main">
|
||||||
|
|
||||||
<? if (TAB_CASENOTES) { ?>
|
<?php if (TAB_CASENOTES) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'casenotes' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'casenotes' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'casenotes' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'casenotes' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Notes"); ?></h2>
|
<h2><?php echo T_("Notes"); ?></h2>
|
||||||
<div id="div-casenotes" class="tabberdiv"><?xhtml_object("casenote.php","main-casenotes");?></div>
|
<div id="div-casenotes" class="tabberdiv"><?php xhtml_object("casenote.php","main-casenotes");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
<? if ($availability) { ?>
|
<?php if ($availability) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'availability' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'availability' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'availability' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'availability' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Availability"); ?></h2>
|
<h2><?php echo T_("Availability"); ?></h2>
|
||||||
<div id="div-casenotes" class="tabberdiv"><?xhtml_object("availability.php","main-casenotes");?></div>
|
<div id="div-casenotes" class="tabberdiv"><?php xhtml_object("availability.php","main-casenotes");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_CONTACTDETAILS) { ?>
|
<?php if (TAB_CONTACTDETAILS) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'contactdetails' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'contactdetails' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'contactdetails' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'contactdetails' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Contact details"); ?></h2>
|
<h2><?php echo T_("Contact details"); ?></h2>
|
||||||
<div id="div-contactdetails" class="tabberdiv"><?xhtml_object("contactdetails.php","main-contactdetails");?></div>
|
<div id="div-contactdetails" class="tabberdiv"><?php xhtml_object("contactdetails.php","main-contactdetails");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_CALLLIST) { ?>
|
<?php if (TAB_CALLLIST) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'calllist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'calllist' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'calllist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'calllist' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Call history"); ?></h2>
|
<h2><?php echo T_("Call history"); ?></h2>
|
||||||
<div id="div-calllist" class="tabberdiv"><?xhtml_object("calllist.php","main-calllist");?></div>
|
<div id="div-calllist" class="tabberdiv"><?php xhtml_object("calllist.php","main-calllist");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_SHIFTS) { ?>
|
<?php if (TAB_SHIFTS) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'shifts' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'shifts' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'shifts' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'shifts' && $appointment))
|
||||||
print "tabbertabdefault"; ?>" id="tab-shifts">
|
print "tabbertabdefault"; ?>" id="tab-shifts">
|
||||||
<h2><? echo T_("Shifts"); ?></h2>
|
<h2><?php echo T_("Shifts"); ?></h2>
|
||||||
<div id="div-shifts" class="tabberdiv"><?xhtml_object("shifts.php","main-shifts");?></div>
|
<div id="div-shifts" class="tabberdiv"><?php xhtml_object("shifts.php","main-shifts");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_APPOINTMENTLIST) { ?>
|
<?php if (TAB_APPOINTMENTLIST) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'appointmentlist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'appointmentlist' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'appointmentlist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'appointmentlist' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Appointments"); ?></h2>
|
<h2><?php echo T_("Appointments"); ?></h2>
|
||||||
<div id="div-appointmentlist" class="tabberdiv"><?xhtml_object("appointmentlist.php","main-appointmentlist");?></div>
|
<div id="div-appointmentlist" class="tabberdiv"><?php xhtml_object("appointmentlist.php","main-appointmentlist");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_PERFORMANCE) { ?>
|
<?php if (TAB_PERFORMANCE) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'performance' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'performance' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'performance' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'performance' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Performance"); ?></h2>
|
<h2><?php echo T_("Performance"); ?></h2>
|
||||||
<div id="div-performance" class="tabberdiv"><?xhtml_object("performance.php","main-performance");?></div>
|
<div id="div-performance" class="tabberdiv"><?php xhtml_object("performance.php","main-performance");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
<? if (TAB_CALLHISTORY) { ?>
|
<?php if (TAB_CALLHISTORY) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'callhistory' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'callhistory' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'callhistory' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'callhistory' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Work history"); ?></h2>
|
<h2><?php echo T_("Work history"); ?></h2>
|
||||||
<div id="div-callhistory" class="tabberdiv"><?xhtml_object("callhistory.php","main-callhistory");?></div>
|
<div id="div-callhistory" class="tabberdiv"><?php xhtml_object("callhistory.php","main-callhistory");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
<? if (TAB_PROJECTINFO) { ?>
|
<?php if (TAB_PROJECTINFO) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'projectinfo' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'projectinfo' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'projectinfo' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'projectinfo' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Project information"); ?></h2>
|
<h2><?php echo T_("Project information"); ?></h2>
|
||||||
<div id="div-projectinfo" class="tabberdiv"><?xhtml_object("project_info.php","main-projectinfo");?></div>
|
<div id="div-projectinfo" class="tabberdiv"><?php xhtml_object("project_info.php","main-projectinfo");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_INFO) { ?>
|
<?php if (TAB_INFO) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'info' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'info' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'info' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'info' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Info"); ?></h2>
|
<h2><?php echo T_("Info"); ?></h2>
|
||||||
<div id="div-info" class="tabberdiv"><?xhtml_object("info.php","main-info");?></div>
|
<div id="div-info" class="tabberdiv"><?php xhtml_object("info.php","main-info");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -274,7 +274,7 @@ xhtml_object($data,"main-content");
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display the main page including all panels and tabs
|
* Display the main page including all panels and tabs
|
||||||
*
|
*
|
||||||
@@ -198,15 +198,15 @@ print $script;
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<ul id="casefunctions" class="header">
|
<ul id="casefunctions" class="header">
|
||||||
<li id="item_1"><a href="javascript:poptastic('call_interface2.php');"><? echo T_("Outcome"); ?> <img src="css/images/play.jpg" /></a></li>
|
<li id="item_1"><a href="javascript:poptastic('call_interface2.php');"><?php echo T_("Outcome"); ?> <img src="css/images/play.jpg" /></a></li>
|
||||||
<li id="item_2_e" class="item_2_full_height"><a href="javascript:poptastic('appointment.php');"><? echo T_("Appointment"); ?> <img src="css/images/plius.jpg" /></a></li>
|
<li id="item_2_e" class="item_2_full_height"><a href="javascript:poptastic('appointment.php');"><?php echo T_("Appointment"); ?> <img src="css/images/plius.jpg" /></a></li>
|
||||||
<li id="item_3_e" class="item_3_full_height"><a href="?endwork=endwork"><? echo T_("End work"); ?> <img src="css/images/end.jpg" /></a></li>
|
<li id="item_3_e" class="item_3_full_height"><a href="?endwork=endwork"><?php echo T_("End work"); ?> <img src="css/images/end.jpg" /></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="content" class="content">
|
<div id="content" class="content">
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
$case_id = get_case_id($operator_id,true);
|
$case_id = get_case_id($operator_id,true);
|
||||||
$ca = get_call_attempt($operator_id,true);
|
$ca = get_call_attempt($operator_id,true);
|
||||||
@@ -278,8 +278,8 @@ xhtml_object($data,"main-content");
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="qstatus" class="header">
|
<div id="qstatus" class="header">
|
||||||
<?xhtml_object("status_interface2.php","main-qstatus");?>
|
<?php xhtml_object("status_interface2.php","main-qstatus");?>
|
||||||
<? if (HEADER_EXPANDER_MANUAL){ ?> <div class='headerexpand'><img id='headerexpandimage' src='./images/arrow-up-2.jpg' alt='<? echo T_('Arrow for expanding or contracting'); ?>'/></div> <? } ?>
|
<?php if (HEADER_EXPANDER_MANUAL){ ?> <div class='headerexpand'><img id='headerexpandimage' src='./images/arrow-up-2.jpg' alt='<?php echo T_('Arrow for expanding or contracting'); ?>'/></div> <?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@@ -288,82 +288,82 @@ xhtml_object($data,"main-content");
|
|||||||
|
|
||||||
<div class="tabber" id="tab-main">
|
<div class="tabber" id="tab-main">
|
||||||
|
|
||||||
<? if (TAB_CASENOTES) { ?>
|
<?php if (TAB_CASENOTES) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'casenotes' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'casenotes' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'casenotes' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'casenotes' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Notes"); ?></h2>
|
<h2><?php echo T_("Notes"); ?></h2>
|
||||||
<div id="div-casenotes" class="tabberdiv"><?xhtml_object("casenote.php","main-casenotes");?></div>
|
<div id="div-casenotes" class="tabberdiv"><?php xhtml_object("casenote.php","main-casenotes");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
<? if (TAB_CONTACTDETAILS) { ?>
|
<?php if (TAB_CONTACTDETAILS) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'contactdetails' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'contactdetails' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'contactdetails' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'contactdetails' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Contact details"); ?></h2>
|
<h2><?php echo T_("Contact details"); ?></h2>
|
||||||
<div id="div-contactdetails" class="tabberdiv"><?xhtml_object("contactdetails.php","main-contactdetails");?></div>
|
<div id="div-contactdetails" class="tabberdiv"><?php xhtml_object("contactdetails.php","main-contactdetails");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_CALLLIST) { ?>
|
<?php if (TAB_CALLLIST) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'calllist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'calllist' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'calllist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'calllist' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Call history"); ?></h2>
|
<h2><?php echo T_("Call history"); ?></h2>
|
||||||
<div id="div-calllist" class="tabberdiv"><?xhtml_object("calllist.php","main-calllist");?></div>
|
<div id="div-calllist" class="tabberdiv"><?php xhtml_object("calllist.php","main-calllist");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_SHIFTS) { ?>
|
<?php if (TAB_SHIFTS) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'shifts' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'shifts' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'shifts' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'shifts' && $appointment))
|
||||||
print "tabbertabdefault"; ?>" id="tab-shifts">
|
print "tabbertabdefault"; ?>" id="tab-shifts">
|
||||||
<h2><? echo T_("Shifts"); ?></h2>
|
<h2><?php echo T_("Shifts"); ?></h2>
|
||||||
<div id="div-shifts" class="tabberdiv"><?xhtml_object("shifts.php","main-shifts");?></div>
|
<div id="div-shifts" class="tabberdiv"><?php xhtml_object("shifts.php","main-shifts");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_APPOINTMENTLIST) { ?>
|
<?php if (TAB_APPOINTMENTLIST) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'appointmentlist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'appointmentlist' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'appointmentlist' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'appointmentlist' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Appointments"); ?></h2>
|
<h2><?php echo T_("Appointments"); ?></h2>
|
||||||
<div id="div-appointmentlist" class="tabberdiv"><?xhtml_object("appointmentlist.php","main-appointmentlist");?></div>
|
<div id="div-appointmentlist" class="tabberdiv"><?php xhtml_object("appointmentlist.php","main-appointmentlist");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_PERFORMANCE) { ?>
|
<?php if (TAB_PERFORMANCE) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'performance' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'performance' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'performance' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'performance' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Performance"); ?></h2>
|
<h2><?php echo T_("Performance"); ?></h2>
|
||||||
<div id="div-performance" class="tabberdiv"><?xhtml_object("performance.php","main-performance");?></div>
|
<div id="div-performance" class="tabberdiv"><?php xhtml_object("performance.php","main-performance");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
<? if (TAB_CALLHISTORY) { ?>
|
<?php if (TAB_CALLHISTORY) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'callhistory' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'callhistory' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'callhistory' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'callhistory' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Work history"); ?></h2>
|
<h2><?php echo T_("Work history"); ?></h2>
|
||||||
<div id="div-callhistory" class="tabberdiv"><?xhtml_object("callhistory.php","main-callhistory");?></div>
|
<div id="div-callhistory" class="tabberdiv"><?php xhtml_object("callhistory.php","main-callhistory");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
<? if (TAB_PROJECTINFO) { ?>
|
<?php if (TAB_PROJECTINFO) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'projectinfo' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'projectinfo' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'projectinfo' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'projectinfo' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Project information"); ?></h2>
|
<h2><?php echo T_("Project information"); ?></h2>
|
||||||
<div id="div-projectinfo" class="tabberdiv"><?xhtml_object("project_info.php","main-projectinfo");?></div>
|
<div id="div-projectinfo" class="tabberdiv"><?php xhtml_object("project_info.php","main-projectinfo");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
<? if (TAB_INFO) { ?>
|
<?php if (TAB_INFO) { ?>
|
||||||
<div class="tabbertab <? if ((DEFAULT_TAB == 'info' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'info' && $appointment))
|
<div class="tabbertab <?php if ((DEFAULT_TAB == 'info' && !$appointment) || (DEFAULT_TAB_APPOINTMENT == 'info' && $appointment))
|
||||||
print "tabbertabdefault"; ?>">
|
print "tabbertabdefault"; ?>">
|
||||||
<h2><? echo T_("Info"); ?></h2>
|
<h2><?php echo T_("Info"); ?></h2>
|
||||||
<div id="div-info" class="tabberdiv"><?xhtml_object("info.php","main-info");?></div>
|
<div id="div-info" class="tabberdiv"><?php xhtml_object("info.php","main-info");?></div>
|
||||||
</div>
|
</div>
|
||||||
<? }?>
|
<?php }?>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -371,7 +371,7 @@ xhtml_object($data,"main-content");
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
2
info.php
2
info.php
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display information about this centre
|
* Display information about this centre
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Language configuration file
|
* Language configuration file
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display error message when no current call available
|
* Display error message when no current call available
|
||||||
*
|
*
|
||||||
@@ -51,8 +51,8 @@ if (AUTO_LOGOUT_MINUTES !== false)
|
|||||||
xhtml_head(T_("No call available"),true,array("css/table.css"),$js);
|
xhtml_head(T_("No call available"),true,array("css/table.css"),$js);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<h1><? echo T_("Please click on:") . " " . T_("Call/Hangup") . " " .T_("to display call script"); ?></h1>
|
<h1><?php echo T_("Please click on:") . " " . T_("Call/Hangup") . " " .T_("to display call script"); ?></h1>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display error message when no cases available
|
* Display error message when no cases available
|
||||||
*
|
*
|
||||||
@@ -65,10 +65,10 @@ xhtml_head(T_("No case available"),true,array("css/table.css"),$js);
|
|||||||
$operator_id = get_operator_id();
|
$operator_id = get_operator_id();
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<h1><? echo T_("There is no case currently available"); ?></h1>
|
<h1><?php echo T_("There is no case currently available"); ?></h1>
|
||||||
<h2><? echo T_("Reasons:"); ?></h2>
|
<h2><?php echo T_("Reasons:"); ?></h2>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* check for reasons why no case is displayed
|
* check for reasons why no case is displayed
|
||||||
@@ -85,13 +85,13 @@ $sql = "SELECT oq.questionnaire_id, q.description
|
|||||||
$rs = $db->GetAll($sql);
|
$rs = $db->GetAll($sql);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p><? echo T_("Assigned questionnaires:"); ?></p>
|
<p><?php echo T_("Assigned questionnaires:"); ?></p>
|
||||||
<?
|
<?php
|
||||||
if (!empty($rs))
|
if (!empty($rs))
|
||||||
xhtml_table($rs,array("questionnaire_id","description"),array(T_("ID"),T_("Description")));
|
xhtml_table($rs,array("questionnaire_id","description"),array(T_("ID"),T_("Description")));
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
?> <p class='error'><? echo T_("ERROR: No questionnaires assigned to you"); ?></p> <?
|
?> <p class='error'><?php echo T_("ERROR: No questionnaires assigned to you"); ?></p> <?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -109,13 +109,13 @@ $sql = "SELECT q.description, CONVERT_TZ(sh.start, 'UTC', o.Time_zone_name) as s
|
|||||||
$rs = $db->GetAll($sql);
|
$rs = $db->GetAll($sql);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p><? echo T_("Current shifts available:"); ?></p>
|
<p><?php echo T_("Current shifts available:"); ?></p>
|
||||||
<?
|
<?php
|
||||||
if (!empty($rs))
|
if (!empty($rs))
|
||||||
xhtml_table($rs,array("description","st","en"),array(T_("Questionnaire"),T_("Shift start"),T_("Shift end")));
|
xhtml_table($rs,array("description","st","en"),array(T_("Questionnaire"),T_("Shift start"),T_("Shift end")));
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
?> <p class='error'><? echo T_("ERROR: No shifts at this time"); ?></p> <?
|
?> <p class='error'><?php echo T_("ERROR: No shifts at this time"); ?></p> <?php
|
||||||
}
|
}
|
||||||
|
|
||||||
//call restrictions and outside times
|
//call restrictions and outside times
|
||||||
@@ -135,11 +135,11 @@ $sql = "SELECT count(*) as c
|
|||||||
$rs = $db->GetRow($sql);
|
$rs = $db->GetRow($sql);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p><? echo T_("Call restrictions:"); ?></p>
|
<p><?php echo T_("Call restrictions:"); ?></p>
|
||||||
<?
|
<?php
|
||||||
if ($rs['c'] == 0)
|
if ($rs['c'] == 0)
|
||||||
{
|
{
|
||||||
?> <p class='error'><? echo T_("ERROR: There are no cases available that fall within call restrictions"); ?></p> <?
|
?> <p class='error'><?php echo T_("ERROR: There are no cases available that fall within call restrictions"); ?></p> <?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -149,8 +149,8 @@ else
|
|||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p><? echo T_("Limesurvey links:"); ?></p>
|
<p><?php echo T_("Limesurvey links:"); ?></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
//no link to limesurvey
|
//no link to limesurvey
|
||||||
$sql = "SELECT q.lime_sid, q.description
|
$sql = "SELECT q.lime_sid, q.description
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display the performance of this operator
|
* Display the performance of this operator
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display information about this project
|
* Display information about this project
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Record calls using Asterisk (if enabled)
|
* Record calls using Asterisk (if enabled)
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display a list of respondents for this case, and the ability to add them if necessary
|
* Display a list of respondents for this case, and the ability to add them if necessary
|
||||||
*
|
*
|
||||||
@@ -90,12 +90,12 @@ if (isset($_GET['respondent_id']) && $_GET['respondent_id'] == 0)
|
|||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<form method="post" action="?">
|
<form method="post" action="?">
|
||||||
<? display_respondent_form(false,$case_id); ?>
|
<?php display_respondent_form(false,$case_id); ?>
|
||||||
<div><input type='submit' name='submit' id='submit' value='<? echo T_("Add respondent"); ?>'/></div>
|
<div><input type='submit' name='submit' id='submit' value='<?php echo T_("Add respondent"); ?>'/></div>
|
||||||
</form>
|
</form>
|
||||||
<div><a href="?"><? echo T_("Go back"); ?></a></div>
|
<div><a href="?"><?php echo T_("Go back"); ?></a></div>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Answering machine
|
* Respondent selection - Answering machine
|
||||||
*
|
*
|
||||||
@@ -78,18 +78,18 @@ else
|
|||||||
print "<p class='rstext'>" . T_("Do not leave a message, please hang up") . "</p>";
|
print "<p class='rstext'>" . T_("Do not leave a message, please hang up") . "</p>";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=29');"><? echo T_("End call with outcome: Business answering machine"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=29');"><?php echo T_("End call with outcome: Business answering machine"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
if ($leavemessage)
|
if ($leavemessage)
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=23');"><? echo T_("End call with outcome: Answering machine Message left"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=23');"><?php echo T_("End call with outcome: Answering machine Message left"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=24');"><? echo T_("End call with outcome: Answering machine No message left"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=24');"><?php echo T_("End call with outcome: Answering machine No message left"); ?></a></p>
|
||||||
<p class='rsoption'><a href="rs_intro.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Answering machine
|
* Respondent selection - Answering machine
|
||||||
*
|
*
|
||||||
@@ -78,18 +78,18 @@ else
|
|||||||
print "<p class='rstext'>" . T_("Do not leave a message, please hang up") . "</p>";
|
print "<p class='rstext'>" . T_("Do not leave a message, please hang up") . "</p>";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=29&endcase=endcase'"><? echo T_("End call with outcome: Business answering machine"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=29&endcase=endcase'"><?php echo T_("End call with outcome: Business answering machine"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
if ($leavemessage)
|
if ($leavemessage)
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=23&endcase=endcase'"><? echo T_("End call with outcome: Answering machine Message left"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=23&endcase=endcase'"><?php echo T_("End call with outcome: Answering machine Message left"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=24&endcase=endcase'"><? echo T_("End call with outcome: Answering machine No message left"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=24&endcase=endcase'"><?php echo T_("End call with outcome: Answering machine No message left"); ?></a></p>
|
||||||
<p class='rsoption'><a href="rs_intro_interface2.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro_interface2.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Business answers
|
* Respondent selection - Business answers
|
||||||
*
|
*
|
||||||
@@ -56,11 +56,11 @@ xhtml_head(T_("Respondent Selection - Business answers"),true,array("css/rs.css"
|
|||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p class='rstext'><? echo T_("Sorry to bother you, I have called the wrong number")?></p>
|
<p class='rstext'><?php echo T_("Sorry to bother you, I have called the wrong number")?></p>
|
||||||
|
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=16');"><? echo T_("End call with outcome: Business number"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=16');"><?php echo T_("End call with outcome: Business number"); ?></a></p>
|
||||||
<p class='rsoption'><a href="rs_intro.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Business answers
|
* Respondent selection - Business answers
|
||||||
*
|
*
|
||||||
@@ -56,11 +56,11 @@ xhtml_head(T_("Respondent Selection - Business answers"),true,array("css/rs.css"
|
|||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p class='rstext'><? echo T_("Sorry to bother you, I have called the wrong number")?></p>
|
<p class='rstext'><?php echo T_("Sorry to bother you, I have called the wrong number")?></p>
|
||||||
|
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=16&endcase=endcase'"><? echo T_("End call with outcome: Business number"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=16&endcase=endcase'"><?php echo T_("End call with outcome: Business number"); ?></a></p>
|
||||||
<p class='rsoption'><a href="rs_intro_interface2.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro_interface2.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Call back (respondent already started questionnaire)
|
* Respondent selection - Call back (respondent already started questionnaire)
|
||||||
*
|
*
|
||||||
@@ -84,10 +84,10 @@ print "<p class='rstext'>" . T_("You are: ") . round(limesurvey_percent_complete
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue where we left off"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue where we left off"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=8');"><? echo T_("End call with outcome: Refusal by respondent"); ?></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="rs_intro.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Call back (respondent already started questionnaire)
|
* Respondent selection - Call back (respondent already started questionnaire)
|
||||||
*
|
*
|
||||||
@@ -84,10 +84,10 @@ print "<p class='rstext'>" . T_("You are: ") . round(limesurvey_percent_complete
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue where we left off"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue where we left off"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'"><? echo T_("End call with outcome: Refusal by respondent"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'"><?php echo T_("End call with outcome: Refusal by respondent"); ?></a></p>
|
||||||
<p class='rsoption'><a href="rs_intro_interface2.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro_interface2.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
38
rs_intro.php
38
rs_intro.php
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection introduction
|
* Respondent selection introduction
|
||||||
*
|
*
|
||||||
@@ -89,41 +89,41 @@ if (limesurvey_percent_complete($case_id) == false)
|
|||||||
{
|
{
|
||||||
//If nothing is specified as a project introduction, skip straight to questionnaire
|
//If nothing is specified as a project introduction, skip straight to questionnaire
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="rs_project_intro.php"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="rs_project_intro.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(empty($r['rs_callback']))
|
if(empty($r['rs_callback']))
|
||||||
{
|
{
|
||||||
//If nothing is specified as a callback screen, skip straight to questionnaire
|
//If nothing is specified as a callback screen, skip straight to questionnaire
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="rs_callback.php"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="rs_callback.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="rs_business.php"><? echo T_("Business number"); ?></a></p>
|
<p class='rsoption'><a href="rs_business.php"><?php echo T_("Business number"); ?></a></p>
|
||||||
<p class='rsoption'><a href="rs_answeringmachine.php"><? echo T_("Answering machine"); ?></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');"><? 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=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');"><? echo T_("End call with outcome: Accidental hang up"); ?></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');"><? echo T_("End call with outcome: Refusal by unknown person"); ?></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');"><? echo T_("End call with outcome: Refusal by respondent"); ?></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');"><? 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=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');"><? 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=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');"><? echo T_("End call with outcome: Out of sample (already completed in another mode)"); ?></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();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection introduction
|
* Respondent selection introduction
|
||||||
*
|
*
|
||||||
@@ -89,41 +89,41 @@ if (limesurvey_percent_complete($case_id) == false)
|
|||||||
{
|
{
|
||||||
//If nothing is specified as a project introduction, skip straight to questionnaire
|
//If nothing is specified as a project introduction, skip straight to questionnaire
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="rs_project_intro_interface2.php"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="rs_project_intro_interface2.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(empty($r['rs_callback']))
|
if(empty($r['rs_callback']))
|
||||||
{
|
{
|
||||||
//If nothing is specified as a callback screen, skip straight to questionnaire
|
//If nothing is specified as a callback screen, skip straight to questionnaire
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="rs_callback_interface2.php"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="rs_callback_interface2.php"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="rs_business_interface2.php"><? echo T_("Business number"); ?></a></p>
|
<p class='rsoption'><a href="rs_business_interface2.php"><?php echo T_("Business number"); ?></a></p>
|
||||||
<p class='rsoption'><a href="rs_answeringmachine_interface2.php"><? echo T_("Answering machine"); ?></a></p>
|
<p class='rsoption'><a href="rs_answeringmachine_interface2.php"><?php echo T_("Answering machine"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=2&endcase=endcase'"><? echo T_("End call with outcome: No answer (ring out or busy) "); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=2&endcase=endcase'"><?php echo T_("End call with outcome: No answer (ring out or busy) "); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=18&endcase=endcase'"><? echo T_("End call with outcome: Accidental hang up"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=18&endcase=endcase'"><?php echo T_("End call with outcome: Accidental hang up"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=6&endcase=endcase'"><? echo T_("End call with outcome: Refusal by unknown person"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=6&endcase=endcase'"><?php echo T_("End call with outcome: Refusal by unknown person"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'"><? echo T_("End call with outcome: Refusal by respondent"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'"><?php echo T_("End call with outcome: Refusal by respondent"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=17&endcase=endcase'"><? echo T_("End call with outcome: No eligible respondent (person never available on this number)"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=17&endcase=endcase'"><?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.location.href = 'index_interface2.php?outcome=31&endcase=endcase'"><? 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.location.href = 'index_interface2.php?outcome=31&endcase=endcase'"><?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.location.href = 'index_interface2.php?outcome=30&endcase=endcase'"><? echo T_("End call with outcome: Out of sample (already completed in another mode)"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=30&endcase=endcase'"><?php echo T_("End call with outcome: Out of sample (already completed in another mode)"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Project End
|
* Respondent selection - Project End
|
||||||
*
|
*
|
||||||
@@ -90,8 +90,8 @@ if (!is_voip_enabled($operator_id) && AUTO_COMPLETE_OUTCOME)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=10');"><? echo T_("End call with outcome: Complete"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=10');"><?php echo T_("End call with outcome: Complete"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Project End
|
* Respondent selection - Project End
|
||||||
*
|
*
|
||||||
@@ -82,8 +82,8 @@ if (!is_voip_enabled($operator_id) && AUTO_COMPLETE_OUTCOME)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=10&endcase=endcase'"><? echo T_("End call with outcome: Complete"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=10&endcase=endcase'"><?php echo T_("End call with outcome: Complete"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Project Introduction
|
* Respondent selection - Project Introduction
|
||||||
*
|
*
|
||||||
@@ -76,15 +76,15 @@ print "<p class='rstext'>" . template_replace($r['rs_project_intro'],$operator_i
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
|
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=8');"><? echo T_("End call with outcome: Refusal by respondent"); ?></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');"><? echo T_("End call with outcome: No eligible respondent (person not available on this number)"); ?></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 not available on this number)"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=30');"><? echo T_("End call with outcome: Out of sample (already completed in another mode)"); ?></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>
|
||||||
|
|
||||||
<p class='rsoption'><a href="rs_intro.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Project Introduction
|
* Respondent selection - Project Introduction
|
||||||
*
|
*
|
||||||
@@ -76,15 +76,15 @@ print "<p class='rstext'>" . template_replace($r['rs_project_intro'],$operator_i
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<p class='rsoption'><a href="<? print(get_limesurvey_url($operator_id)); ?>"><? echo T_("Yes - Continue"); ?></a></p>
|
<p class='rsoption'><a href="<?php print(get_limesurvey_url($operator_id)); ?>"><?php echo T_("Yes - Continue"); ?></a></p>
|
||||||
|
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'"><? echo T_("End call with outcome: Refusal by respondent"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=8&endcase=endcase'"><?php echo T_("End call with outcome: Refusal by respondent"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=17&endcase=endcase'"><? echo T_("End call with outcome: No eligible respondent (person not available on this number)"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=17&endcase=endcase'"><?php echo T_("End call with outcome: No eligible respondent (person not available on this number)"); ?></a></p>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=30&endcase=endcase'"><? echo T_("End call with outcome: Out of sample (already completed in another mode)"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=30&endcase=endcase'"><?php echo T_("End call with outcome: Out of sample (already completed in another mode)"); ?></a></p>
|
||||||
|
|
||||||
<p class='rsoption'><a href="rs_intro_interface2.php"><? echo T_("Go Back"); ?></a></p>
|
<p class='rsoption'><a href="rs_intro_interface2.php"><?php echo T_("Go Back"); ?></a></p>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Respondent selection - Project End due to full quota
|
* Respondent selection - Project End due to full quota
|
||||||
*
|
*
|
||||||
@@ -69,14 +69,14 @@ print "<p class='rstext'>" . template_replace($_GET['message'],$operator_id,$cas
|
|||||||
if (ALTERNATE_INTERFACE && !is_voip_enabled($operator_id))
|
if (ALTERNATE_INTERFACE && !is_voip_enabled($operator_id))
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=32&endcase=endcase'"><? echo T_("End call with outcome: Quota filled"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.location.href = 'index_interface2.php?outcome=32&endcase=endcase'"><?php echo T_("End call with outcome: Quota filled"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=32');"><? echo T_("End call with outcome: Quota filled"); ?></a></p>
|
<p class='rsoption'><a href="javascript:parent.poptastic('call.php?defaultoutcome=32');"><?php echo T_("End call with outcome: Quota filled"); ?></a></p>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display the shifts for this case, if no case, show all shifts that the operator is assigned to
|
* Display the shifts for this case, if no case, show all shifts that the operator is assigned to
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display status of case
|
* Display status of case
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display status of case
|
* Display status of case
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Supervisor help functions
|
* Supervisor help functions
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
* Display the main page including all panels and tabs
|
* Display the main page including all panels and tabs
|
||||||
*
|
*
|
||||||
@@ -51,12 +51,12 @@ xhtml_head(T_("queXS"), false, array("css/index_interface2.css","css/tabber_inte
|
|||||||
?>
|
?>
|
||||||
<div id="header_line"></div>
|
<div id="header_line"></div>
|
||||||
<ul class="wait_wrapper">
|
<ul class="wait_wrapper">
|
||||||
<li class="wait_li_1"><a href="index_interface2.php"><? echo T_("Get a new case"); ?> <img src="css/images/play.jpg" /></a></li>
|
<li class="wait_li_1"><a href="index_interface2.php"><?php echo T_("Get a new case"); ?> <img src="css/images/play.jpg" /></a></li>
|
||||||
<li class="wait_li_2"><a href="endwork.php"><? echo T_("End work"); ?> <img src="css/images/end.jpg" /></a></li>
|
<li class="wait_li_2"><a href="endwork.php"><?php echo T_("End work"); ?> <img src="css/images/end.jpg" /></a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
xhtml_foot();
|
xhtml_foot();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user