[svn r10941] new survey (unfinished)

skala
Patrick Cool 18 years ago
parent b292d100cc
commit a02d891239
  1. 149
      main/survey/create_new_survey.php
  2. 189
      main/survey/question.php
  3. 192
      main/survey/survey.php
  4. 168
      main/survey/survey_list.php
  5. 145
      main/survey/template1.htm

@ -3,14 +3,14 @@
DOKEOS - elearning and course management software
For a full list of contributors, see documentation/credits.html
This program 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.
See "documentation/licence.html" more details.
Contact:
Contact:
Dokeos
Rue des Palais 44 Paleizenstraat
B-1030 Brussels - Belgium
@ -21,15 +21,15 @@
* @package dokeos.survey
* @author unknown
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University: cleanup, refactoring and rewriting large parts (if not all) of the code
* @version $Id: create_new_survey.php 10680 2007-01-11 21:26:23Z pcool $
*
* @version $Id: create_new_survey.php 10941 2007-01-28 19:03:38Z pcool $
*
* @todo rename this file to survey.php
* @todo try to understand the template stuff and implement it (if needed)
* @todo check if the code is really unique (when adding or editing)
* @todo only the available platform languages should be used => need an api get_languages and and api_get_available_languages (or a parameter)
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'survey';
// including the global dokeos file
@ -38,33 +38,22 @@ require_once ('../inc/global.inc.php');
// including additional libraries
/** @todo check if these are all needed */
/** @todo check if the starting / is needed. api_get_path probably ends with an / */
//require_once (api_get_path(LIBRARY_PATH)."/survey.lib.php");
require_once('survey.lib.php');
require_once (api_get_path(LIBRARY_PATH).'/fileManage.lib.php');
require_once (api_get_path(CONFIGURATION_PATH) ."/add_course.conf.php");
require_once (api_get_path(LIBRARY_PATH)."/add_course.lib.inc.php");
require_once (api_get_path(LIBRARY_PATH)."/course.lib.php");
require_once (api_get_path(LIBRARY_PATH)."/groupmanager.lib.php");
require_once (api_get_path(LIBRARY_PATH)."/surveymanager.lib.php");
require_once (api_get_path(LIBRARY_PATH)."/usermanager.lib.php");
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
// Database table definitions
/** @todo use database constants for the survey tables */
$table_survey = Database :: get_course_table(TABLE_SURVEY);
$table_group = Database :: get_course_table(TABLE_SURVEY_GROUP);
$table_user = Database :: get_main_table(TABLE_MAIN_USER);
$table_course = Database :: get_main_table(TABLE_MAIN_COURSE);
$table_course_survey_rel = Database :: get_main_table(TABLE_MAIN_COURSE_SURVEY);
/** @todo replace this with the correct code */
/*
$status = surveymanager::get_status();
api_protect_course_script();
if($status==5)
{
api_protect_admin_script();
}
*/
/** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/
if (!api_is_allowed_to_edit())
{
@ -83,7 +72,7 @@ if ($_GET['action'] == 'add')
if ($_GET['action'] == 'edit' AND is_numeric($_GET['survey_id']))
{
$interbreadcrumb[] = array ("url" => "survey_list.php", "name" => get_lang('Survey'));
$tool_name = get_lang('EditSurvey');
$tool_name = get_lang('EditSurvey');
}
// Displaying the header
@ -104,9 +93,9 @@ $form->addElement('text', 'survey_code', get_lang('SurveyCode'));
$form->addElement('text', 'survey_title', get_lang('SurveyTitle'));
$form->addElement('text', 'survey_subtitle', get_lang('SurveySubTitle'));
$lang_array = api_get_languages();
foreach ($lang_array['name'] as $key=>$value)
foreach ($lang_array['name'] as $key=>$value)
{
$languages[$lang_array['folder'][$key]] = $value;
$languages[$lang_array['folder'][$key]] = $value;
}
$form->addElement('select', 'survey_language', get_lang('Language'), $languages);
$form->addElement('datepicker', 'start_date', get_lang('StartDate'));
@ -114,7 +103,7 @@ $form->addElement('datepicker', 'end_date', get_lang('EndDate'));
$group='';
$group[] =& HTML_QuickForm::createElement('radio', 'survey_share',null, get_lang('Yes'),1);
$group[] =& HTML_QuickForm::createElement('radio', 'survey_share',null, get_lang('No'),0);
$form->addGroup($group, 'survey_share', get_lang('ShareSurvey'), '&nbsp;');
$form->addGroup($group, 'survey_share', get_lang('ShareSurvey'), '&nbsp;');
$form->addElement('html_editor', 'survey_introduction', get_lang('SurveyIntroduction'));
$form->addElement('html_editor', 'survey_thanks', get_lang('SurveyThanks'));
$form->addElement('submit', 'submit_survey', get_lang('Ok'));
@ -129,11 +118,11 @@ $form->addRule('end_date', get_lang('InvalidDate'), 'date');
// setting the default values
if ($_GET['action'] == 'edit' AND isset($_GET['survey_id']) AND is_numeric($_GET['survey_id']))
{
$survey_data = get_survey($_GET['survey_id']);
$survey_data = survey_manager::get_survey($_GET['survey_id']);
$defaults = $survey_data;
$defaults['survey_id'] = $_GET['survey_id'];
}
else
else
{
$defaults['survey_language'] = $_course['language'];
$defaults['start_date']['d'] = date('d');
@ -154,7 +143,7 @@ $form->setDefaults($defaults);
if( $form->validate() )
{
$values = $form->exportValues();
$return = store_survey($values);
$return = survey_manager::store_survey($values);
Display::display_confirmation_message($return['message']);
}
else
@ -162,114 +151,6 @@ else
$form->display();
}
// Footer
Display :: display_footer();
/**
* This function stores a survey in the database
*
* @param array $values
* @return array $return the type of return message that has to be displayed and the message in it
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version januari 2007
*
* @todo move this function to surveymanager.inc.lib.php
*/
function store_survey($values)
{
global $_user;
// table defnitions
$table_survey = Database :: get_course_table(TABLE_SURVEY);
$table_survey_group = Database :: get_course_table(TABLE_SURVEY_GROUP);
if (!$values['survey_id'] OR !is_numeric($values['survey_id']))
{
$sql = "INSERT INTO $table_survey (code, title, subtitle, author, lang, avail_from, avail_till, is_shared, template, intro, surveythanks, creation_date) VALUES (
'".mysql_real_escape_string($values['survey_code'])."',
'".mysql_real_escape_string($values['survey_title'])."',
'".mysql_real_escape_string($values['survey_subtitle'])."',
'".mysql_real_escape_string($_user['user_id'])."',
'".mysql_real_escape_string($values['survey_language'])."',
'".mysql_real_escape_string($values['start_date'])."',
'".mysql_real_escape_string($values['end_date'])."',
'".mysql_real_escape_string($values['survey_share']['survey_share'])."',
'".mysql_real_escape_string('template')."',
'".mysql_real_escape_string($values['survey_introduction'])."',
'".mysql_real_escape_string($values['survey_thanks'])."',
'".date()."')";
$result = api_sql_query($sql, __FILE__, __LINE__);
$survey_id = mysql_insert_id();
$sql = "INSERT INTO $table_survey_group (group_id, survey_id, groupname, introduction) VALUES (
'', '$survey_id', '".get_lang('NoGroup')."','".get_lang('ThisIsYourDefaultGroup')."')";
$result = api_sql_query($sql, __FILE__, __LINE__);
$return['message'] = get_lang('SurveyCreatedSuccesfully').'<br />'.get_lang('YouCanNowAddQuestionToYourSurvey').': ';
$return['message'] .= '<a href="select_question_group.php?survey_id='.$survey_id.'">'.get_lang('ClickHere').'</a>';
$return['type'] = 'confirmation';
}
else
{
$sql = "UPDATE $table_survey SET
code = '".mysql_real_escape_string($values['survey_code'])."',
title = '".mysql_real_escape_string($values['survey_title'])."',
subtitle = '".mysql_real_escape_string($values['survey_subtitle'])."',
author = '".mysql_real_escape_string($_user['user_id'])."',
lang = '".mysql_real_escape_string($values['survey_language'])."',
avail_from = '".mysql_real_escape_string($values['start_date'])."',
avail_till = '".mysql_real_escape_string($values['end_date'])."',
is_shared = '".mysql_real_escape_string($values['survey_share']['survey_share'])."',
template = '".mysql_real_escape_string('template')."',
intro = '".mysql_real_escape_string($values['survey_introduction'])."',
surveythanks = '".mysql_real_escape_string($values['survey_thanks'])."'
WHERE survey_id = '".mysql_real_escape_string($values['survey_id'])."'";
$result = api_sql_query($sql, __FILE__, __LINE__);
$return['message'] = get_lang('SurveyUpdatedSuccesfully').'<br />'.get_lang('YouCanNowAddQuestionToYourSurvey').': ';
$return['message'] .= '<a href="select_question_group.php?survey_id='.$values['survey_id'].'">'.get_lang('Here').'</a>';
$return['message'] .= get_lang('OrReturnToSurveyOverview').'<a href="survey_list.php">'.get_lang('Here').'</a>';
$return['type'] = 'confirmation';
}
return $return;
}
/**
* This function retrieves all the survey information
*
* @param integer $survey_id the id of the survey
* @return array
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version januari 2007
*
* @todo move this function to surveymanager.inc.lib.php
*/
function get_survey($survey_id)
{
$tbl_survey = Database :: get_course_table(TABLE_SURVEY);
$sql = "SELECT * FROM $tbl_survey WHERE survey_id='".mysql_real_escape_string($survey_id)."'";
$result = api_sql_query($sql, __FILE__, __LINE__);
$return = mysql_fetch_assoc($result);
// we do this (temporarily) to have the array match the quickform elements immediately
// idealiter the fields in the db match the quickform fields
$return['survey_code'] = $return['code'];
$return['survey_title'] = $return['title'];
$return['survey_subtitle'] = $return['subtitle'];
$return['survey_language'] = $return['lang'];
$return['start_date'] = $return['avail_from'];
$return['end_date'] = $return['avail_till'];
$return['survey_share'] = $return['is_shared'];
$return['survey_introduction'] = $return['intro'];
$return['survey_thanks'] = $return['surveythanks'];
return $return;
}
?>

