[svn r20982] Added image to link in result FS#4232

skala
Arthur Portugal 16 years ago
parent c264ffd7a0
commit ee68cf523c
  1. 15
      main/exercice/exercice.php
  2. 2
      main/exercice/exercice_history.php
  3. 4
      main/exercice/exercise_show.php

@ -1,5 +1,5 @@
<?php
// $Id: exercice.php 20980 2009-05-25 21:24:28Z aportugal $
// $Id: exercice.php 20982 2009-05-25 22:49:12Z aportugal $
/*
==============================================================================
@ -1319,18 +1319,19 @@ if ($_configuration['tracking_enabled'] && ($show == 'result')) {
echo '<td>';
if ($is_allowedToEdit || $is_tutor) {
if ($revised) {
echo "<a href='exercise_show.php?action=edit&user=$user&dt=$dt&res=$res&id=$id&email=$mailid'>";
echo get_lang('Edit');
echo "<a href='exercise_show.php?action=edit&user=$user&dt=$dt&res=$res&id=$id&email=$mailid'>".Display :: return_icon('edit.gif', get_lang('Edit'));
echo '&nbsp;';
} else {
echo "<a href='exercise_show.php?action=qualify&user=$user&dt=$dt&res=$res&id=$id&email=$mailid'>";
echo get_lang('Qualify');
echo "<a href='exercise_show.php?action=qualify&user=$user&dt=$dt&res=$res&id=$id&email=$mailid'>".Display :: return_icon('quizz_small.gif', get_lang('Qualify'));
echo '&nbsp;';
}
echo "</a>";
if (api_is_platform_admin() || $is_tutor)
echo ' - <a href="exercice.php?cidReq=' . Security::remove_XSS($_GET['cidReq']) . '&show=result&filter=' . $filter . '&delete=delete&did=' . $id . '" onclick="javascript:if(!confirm(\'' . sprintf(get_lang('DeleteAttempt'), $user, $dt) . '\')) return false;">' . get_lang('Delete') . '</a>';
echo ' <a href="exercice.php?cidReq=' . Security::remove_XSS($_GET['cidReq']) . '&show=result&filter=' . $filter . '&delete=delete&did=' . $id . '" onclick="javascript:if(!confirm(\'' . sprintf(get_lang('DeleteAttempt'), $user, $dt) . '\')) return false;">'.Display :: return_icon('delete.gif', get_lang('Delete')).'</a>';
echo '&nbsp;';
if ($is_allowedToEdit)
echo ' - <a href="exercice_history.php?cidReq=' . security::remove_XSS($_GET['cidReq']) . '&exe_id=' . $id . '">' . get_lang('ViewHistoryChange') . '</a>';
echo ' <a href="exercice_history.php?cidReq=' . security::remove_XSS($_GET['cidReq']) . '&exe_id=' . $id . '">' .Display :: return_icon('history.gif', get_lang('ViewHistoryChange')).'</a>';
} else {
if ($revised)
echo "<a href='exercise_show.php?dt=$dt&res=$res&id=$id'>" . get_lang('Show') . "</a> ";

@ -94,7 +94,7 @@ Display::display_header($nameTools,"Exercise");
?>
<div class="actions">
<a href="exercice.php?cidReq=<?php echo $_GET['cidReq'] ?>&show=result"><< <?php echo get_lang('Back') ?></a>
<a href="exercice.php?cidReq=<?php echo $_GET['cidReq'] ?>&show=result"><img src="../img/back.png"/><?php echo get_lang('BackToResultList') ?></a>
</div>
<table class="data_table">
<tr class="row_odd">

@ -4,7 +4,7 @@
*
* @package dokeos.exercise
* @author Julio Montoya Armas Added switchable fill in blank option added
* @version $Id: exercise_show.php 20952 2009-05-23 20:43:53Z cvargas1 $
* @version $Id: exercise_show.php 20982 2009-05-25 22:49:12Z aportugal $
*
* @todo remove the debug code and use the general debug library
* @todo use the Database:: functions
@ -903,7 +903,7 @@ if ($show_results) {
echo get_lang('EditCommentsAndMarks');
} else {
if ($action=='edit') {
echo get_lang('EditIndividualComment');
echo '<img src="../img/edit.gif"/>'.get_lang('EditIndividualComment');
} else {
echo get_lang('AddComments');
}

Loading…
Cancel
Save