123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?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
- */
- /**
- * Code library for HotPotatoes integration.
- * @package dokeos.exercise
- * @author
- * @version $Id: question_list_admin.inc.php 13188 2007-09-22 05:36:41Z yannoo $
- */
- /**
- ==============================================================================
- * QUESTION LIST ADMINISTRATION
- *
- * This script allows to manage the question list
- * It is included from the script admin.php
- *
- * @author Olivier Brouckaert
- * @package dokeos.exercise
- ==============================================================================
- */
- // ALLOWED_TO_INCLUDE is defined in admin.php
- if(!defined('ALLOWED_TO_INCLUDE'))
- {
- exit();
- }
- // moves a question up in the list
- if(isset($_GET['moveUp']))
- {
- $objExercise->moveUp(intval($_GET['moveUp']));
- $objExercise->save();
- }
- // moves a question down in the list
- if(isset($_GET['moveDown']))
- {
- $objExercise->moveDown(intval($_GET['moveDown']));
- $objExercise->save();
- }
- // deletes a question from the exercise (not from the data base)
- if($deleteQuestion)
- {
- // if the question exists
- if($objQuestionTmp = Question::read($deleteQuestion))
- {
- $objQuestionTmp->delete($exerciseId);
- // if the question has been removed from the exercise
- if($objExercise->removeFromList($deleteQuestion))
- {
- $nbrQuestions--;
- }
- }
- // destruction of the Question object
- unset($objQuestionTmp);
- }
- Question :: display_type_menu ();
- ?>
- <table class="data_table">
- <tr class="row_odd" bgcolor='#e6e6e6'><th><b><?php echo get_lang('Question'); ?></b></th>
- <th><b><?php echo get_lang('Type');?></b></th>
- <th><b><?php echo get_lang('Export'); ?></b></th>
- <th><b><?php echo get_lang('Modify'); ?></b></th>
- </tr>
- <?php
- if($nbrQuestions)
- {
- $questionList=$objExercise->selectQuestionList();
- $i=1;
- foreach($questionList as $id)
- {
- $objQuestionTmp = Question :: read($id);
- //showQuestion($id);
- ?>
- <tr <?php if($i%2==0) echo 'class="row_odd"'; else echo 'class="row_even"'; ?>>
- <td><?php echo "$i. ".$objQuestionTmp->selectTitle(); ?></td> <td><?php eval('echo get_lang('.get_class($objQuestionTmp).'::$explanationLangVar);'); ?></td>
- <td align="center"><a href="<?php echo api_get_self(); ?>?action=exportqti2&questionId=<?php echo $id; ?>"><img src="../img/export.png" border="0" align="absmiddle" alt="IMS/QTI" /></a></td>
- <td> <a href="<?php echo api_get_self(); ?>?myid=1&editQuestion=<?php echo $id; ?>"><img src="../img/edit.gif" border="0" align="absmiddle" alt="<?php echo get_lang('Modify'); ?>" /></a> <a href="<?php echo api_get_self(); ?>?deleteQuestion=<?php echo $id; ?>" onclick="javascript:if(!confirm('<?php echo addslashes(htmlentities(get_lang('ConfirmYourChoice'))); ?>')) return false;"><img src="../img/delete.gif" border="0" align="absmiddle" alt="<?php echo get_lang('Delete'); ?>" /></a>
- <?php
- if($i != 1)
- {
- ?>
- <a href="<?php echo api_get_self(); ?>?moveUp=<?php echo $id; ?>"><img src="../img/up.gif" border="0" align="absmiddle" alt="<?php echo get_lang('MoveUp'); ?>"></a>
- <?php
- }
- if($i != $nbrQuestions)
- {
- ?>
- <a href="<?php echo api_get_self(); ?>?moveDown=<?php echo $id; ?>"><img src="../img/down.gif" border="0" align="absmiddle" alt="<?php echo get_lang('MoveDown'); ?>"></a>
- <?php
- }
- ?>
- </td>
- <?php
- $i++;
- unset($objQuestionTmp);
- ?>
- </tr>
- <?php
- }
- }
- ?>
- </table>
- <table border="0" align="center" cellpadding="2" cellspacing="2" width="100%">
- <?php
- if(!$i)
- {
- ?>
- <tr>
- <td><?php echo get_lang('NoQuestion'); ?></td>
- </tr>
- <?php
- }
- ?>
- </table>
|