@ -3,14 +3,14 @@
DOKEOS - elearning and course management software
For a full list of contributors, see documentation/credits.html
This program 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.
See "documentation/licence.html" more details.
Contact:
Contact:
Dokeos
Rue des Palais 44 Paleizenstraat
B-1030 Brussels - Belgium
@ -19,26 +19,21 @@
/**
* @package dokeos.survey
* @author
* @version $Id: question.php 10705 2007-01-12 22:40:01Z pcool $
* @author unknown
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University: cleanup, refactoring and rewriting large parts of the code
* @version $Id: question.php 10941 2007-01-28 19:03:38Z pcool $
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'survey';
// including the global dokeos file
require ('../inc/global.inc.php');
require_once (api_get_path(LIBRARY_PATH)."/surveymanager.lib.php");
require_once (api_get_path(LIBRARY_PATH)."/course.lib.php");
/** @todo replace this with the correct code */
/*
$status = surveymanager::get_status();
api_protect_course_script();
if($status==5)
{
api_protect_admin_script();
}
*/
// including additional libraries
//require_once (api_get_path(LIBRARY_PATH)."/survey.lib.php");
require_once('survey.lib.php');
/** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/
if (!api_is_allowed_to_edit())
{
@ -48,90 +43,78 @@ if (!api_is_allowed_to_edit())
exit;
}
$surveyid=$_REQUEST['surveyid'];
$groupid=$_REQUEST['groupid'];
$ques_type = $_GET['qtype'];
$table_category = Database :: get_main_table(TABLE_MAIN_CATEGORY);
$table_survey = Database :: get_course_table(TABLE_SURVEY);
$table_group = Database :: get_course_table(TABLE_SURVEY_GROUP);
$table_survey_question = Database :: get_course_table(TABLE_SURVEY_QUESTION);
$ques_id = $_GET['qid'];
$gname=surveymanager::get_groupname($db_name,$groupid);
$header2 = get_lang('GroupName');
$header2 = $header2." ".$gname;
$header3 = get_lang('Type');
$header3=$header3." ".$ques_type;
$sql = "SELECT * FROM $table_survey_question where qid='$ques_id'";
$res = api_sql_query($sql);
$obj = mysql_fetch_object($res);
$ques=$obj->caption;
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>White Template</title>
<link href="../survey/css_white/style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
// Database table definitions
/** @todo use database constants for the survey tables */
$table_survey = Database :: get_course_table(TABLE_SURVEY);
$table_survey_question = Database :: get_course_table(TABLE_SURVEY_QUESTION);
$table_survey_question_option = Database :: get_course_table(TABLE_SURVEY_QUESTION_OPTION);
$table_course = Database :: get_main_table(TABLE_MAIN_COURSE);
$table_user = Database :: get_main_table(TABLE_MAIN_USER);
// breadcrumbs
$interbreadcrumb[] = array ("url" => 'survey_list.php', 'name' => get_lang('SurveyList'));
$interbreadcrumb[] = array ("url" => 'survey.php?survey_id='.$_GET['survey_id'], 'name' => get_lang('Survey'));
// Tool name
if ($_GET['action'] == 'add')
{
$tool_name = get_lang('AddQuestion');
}
if ($_GET['action'] == 'edit')
{
$tool_name = get_lang('EditQuestion');
}
.style5 {font-size: 12px; font-weight: bold; font-family: Arial, Helvetica, sans-serif;}
-->
</style>
</head>
<body>
<table width="100%" cellpadding="0" cellspacing="1" bordercolor="#000000" bgcolor="#000000">
<tr>
<td width="66%" bgcolor="#FFFFFF" class="bg-3">&nbsp;&nbsp;<span class="text">My Portal &gt; Course Home &gt; Survey</span></td>
<td width="34%" align="right" bgcolor="#FFFFFF" class="bg-3"><span class="text"></span>&nbsp;</td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2" align="center" valign="top"><br>
<br>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="23" height="21"><img src="../survey/images_white/top-1.gif" width="23" height="21"></td>
<td height="21" background="../survey/images_white/top-2.gif">&nbsp;</td>
<td width="20" height="21"><img src="../survey/images_white/top-3.gif" width="20" height="21"></td>
</tr>
<tr>
<td height="39" background="../survey/images_white/left.gif">&nbsp;</td>
<td><strong>Question: </strong><br><?php echo $ques;?><br><br><strong>Answers: </strong><br>
<textarea name="textfield" cols="50" rows="3" disabled='true'><?php echo $obj->a1;?></textarea>
<input name="radiobutton" type="radio" value="radiobutton"><br><textarea name="textfield" cols="50" rows="3" disabled='true'><?php echo $obj->a2;?></textarea>
<input name="radiobutton" type="radio" value="radiobutton"></td>
<td background="../survey/images_white/right.gif">&nbsp;</td>
</tr>
<tr>
<td background="../survey/images_white/left.gif">&nbsp;</td>
<td><p>&nbsp;</p>
</td>
<td background="../survey/images_white/right.gif">&nbsp;</td>
</tr>
<tr>
<td><img src="../survey/images_white/bottom-1.gif" width="23" height="21"></td>
<td background="../survey/images_white/bottom-2.gif">&nbsp;</td>
<td><img src="../survey/images_white/bottom-3.gif" width="20" height="21"></td>
</tr>
</table>
<p><br>
<br>
</p>
<p>&nbsp;</p>
<p>&nbsp; </p></td>
</tr>
<tr align="right" bgcolor="#FFFFFF">
<td height="30" align="left" class="bg-4">&nbsp;&nbsp;<span class="text">Manager : </span><span class="text-2">user admin</span> </td>
<td height="30" class="bg-4"><span class="text">Platform</span> <span class="text-2">Dokeos 1.6.3</span> <span class="text">&copy; 2006&nbsp;&nbsp;</span></td>
</tr>
</table>
</body>
</html>
// Displaying the header
Display::display_header($tool_name);
// the possible question types
$possible_types = array('yesno', 'multiplechoice', 'multipleresponse', 'open', 'dropdown', 'comment', 'pagebreak');
// checking if it is a valid type
if (!in_array($_GET['type'], $possible_types))
{
Display :: display_error_message(get_lang('TypeDoesNotExist'));
Display :: display_footer();
}
// Displaying the survey information
$survey_data = survey_manager::get_survey($_GET['survey_id']);
echo '<a href="survey.php?survey_id='.$survey_data['survey_id'].'">'.$survey_data['title'].'</a><br />';
echo $survey_data['subtitle'];
// displaying the form for adding or editing the question
if (!$_POST['save_question'])
{
$form = new $_GET['type'];
// The defaults values for the form
$form_content['horizontalvertical'] = 'vertical';
$form_content['answers'] = array('', '');
// We are editing a question
if (isset($_GET['question_id']) AND !empty($_GET['question_id']))
{
$form_content = survey_manager::get_question($_GET['question_id']);
}
// an action has been performed (for instance adding a possible answer, moving an answer, ...)
if ($_POST)
{
$form_content = $_POST;
$form_content = $form->handle_action($form_content);
}
$form->create_form($form_content);
$form->render_form();
}
else
{
$form_content = $_POST;
$form = new question();
$form->handle_action($form_content);
}
// Footer
Display :: display_footer();
?>

