123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- /*
- 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:
- Dokeos
- Rue des Palais 44 Paleizenstraat
- B-1030 Brussels - Belgium
- Tel. +32 (2) 211 34 56
- */
- /**
- * @package dokeos.survey
- * @author
- * @version $Id: create_survey.php 10603 2007-01-06 17:01:47Z pcool $
- */
- /*
- ==============================================================================
- INIT SECTION
- ==============================================================================
- */
- // name of the language file that needs to be included
- $language_file = 'admin';
- // including the global dokeos file
- 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).'/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");
- /** @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())
- {
- Display :: display_header();
- Display :: display_error_message(get_lang('NotAllowedHere'));
- Display :: display_footer();
- exit;
- }
- // Database table definitions
- /** @todo use database constants for the survey tables */
- $table_survey = Database :: get_main_table(MAIN_SURVEY_IFA_TABLE);
- $table_course = Database::get_main_table(TABLE_MAIN_COURSE);
- $tool_name = get_lang('CreateSurvey');
- $interbreadcrumb[] = array ("url" => "index.php", "name" => get_lang('AdministrationTools'));
- $newsurvey = '0';
- if ($_POST['action'] == 'add_survey')
- {
-
-
- $survey = $_POST['survey'];
- //$existingsurvey = trim(stripslashes($_POST['existingsurvey']));
-
- if ($survey==0)
- {
- header("location:create_new_survey.php");
- exit;
- }
- else
- {
- header("location:create_ex_survey.php");
- exit;
- }
- }
- Display::display_header($tool_name);
- api_display_tool_title($tool_name);
- ?>
- <form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
- <input type="hidden" name="action" value="add_survey"/>
- <table>
- <tr>
- <td valign="top"></td>
- <td>
- <input class="checkbox" checked type="radio" name="survey" id="new_survey" value="<?php echo $newsurvey ?>"> <label for="visibility_open_world"><?php echo get_lang('NewSurvey') ?></label>
- <br/>
- <input class="checkbox" type="radio" name="survey" id="Existing_survey" value="<?php echo $existingsurvey ?>" > <label for="visibility_open_platform"><?php echo get_lang('CreateFromExistingSurveys'); ?></label><?php SurveyManager::select_survey_list();?>
- </td></tr>
- <tr>
- <td></td>
- <td></td>
- </tr>
- <tr>
- <td></td>
-
- </tr>
- <tr>
- <td> </td>
- <td><input type="submit" value="<?php echo get_lang('Ok'); ?>"></td>
- </tr>
- </table>
- </form>
- <?php
- /*
- ==============================================================================
- FOOTER
- ==============================================================================
- */
- Display :: display_footer();
- ?>
|