mirror of
https://github.com/moodle/moodle.git
synced 2025-03-04 08:06:30 +01:00
This check-in removes about 400 lines of code. I hope I have not screwed anything up. I would be grateful if people could review this change, and keep an eye on the navigation bar in modules. Any navigation bar bugs you find in the near future, feel free to file them in the tracker and assign them to me. Thanks. If not to many problems are found, I think I would like to backport this to 1.9 stable, but I am not sure that is a good idea. Opinions to the General Developer Forum please. I am about to start a thread there.
103 lines
4.0 KiB
PHP
103 lines
4.0 KiB
PHP
<?php // $Id$
|
|
require_once('../../config.php');
|
|
require_once('lib.php');
|
|
|
|
$id = required_param('id', PARAM_INT); // course module ID
|
|
$entry = required_param('entry', PARAM_INT); // Entry ID
|
|
$confirm = optional_param('confirm', 0, PARAM_INT); // confirmation
|
|
|
|
$hook = optional_param('hook', '', PARAM_ALPHANUM);
|
|
$mode = optional_param('mode', '', PARAM_ALPHA);
|
|
|
|
global $USER, $CFG;
|
|
|
|
$PermissionGranted = 1;
|
|
|
|
$cm = get_coursemodule_from_id('glossary', $id);
|
|
if ( ! $cm ) {
|
|
$PermissionGranted = 0;
|
|
} else {
|
|
$mainglossary = get_record('glossary','course',$cm->course, 'mainglossary',1);
|
|
if ( ! $mainglossary ) {
|
|
$PermissionGranted = 0;
|
|
}
|
|
}
|
|
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
require_capability('mod/glossary:export', $context);
|
|
|
|
if (! $course = get_record('course', 'id', $cm->course)) {
|
|
error('Course is misconfigured');
|
|
}
|
|
|
|
if (! $glossary = get_record('glossary', 'id', $cm->instance)) {
|
|
error('Course module is incorrect');
|
|
}
|
|
|
|
$strglossaries = get_string('modulenameplural', 'glossary');
|
|
$entryalreadyexist = get_string('entryalreadyexist','glossary');
|
|
$entryexported = get_string('entryexported','glossary');
|
|
|
|
$navigation = build_navigation('', $cm);
|
|
print_header_simple(format_string($glossary->name), '', $navigation, '', '', true, '', navmenu($course, $cm));
|
|
|
|
if ( $PermissionGranted ) {
|
|
$entry = get_record('glossary_entries', 'id', $entry);
|
|
|
|
if ( !$confirm ) {
|
|
echo '<div class="boxaligncenter">';
|
|
$areyousure = get_string('areyousureexport','glossary');
|
|
notice_yesno ('<h2>'.format_string($entry->concept).'</h2><p align="center">'.$areyousure.'<br /><b>'.format_string($mainglossary->name).'</b>?',
|
|
'exportentry.php?id='.$id.'&mode='.$mode.'&hook='.$hook.'&entry='.$entry->id.'&confirm=1',
|
|
'view.php?id='.$cm->id.'&mode='.$mode.'&hook='.$hook);
|
|
echo '</div>';
|
|
} else {
|
|
if ( ! $mainglossary->allowduplicatedentries ) {
|
|
$dupentry = get_record('glossary_entries','glossaryid', $mainglossary->id, 'lower(concept)',moodle_strtolower(addslashes($entry->concept)));
|
|
if ( $dupentry ) {
|
|
$PermissionGranted = 0;
|
|
}
|
|
}
|
|
if ( $PermissionGranted ) {
|
|
|
|
$dbentry = new stdClass;
|
|
$dbentry->id = $entry->id;
|
|
$dbentry->glossaryid = $mainglossary->id;
|
|
$dbentry->sourceglossaryid = $glossary->id;
|
|
|
|
if (! update_record('glossary_entries', $dbentry)) {
|
|
error('Could not export the entry to the main glossary');
|
|
} else {
|
|
print_simple_box_start('center', '60%');
|
|
echo '<p align="center"><font size="3">'.$entryexported.'</font></p></font>';
|
|
|
|
print_continue('view.php?id='.$cm->id.'&mode=entry&hook='.$entry->id);
|
|
print_simple_box_end();
|
|
|
|
print_footer();
|
|
|
|
redirect('view.php?id='.$cm->id.'&mode=entry&hook='.$entry->id);
|
|
die;
|
|
}
|
|
} else {
|
|
print_simple_box_start('center', '60%', '#FFBBBB');
|
|
echo '<p align="center"><font size="3">'.$entryalreadyexist.'</font></p></font>';
|
|
echo '<p align="center">';
|
|
|
|
print_continue('view.php?id='.$cm->id.'&mode=entry&hook='.$entry->id);
|
|
|
|
print_simple_box_end();
|
|
}
|
|
}
|
|
} else {
|
|
print_simple_box_start('center', '60%', '#FFBBBB');
|
|
notice('A weird error was found while trying to export this entry. Operation cancelled.');
|
|
|
|
print_continue('view.php?id='.$cm->id.'&mode=entry&hook='.$entry->id);
|
|
|
|
print_simple_box_end();
|
|
}
|
|
|
|
print_footer();
|
|
?>
|