@ -3,14 +3,14 @@
DOKEOS - elearning and course management software
For a full list of contributors, see documentation/credits.html
This program 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.
See "documentation/licence.html" more details.
Contact:
Contact:
Dokeos
Rue des Palais 44 Paleizenstraat
B-1030 Brussels - Belgium
@ -19,39 +19,26 @@
/**
* @package dokeos.survey
* @author
* @version $Id: survey.php 10680 2007-01-11 21:26:23Z pcool $
* @author unknown
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University: cleanup, refactoring and rewriting large parts of the code
* @version $Id: survey.php 10941 2007-01-28 19:03:38Z pcool $
*
* @todo The ansTarget column is not done
* @todo try to understand the white, blue, ... template stuff.
* @todo use quickforms for the forms
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'survey';
// including the global dokeos file
require_once ('../inc/global.inc.php');
require ('../inc/global.inc.php');
// including additional libraries
/** @todo check if these are all needed */
/** @todo check if the starting / is needed. api_get_path probably ends with an / */
//require_once (api_get_path(LIBRARY_PATH)."/survey.lib.php");
require_once('survey.lib.php');
require_once (api_get_path(LIBRARY_PATH)."/course.lib.php");
require_once (api_get_path(LIBRARY_PATH)."/groupmanager.lib.php");
require_once (api_get_path(LIBRARY_PATH).'/fileManage.lib.php');
require_once (api_get_path(CONFIGURATION_PATH)."/add_course.conf.php");
require_once (api_get_path(LIBRARY_PATH)."/add_course.lib.inc.php");
require_once (api_get_path(LIBRARY_PATH)."/surveymanager.lib.php");
// Database table definitions
/** @todo use database constants for the survey tables */
$table_survey = Database :: get_course_table(TABLE_SURVEY);
/** @todo replace this with the correct code */
/*
$status = surveymanager::get_status();
api_protect_course_script();
if($status==5)
{
api_protect_admin_script();
}
*/
/** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/
if (!api_is_allowed_to_edit())
{
@ -61,83 +48,100 @@ if (!api_is_allowed_to_edit())
exit;
}
// Database table definitions
$table_survey = Database :: get_course_table(TABLE_SURVEY);
$table_survey_question = Database :: get_course_table(TABLE_SURVEY_QUESTION);
$table_survey_question_option = Database :: get_course_table(TABLE_SURVEY_QUESTION_OPTION);
$table_course = Database :: get_main_table(TABLE_MAIN_COURSE);
$table_user = Database :: get_main_table(TABLE_MAIN_USER);
$user_info = Database :: get_main_table(TABLE_MAIN_SURVEY_REMINDER);
/*
-----------------------------------------------------------
Breadcrumbs and toolname
-----------------------------------------------------------
*/
$tool_name = get_lang('CreateSurvey');
$interbreadcrumb[] = array ("url" => "survey_list.php", "name" => get_lang('Survey'));
// breadcrumbs
$interbreadcrumb[] = array ("url" => "survey_list.php", "name" => get_lang('SurveyList'));
$tool_name = get_lang('Survey');
/*
-----------------------------------------------------------
some variables
-----------------------------------------------------------
*/
$newsurvey = '0';
$existingsurvey = '1';
$aaa = '11';
//$page = 'new';
//$page1= 'ex';
if($_POST['back'])
// Displaying the header
Display::display_header($tool_name);
// Action handling
if (isset($_GET['action']))
{
header("location:survey_list.php");
exit;
if (($_GET['action'] == 'moveup' OR $_GET['action'] == 'movedown') AND isset($_GET['question_id']))
{
survey_manager::move_survey_question($_GET['action'], $_GET['question_id'], $_GET['survey_id']);
Display::display_confirmation_message('SurveyQuestionMoved');
}
}
/*
-----------------------------------------------------------
Action Handling
-----------------------------------------------------------
*/
if (!empty($_POST['action']))
{
$surveyid=$_POST['exiztingsurvey'];
$survey = $_POST['survey'];
//$existingsurvey = trim(stripslashes($_POST['exiztingsurvey']));
if ($survey==0)
// Displaying the survey information
$survey_data = survey_manager::get_survey($_GET['survey_id']);
echo '<strong>'.$survey_data['title'].'</strong><br />';
echo $survey_data['subtitle'].'<br />';
// Action links
$survey_actions = '<a href="create_new_survey.php?action=edit&amp;survey_id='.$_GET['survey_id'].'">'.Display::return_icon('edit.gif').'</a>';
$survey_actions .= '<a href="survey_list.php?action=delete&amp;survey_id='.$_GET['survey_id'].'">'.Display::return_icon('delete.gif').'</a>';
$survey_actions .= '<a href="create_survey_in_another_language.php?id_survey='.$_GET['survey_id'].'">'.Display::return_icon('copy.gif').'</a>';
$survey_actions .= '<a href="preview.php?survey_id='.$_GET['survey_id'].'">'.Display::return_icon('preview.gif').'</a>';
$survey_actions .= '<a href="survey_invite.php?survey_id='.$_GET['survey_id'].'">'.Display::return_icon('survey_publish.gif').'</a>';
$survey_actions .= '<a href="reporting.php?action=reporting&amp;surveyid='.$_GET['survey_id'].'">'.Display::return_icon('surveyreporting.gif').'</a>';
echo '<div style="float:right;">'.$survey_actions.'</div>';
echo '<a href="question.php?action=add&type=yesno&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('YesNo').'</a> | ';
echo '<a href="question.php?action=add&type=multiplechoice&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('MultipleChoice').'</a> | ';
echo '<a href="question.php?action=add&type=multipleresponse&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('MultipleResponse').'</a> | ';
echo '<a href="question.php?action=add&type=open&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('Open').'</a> | ';
echo '<a href="question.php?action=add&type=dropdown&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('Dropdown').'</a> | ';
//echo '<a href="question.php?action=add&type=percentage&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('Dropdown').'</a> | ';
//echo '<a href="question.php?action=add&type=rating&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('Dropdown').'</a> | ';
echo '<a href="question.php?action=add&type=comment&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('Comment').'</a> | ';
echo '<a href="question.php?action=add&type=pagebreak&amp;survey_id='.$_GET['survey_id'].'">'.get_lang('Pagebreak').'</a>';
echo '<div style="clear:both;"></div>';
// Displaying the table header with all the questions
echo '<table class="data_table">';
echo ' <tr class="row_odd">';
echo ' <th width="15">'.get_lang('QuestionNumber').'</th>';
echo ' <th>'.get_lang('Title').'</th>';
echo ' <th>'.get_lang('Type').'</th>';
echo ' <th>'.get_lang('NumberOfOptions').'</th>';
echo ' <th width="100">'.get_lang('Modify').'</th>';
echo ' </tr>';
// Displaying the table contents with all the questions
$question_counter = 1;
$sql = "SELECT survey_question.*, count(survey_question_option.question_option_id) as number_of_options
FROM $table_survey_question survey_question
LEFT JOIN $table_survey_question_option survey_question_option
ON survey_question.question_id = survey_question_option.question_id
WHERE survey_question.survey_id = '".mysql_real_escape_string($_GET['survey_id'])."'
GROUP BY survey_question.question_id
ORDER BY survey_question.sort ASC";
$result = api_sql_query($sql, __FILE__, __LINE__);
$question_counter_max = mysql_num_rows($result);
while ($row = mysql_fetch_assoc($result))
{
echo '<tr>';
echo ' <td>'.$question_counter.'</td>';
echo ' <td>'.$row['survey_question'].'</td>';
echo ' <td>'.$row['type'].'</td>';
echo ' <td>'.$row['number_of_options'].'</td>';
echo ' <td>';
echo ' <a href="question.php?action=edit&amp;type='.$row['type'].'&amp;survey_id='.$_GET['survey_id'].'&amp;question_id='.$row['question_id'].'">'.Display::return_icon('edit.gif').'</a>';
echo ' <a href="survey.php?action=delete&amp;survey_id='.$_GET['survey_id'].'&ampquestion_id='.$row['question_id'].'">'.Display::return_icon('delete.gif').'</a>';
if ($question_counter > 1)
{
header("location:create_new_survey.php");
exit;
echo ' <a href="survey.php?action=moveup&amp;survey_id='.$_GET['survey_id'].'&amp;question_id='.$row['question_id'].'">'.Display::return_icon('up.gif').'</a>';
}
else
{
//header("location:create_from_existing_survey.php?surveyid=$surveyid");
header("location:survey_all_courses.php");
exit;
if ($question_counter < $question_counter_max)
{
echo ' <a href="survey.php?action=movedown&amp;survey_id='.$_GET['survey_id'].'&amp;question_id='.$row['question_id'].'">'.Display::return_icon('down.gif').'</a>';
}
echo ' </td>';
$question_counter++;
}
//$survey_list=SurveyManager::select_survey_list('',$extra_script);
/*
if(!$survey_list){
header("location:create_new_survey.php");
exit;
}
*/
echo '</table>';
/*
-----------------------------------------------------------
Header
-----------------------------------------------------------
*/
Display::display_header($tool_name);
api_display_tool_title($tool_name);
?>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>?" name="mainForm">
<input type="hidden" name="newsurveyid" value="<?php echo $newsurvey_id; ?>" />
<input class="checkbox" checked type="radio" name="survey" id="new_survey" value="<?php echo $newsurvey; ?>" /> <label for="new_survey"><?php echo get_lang('NewSurvey'); ?></label><br/>
<input class="checkbox" type="radio" name="survey" id="existing_survey" value="<?php echo $existingsurvey; ?>" /> <label for="existing_survey"><?php echo get_lang('Existingsurvey'); ?></label><br />
<input type="submit" name="back" value="<?php echo get_lang('Back');?>" />&nbsp;
<input type="submit" name="action" value="<?php echo get_lang('Ok'); ?>" />
</form>
<?php
/*
-----------------------------------------------------------
Footer
-----------------------------------------------------------
*/
// Footer
Display :: display_footer();
?>

@ -3,14 +3,14 @@
DOKEOS - elearning and course management software
For a full list of contributors, see documentation/credits.html
This program 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.
See "documentation/licence.html" more details.
Contact:
Contact:
Dokeos
Rue des Palais 44 Paleizenstraat
B-1030 Brussels - Belgium
@ -21,32 +21,24 @@
* @package dokeos.survey
* @author unknown
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University: cleanup, refactoring and rewriting large parts of the code
* @version $Id: survey_list.php 10680 2007-01-11 21:26:23Z pcool $
*
* @todo The ansTarget column is not done
* @todo try to understand the white, blue, ... template stuff.
* @version $Id: survey_list.php 10941 2007-01-28 19:03:38Z pcool $
*
* @todo The invite column is not done
* @todo try to understand the white, blue, ... template stuff.
* @todo use quickforms for the forms
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'survey';
// including the global dokeos file
require ('../inc/global.inc.php');
// including additional libraries
require_once (api_get_path(LIBRARY_PATH)."/surveymanager.lib.php");
//require_once (api_get_path(LIBRARY_PATH)."/survey.lib.php");
require_once('survey.lib.php');
require_once (api_get_path(LIBRARY_PATH)."/course.lib.php");
/** @todo replace this with the correct code */
/*
$status = surveymanager::get_status();
api_protect_course_script();
if($status==5)
{
api_protect_admin_script();
}
*/
/** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/
if (!api_is_allowed_to_edit())
{
@ -57,13 +49,10 @@ if (!api_is_allowed_to_edit())
}
// Database table definitions
/** @todo use database constants for the survey tables */
$table_survey = Database :: get_course_table(TABLE_SURVEY);
$table_group = Database :: get_course_table(TABLE_SURVEY_GROUP);
$table_survey_question = Database :: get_course_table(TABLE_SURVEY_QUESTION);
$table_course = Database :: get_main_table(TABLE_MAIN_COURSE);
$table_user = Database :: get_main_table(TABLE_MAIN_USER);
$user_info = Database :: get_main_table(TABLE_MAIN_SURVEY_REMINDER);
// language variables
if (isset ($_GET['search']) && $_GET['search'] == 'advanced')
@ -72,7 +61,7 @@ if (isset ($_GET['search']) && $_GET['search'] == 'advanced')
}
else
{
$tool_name = get_lang('Survey');
$tool_name = get_lang('SurveyList');
}
// Header
@ -87,12 +76,12 @@ if (isset ($_GET['search']) AND $_GET['search'] == 'advanced')
// Action handling: deleting a survey
if (isset($_GET['action']) AND $_GET['action'] == 'delete' AND isset($_GET['survey_id']) AND is_numeric($_GET['survey_id']))
{
$return = SurveyManager::delete_survey($_GET['survey_id']);
$return = survey_manager :: delete_survey($_GET['survey_id']);
if ($return)
{
Display :: display_confirmation_message(get_lang('SurveyDeleted'));
Display :: display_confirmation_message(get_lang('SurveyDeleted'));
}
else
else
{
Display :: display_error_message(get_lang('ErrorOccurred'));
}
@ -103,13 +92,13 @@ if ($_POST['action'])
{
if (is_array($_POST['id']))
{
foreach ($_POST['id'] as $key=>$value)
foreach ($_POST['id'] as $key=>$value)
{
SurveyManager::delete_survey($value);
delete_survey($value);
}
Display :: display_confirmation_message(get_lang('SurveyDeleted'));
Display :: display_confirmation_message(get_lang('SurveyDeleted'));
}
else
else
{
Display :: display_error_message(get_lang('NoSurveysSelected'));
}
@ -133,10 +122,10 @@ Display :: display_footer();
* This function displays the form for searching a survey
*
* @return html code
*
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version January 2007
*
*
* @todo use quickforms
* @todo consider moving this to surveymanager.inc.lib.php
*/
@ -176,7 +165,7 @@ function display_survey_search_form()
* This function displays the sortable table with all the surveys
*
* @return html code
*
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version January 2007
*/
@ -184,52 +173,53 @@ function display_survey_list()
{
if ($_GET['do_search'])
{
$message = get_lang('DisplaySearchResults').'<br />';
$message = get_lang('DisplaySearchResults').'<br />';
$message .= '<a href="'.$_SERVER['PHP_SELF'].'">'.get_lang('DisplayAll').'</a>';
Display::display_normal_message($message);
}
// Create a sortable table with survey-data
$table = new SortableTable('surveys', 'get_number_of_surveys', 'get_survey_data',2);
$table->set_additional_parameters($parameters);
$table->set_header(0, '', false);
$table->set_header(1, get_lang('SurveyName'));
$table->set_header(2, get_lang('SurveyCode'));
$table->set_header(3, get_lang('Author'));
$table->set_header(4, get_lang('Language'));
$table->set_header(5, get_lang('AvailableFrom'));
$table->set_header(6, get_lang('AvailableUntill'));
$table->set_header(7, get_lang('AnsTarget'));
$table->set_header(8, get_lang('Modify'), false);
$table->set_column_filter(8, 'modify_filter');
$table->set_header(3, get_lang('NumberOfQuestions'));
$table->set_header(4, get_lang('Author'));
$table->set_header(5, get_lang('Language'));
$table->set_header(6, get_lang('AvailableFrom'));
$table->set_header(7, get_lang('AvailableUntill'));
$table->set_header(8, get_lang('Invite'));
$table->set_header(9, get_lang('Modify'), false);
$table->set_column_filter(9, 'modify_filter');
$table->set_form_actions(array ('delete' => get_lang('DeleteSurvey')));
$table->display();
}
/**
* This function calculates the total number of surveys
*
*
* @return integer
*
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version January 2007
*/
function get_number_of_surveys()
{
global $table_survey;
global $table_survey;
$search_restriction = survey_search_restriction();
if ($search_restriction)
{
$search_restriction = 'WHERE '.$search_restriction;
}
$sql = "SELECT count(survey_id) AS total_number_of_items FROM ".$table_survey.' '.$search_restriction;
$res = api_sql_query($sql, __FILE__, __LINE__);
$obj = mysql_fetch_object($res);
return $obj->total_number_of_items;
}
/**
@ -240,7 +230,7 @@ function get_number_of_surveys()
* @param unknown_type $column
* @param unknown_type $direction
* @return unknown
*
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version January 2007
*/
@ -248,68 +238,71 @@ function get_survey_data($from, $number_of_items, $column, $direction)
{
global $table_survey;
global $table_user;
global $table_survey_question;
// searching
$search_restriction = survey_search_restriction();
if ($search_restriction)
{
$search_restriction = ' AND '.$search_restriction;
}
$sql = "SELECT
$sql = "SELECT
survey.survey_id AS col0,
survey.title AS col1,
CONCAT('<a href=\"survey.php?survey_id=',survey.survey_id,'\">',survey.title,'</a>') AS col1,
survey.code AS col2,
CONCAT(user.firstname, ' ', user.lastname) AS col3,
survey.lang AS col4,
survey.avail_from AS col5,
survey.avail_till AS col6,
'' AS col7,
survey.survey_id AS col8
FROM $table_survey survey, $table_user user
count(survey_question.question_id) AS col3,
CONCAT(user.firstname, ' ', user.lastname) AS col4,
survey.lang AS col5,
survey.avail_from AS col6,
survey.avail_till AS col7,
CONCAT('<a href=\"survey_invitation.php?view=answered&amp;survey_id=',survey.survey_id,'\">',survey.answered,'</a> / <a href=\"survey_invitation.php?view=invited&amp;survey_id=',survey.survey_id,'\">',survey.invited, '</a>') AS col8,
survey.survey_id AS col9
FROM $table_survey survey
LEFT JOIN $table_survey_question survey_question ON survey.survey_id = survey_question.survey_id
, $table_user user
WHERE survey.author = user.user_id
$search_restriction
";
$sql .= " GROUP BY survey.survey_id";
$sql .= " ORDER BY col$column $direction ";
$sql .= " LIMIT $from,$number_of_items";
$res = api_sql_query($sql, __FILE__, __LINE__);
$surveys = array ();
while ($survey = mysql_fetch_row($res))
{
$surveys[] = $survey;
}
return $surveys;
return $surveys;
}
/**
* This function changes the modify column of the sortable table
*
*
* @param integer $survey_id the id of the survey
* @return html code that are the actions that can be performed on any survey
*
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version January 2007
*/
function modify_filter($survey_id)
{
$return = '<a href="create_new_survey.php?action=edit&amp;survey_id='.$survey_id.'">'.Display::return_icon('edit.gif').'</a>';
$return .= '<a href="survey_question.php?action=add&amp;survey_id='.$survey_id.'">'.Display::return_icon('add.gif').'</a>';
$return .= '<a href="survey_list.php?action=delete&amp;survey_id='.$survey_id.'">'.Display::return_icon('delete.gif').'</a>';
$return .= '<a href="create_survey_in_another_language.php?id_survey='.$survey_id.'">'.Display::return_icon('copy.gif').'</a>';
$return .= '<a href="survey_white.php?survey_id='.$survey_id.'">'.Display::return_icon('preview.gif').'</a>';
$return .= '<a href="../announcements/announcements.php?action=add&amp;publish_survey='.$survey_id.'">'.Display::return_icon('survey_publish.gif').'</a>';
//$return .= '<a href="survey.php?survey_id='.$survey_id.'">'.Display::return_icon('add.gif').'</a>';
$return .= '<a href="preview.php?survey_id='.$survey_id.'">'.Display::return_icon('preview.gif').'</a>';
$return .= '<a href="survey_invite.php?survey_id='.$survey_id.'">'.Display::return_icon('survey_publish.gif').'</a>';
$return .= '<a href="reporting.php?action=reporting&amp;surveyid='.$survey_id.'">'.Display::return_icon('surveyreporting.gif').'</a>';
return $return;
return $return;
}
/**
* this function handles the search restriction for the SQL statements
*
*
* @return false or a part of a SQL statement
*
*
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version January 2007
*/
@ -329,11 +322,11 @@ function survey_search_restriction()
{
$search_term[] = 'lang =\''.mysql_real_escape_string($_GET['keyword_language']).'\'';
}
$search_restriction = implode(' AND ', $search_term);
return $search_restriction;
}
else
else
{
return false;
}
@ -342,16 +335,23 @@ function survey_search_restriction()
/* if(isset($published))
{
$sname = surveymanager::pick_surveyname($surveyid);
$error_message = get_lang('YourSurveyHasBeenPublished');
Display::display_error_message("Survey "."'".$sname."'"." ".$error_message);
Display::display_error_message("Survey "."'".$sname."'"." ".$error_message);
}
$res = api_sql_query($sql,__FILE__,__LINE__);
if (mysql_num_rows($res) > 0)
{
$courses = array ();
while ($obj = mysql_fetch_object($res))
{
@ -362,23 +362,23 @@ function survey_search_restriction()
elseif($template=='template3'){$view='brown';}
elseif($template=='template4'){$view='gray';}
else{$view=='blank';}
$sql_sent=" SELECT DISTINCT user_info.*
$sql_sent=" SELECT DISTINCT user_info.*
FROM $user_info as user_info
INNER JOIN $table_survey as survey
ON user_info.sid = survey.survey_id
AND survey.code = '".$obj->code."'";
$res_sent=api_sql_query($sql_sent);
$sent=mysql_num_rows($res_sent);
$attempted=0;
$sqlAttempt = ' SELECT DISTINCT *
FROM '.Database::get_main_table(TABLE_MAIN_SURVEY_USER).'
WHERE survey_id='.$obj->survey_id.' AND db_name="'.$db_name.'"';
$res_attempt=api_sql_query($sqlAttempt);
$attempted=mysql_num_rows($res_attempt);
if($sent=='0')
{$ratio=$attempted."/".$sent." "."(Not Published)";}
else
@ -387,12 +387,12 @@ function survey_search_restriction()
$survey[] = '<input type="checkbox" name="survey_delete[]" value="'.$obj->survey_id.'">';
$survey[] = $obj->title;
$survey[] = $obj->code;
$idd=surveymanager::get_author($db_name,$surveyid);
$idd=surveymanager::get_author($db_name,$surveyid);
$author=surveymanager::get_survey_author($idd);
$survey[] = $author;
$survey[] = $obj->lang;
$survey[] = $obj->avail_from ;
$survey[] = $obj->avail_till ;
$survey[] = $obj->avail_till ;
$survey[] = $ratio;
//$NoOfQuestion=surveymanager::no_of_question($gid);
//$language=surveymanager::no_of_question($sid);
@ -413,18 +413,18 @@ function survey_search_restriction()
echo '<select name="action">';
echo '<option value="delete_surveys">'.get_lang('DeleteSurvey').'</option>';
echo '</select>';
echo '&nbsp;&nbsp;<input type="submit" value="'.get_lang('Ok').'" onclick="return validate(\'frm\');"/>';
echo '</form>';
}
else
{
if((isset ($_GET['keyword'])) || (isset ($_GET['keyword_title']))){
if((isset ($_GET['keyword'])) || (isset ($_GET['keyword_title']))){
echo get_lang('NoSearchResults') ;
}
else{
$nosurvey=get_lang('NoSurveyAvailable');
api_display_tool_title($nosurvey);
api_display_tool_title($nosurvey);
}
}
}

@ -1,145 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<link href="images_ofo/style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
.style5 {font-size: 12px; font-weight: bold; font-family: Arial, Helvetica, sans-serif;}
-->
</style></head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="85" colspan="2" class="logo">&nbsp;</td>
</tr>
<tr>
<td width="69%" height="29" class="bg-1">&nbsp;&nbsp;<span class="text">My Portal - My Organisation</span></td>
<td width="31%" align="right" class="bg-1"><span class="text">Shakespeare SHAKESPEARE - user admin</span>&nbsp;&nbsp;</td>
</tr>
<tr align="right">
<td height="29" colspan="2" align="left" bordercolor="#333333" class="bg-2">&nbsp;</td>
</tr>
<tr>
<td height="24" class="bg-3">&nbsp;&nbsp;<span class="text">My Portal &gt; Course Home &gt; Survey</span></td>
<td height="24" align="right" class="bg-3"><span class="text">User online: 1 | Student View</span>&nbsp;&nbsp;</td>
</tr>
<tr bordercolor="#6699FF">
<td colspan="2" align="center" valign="top"><br><br>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="F6F5F5"><p>&nbsp;</p>
<table width="93%" border="0" cellspacing="3" cellpadding="0">
<tr align="left">
<td colspan="2" class="text"><p>Complete this survey to give us a better idea of how we can serve your needs.</p></td>
</tr>
<tr align="left">
<td width="21%">&nbsp;</td>
<td width="79%">&nbsp;</td>
</tr>
<tr align="left">
<td colspan="2" class="text">1. How old are you? </td>
</tr>
<tr align="left">
<td><select name="select">
<option selected>How old are you</option>
</select></td>
<td>&nbsp;</td>
</tr>
<tr align="left">
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr align="left">
<td colspan="2" class="text">2. What is your yearly income? </td>
</tr>
<tr align="left">
<td colspan="2" class="text"><select name="select">
<option selected>yearly income</option>
</select></td>
</tr>
<tr align="left">
<td>&nbsp;&nbsp; </td>
<td>&nbsp;</td>
</tr>
<tr align="left">
<td colspan="2" class="text"> 3. How frequently do you visit our site?</td>
</tr>
<tr align="left">
<td colspan="2"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="text">
<tr>
<td width="4%"><input name="radiobutton" type="radio" value="radiobutton"></td>
<td width="8%">Daily</td>
<td width="5%"><input name="radiobutton" type="radio" value="radiobutton"></td>
<td width="9%">Weekly</td>
<td width="4%"><input name="radiobutton" type="radio" value="radiobutton"></td>
<td width="9%">Monthly </td>
<td width="5%"><input name="radiobutton" type="radio" value="radiobutton"></td>
<td width="56%">First Time </td>
</tr>
</table></td>
</tr>
<tr align="left">
<td colspan="2" class="text">&nbsp;</td>
</tr>
<tr align="left">
<td colspan="2" class="text">4. Please rate the value of our site: </td>
</tr>
<tr align="left">
<td colspan="2"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="text">
<tr>
<td width="4%"><input name="radiobutton" type="radio" value="radiobutton"></td>
<td width="14%">Not Helpfull</td>
<td width="5%"><input name="radiobutton" type="radio" value="radiobutton"></td>
<td width="21%">Somewhat Helpfull </td>
<td width="4%"><input name="radiobutton" type="radio" value="radiobutton"></td>
<td width="52%">Very Helpfull</td>
</tr>
</table></td>
</tr>
<tr align="left">
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr align="left">
<td colspan="2" class="text">5. Enter any remaining comments below:</td>
</tr>
<tr align="left">
<td colspan="2"><textarea name="textarea"></textarea></td>
</tr>
<tr align="left">
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr align="left">
<td colspan="2" class="text">6. What is your favorite web site? </td>
</tr>
<tr align="left">
<td colspan="2"><input name="textfield" type="text" class="textfield"></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" name="Submit" value="Submit"></td>
</tr>
</table></td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr align="right">
<td height="31" align="left" class="bg-4">&nbsp;&nbsp;<span class="text">Manager : user admin</span> </td>
<td height="31" class="bg-4"><span class="text">Platform Dokeos 1.6.3 &copy; 2006</span>&nbsp;&nbsp;</td>
</tr>
</table>
</body>
</html>
Loading…
Cancel
Save