mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Merged from McMasterReports branch
This commit is contained in:
@@ -1,71 +1,80 @@
|
||||
<?php
|
||||
/*
|
||||
* LimeSurvey
|
||||
* Copyright (C) 2007 The LimeSurvey Project Team / Carsten Schmitz
|
||||
* All rights reserved.
|
||||
* License: GNU/GPL License v2 or later, see LICENSE.php
|
||||
* LimeSurvey is free software. This version may have been modified pursuant
|
||||
* to the GNU General Public License, and as distributed it includes or
|
||||
* is derivative of works licensed under the GNU General Public License or
|
||||
* other free or open source software licenses.
|
||||
* See COPYRIGHT.php for copyright notices and details.
|
||||
*
|
||||
* $Id: listcolumn.php 4973 2008-06-01 14:07:01Z c_schmitz $
|
||||
*/
|
||||
|
||||
include_once("login_check.php");
|
||||
|
||||
sendcacheheaders();
|
||||
|
||||
|
||||
if (!isset($surveyid)) {$surveyid=returnglobal('sid');}
|
||||
if (!isset($column)) {$column=returnglobal('column');}
|
||||
if (!isset($order)) {$order=returnglobal('order');}
|
||||
if (!isset($sql)) {$sql=returnglobal('sql');}
|
||||
|
||||
if (!$surveyid)
|
||||
{
|
||||
//NOSID
|
||||
exit;
|
||||
}
|
||||
if (!$column)
|
||||
{
|
||||
//NOCOLUMN
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($connect->databaseType == 'odbc_mssql')
|
||||
{ $query = "SELECT id, ".db_quote_id($column)." FROM {$dbprefix}survey_$surveyid WHERE (".db_quote_id($column)." NOT LIKE '')"; }
|
||||
else
|
||||
{ $query = "SELECT id, ".db_quote_id($column)." FROM {$dbprefix}survey_$surveyid WHERE (".db_quote_id($column)." != '')"; }
|
||||
|
||||
if ($sql && $sql != "NULL")
|
||||
{
|
||||
$query .= " AND ".auto_unescape(urldecode($sql));
|
||||
}
|
||||
|
||||
if (incompleteAnsFilterstate() === true) {$query .= " AND submitdate is not null";}
|
||||
|
||||
if ($order == "alpha")
|
||||
{
|
||||
$query .= " ORDER BY ".db_quote_id($column);
|
||||
}
|
||||
|
||||
$result=db_execute_assoc($query) or safe_die("Error with query: ".$query."<br />".$connect->ErrorMsg());
|
||||
$listcolumnoutput= "<table width='98%' class='statisticstable' border='1' cellpadding='2' cellspacing='0'>\n";
|
||||
$listcolumnoutput.= "<tr><td><input type='image' src='$imagefiles/downarrow.png' align='middle' onclick=\"window.open('admin.php?action=listcolumn&sid=$surveyid&column=$column&order=id', '_self')\" /></td>\n";
|
||||
$listcolumnoutput.= "<td valign='top'><input type='image' align='right' src='$imagefiles/close.gif' onclick='window.close()' />";
|
||||
if ($connect->databaseType != 'odbc_mssql')
|
||||
{ $listcolumnoutput.= "<input type='image' src='$imagefiles/downarrow.png' align='left' onclick=\"window.open('admin.php?action=listcolumn&sid=$surveyid&column=$column&order=alpha', '_self')\" />"; }
|
||||
$listcolumnoutput.= "</td></tr>\n";
|
||||
while ($row=$result->FetchRow())
|
||||
{
|
||||
$listcolumnoutput.= "<tr><td valign='top' align='center' >"
|
||||
. "<a href='$scriptname?action=browse&sid=$surveyid&subaction=id&id=".$row['id']."' target='home'>"
|
||||
. $row['id']."</a></td>"
|
||||
. "<td valign='top'>".$row[$column]."</td></tr>\n";
|
||||
}
|
||||
$listcolumnoutput.= "</table>\n";
|
||||
|
||||
|
||||
?>
|
||||
<?php
|
||||
/*
|
||||
* LimeSurvey
|
||||
* Copyright (C) 2007 The LimeSurvey Project Team / Carsten Schmitz
|
||||
* All rights reserved.
|
||||
* License: GNU/GPL License v2 or later, see LICENSE.php
|
||||
* LimeSurvey is free software. This version may have been modified pursuant
|
||||
* to the GNU General Public License, and as distributed it includes or
|
||||
* is derivative of works licensed under the GNU General Public License or
|
||||
* other free or open source software licenses.
|
||||
* See COPYRIGHT.php for copyright notices and details.
|
||||
*
|
||||
* $Id: listcolumn.php 7212 2009-07-03 07:32:05Z c_schmitz $
|
||||
*/
|
||||
|
||||
include_once("login_check.php");
|
||||
|
||||
sendcacheheaders();
|
||||
|
||||
|
||||
if (!isset($surveyid)) {$surveyid=returnglobal('sid');}
|
||||
if (!isset($column)) {$column=returnglobal('column');}
|
||||
if (!isset($order)) {$order=returnglobal('order');}
|
||||
if (!isset($sql)) {$sql=returnglobal('sql');}
|
||||
|
||||
if (!$surveyid)
|
||||
{
|
||||
//NOSID
|
||||
exit;
|
||||
}
|
||||
if (!$column)
|
||||
{
|
||||
//NOCOLUMN
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($connect->databaseType == 'odbc_mssql' || $connect->databaseType == 'odbtp' || $connect->databaseType == 'mssql_n')
|
||||
{ $query = "SELECT id, ".db_quote_id($column)." FROM {$dbprefix}survey_$surveyid WHERE (".db_quote_id($column)." NOT LIKE '')"; }
|
||||
else
|
||||
{ $query = "SELECT id, ".db_quote_id($column)." FROM {$dbprefix}survey_$surveyid WHERE (".db_quote_id($column)." != '')"; }
|
||||
|
||||
if ($sql && $sql != "NULL")
|
||||
{
|
||||
$query .= " AND ".auto_unescape(urldecode($sql));
|
||||
}
|
||||
|
||||
switch (incompleteAnsFilterstate()) {
|
||||
case 'inc':
|
||||
//Inclomplete answers only
|
||||
$query .= ' AND submitdate is null ';
|
||||
break;
|
||||
case 'filter':
|
||||
//Inclomplete answers only
|
||||
$query .= ' AND submitdate is not null ';
|
||||
break;
|
||||
}
|
||||
|
||||
if ($order == "alpha")
|
||||
{
|
||||
$query .= " ORDER BY ".db_quote_id($column);
|
||||
}
|
||||
|
||||
$result=db_execute_assoc($query) or safe_die("Error with query: ".$query."<br />".$connect->ErrorMsg());
|
||||
$listcolumnoutput= "<table width='98%' class='statisticstable' border='1' cellpadding='2' cellspacing='0'>\n";
|
||||
$listcolumnoutput.= "<thead><tr><th><input type='image' src='$imagefiles/downarrow.png' align='middle' onclick=\"window.open('admin.php?action=listcolumn&sid=$surveyid&column=$column&order=id', '_self')\" /></th>\n";
|
||||
$listcolumnoutput.= "<th valign='top'><input type='image' align='right' src='$imagefiles/close.gif' onclick='window.close()' />";
|
||||
if ($connect->databaseType != 'odbc_mssql' && $connect->databaseType != 'odbtp' && $connect->databaseType != 'mssql_n')
|
||||
{ $listcolumnoutput.= "<input type='image' src='$imagefiles/downarrow.png' align='left' onclick=\"window.open('admin.php?action=listcolumn&sid=$surveyid&column=$column&order=alpha', '_self')\" />"; }
|
||||
$listcolumnoutput.= "</th></tr>\n";
|
||||
while ($row=$result->FetchRow())
|
||||
{
|
||||
$listcolumnoutput.= "<tr><td valign='top' align='center' >"
|
||||
. "<a href='$scriptname?action=browse&sid=$surveyid&subaction=id&id=".$row['id']."' target='home'>"
|
||||
. $row['id']."</a></td>"
|
||||
. "<td valign='top'>".htmlspecialchars($row[$column])."</td></tr>\n";
|
||||
}
|
||||
$listcolumnoutput.= "</table>\n";
|
||||
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user