|
@@ -1,4 +1,4 @@
|
|
|
-<?php // $Id: recycle_course.php 11373 2007-03-03 22:11:05Z yannoo $
|
|
|
+<?php // $Id: recycle_course.php 11791 2007-03-30 07:14:33Z pcool $
|
|
|
/*
|
|
|
==============================================================================
|
|
|
Dokeos - elearning and course management software
|
|
@@ -30,22 +30,33 @@
|
|
|
* @package dokeos.backup
|
|
|
* ==============================================================================
|
|
|
*/
|
|
|
-/*
|
|
|
-==============================================================================
|
|
|
- INIT SECTION
|
|
|
-==============================================================================
|
|
|
-*/
|
|
|
+
|
|
|
// name of the language file that needs to be included
|
|
|
$language_file = array ('admin','course_info','coursebackup');
|
|
|
+
|
|
|
+// including the global file
|
|
|
include ('../inc/global.inc.php');
|
|
|
-$nameTools = get_lang('RecycleCourse');
|
|
|
+
|
|
|
+// section for the tabs
|
|
|
+$this_section=SECTION_COURSES;
|
|
|
+
|
|
|
+// breadcrumbs
|
|
|
$interbreadcrumb[] = array ("url" => "../course_info/maintenance.php", "name" => get_lang('Maintenance'));
|
|
|
+
|
|
|
+// Displaying the header
|
|
|
+$nameTools = get_lang('RecycleCourse');
|
|
|
Display::display_header($nameTools);
|
|
|
+
|
|
|
+// include additional libraries
|
|
|
require_once('classes/CourseBuilder.class.php');
|
|
|
require_once('classes/CourseArchiver.class.php');
|
|
|
require_once('classes/CourseRecycler.class.php');
|
|
|
require_once('classes/CourseSelectForm.class.php');
|
|
|
+
|
|
|
+// Display the tool title
|
|
|
api_display_tool_title($nameTools);
|
|
|
+
|
|
|
+// Check access rights (only teachers are allowed here)
|
|
|
if( ! api_is_allowed_to_edit())
|
|
|
{
|
|
|
api_not_allowed();
|
|
@@ -68,7 +79,7 @@ if( (isset($_POST['action']) && $_POST['action'] == 'course_select_form' ) || (
|
|
|
}
|
|
|
$cr = new CourseRecycler($course);
|
|
|
$cr->recycle();
|
|
|
- Display::display_normal_message(get_lang('RecycleFinished'));
|
|
|
+ Display::display_confirmation_message(get_lang('RecycleFinished'));
|
|
|
}
|
|
|
elseif( isset($_POST['recycle_option']) && $_POST['recycle_option'] == 'select_items')
|
|
|
{
|
|
@@ -101,10 +112,6 @@ else
|
|
|
<?php
|
|
|
}
|
|
|
}
|
|
|
-/*
|
|
|
-==============================================================================
|
|
|
- FOOTER
|
|
|
-==============================================================================
|
|
|
-*/
|
|
|
+// Display the footer
|
|
|
Display::display_footer();
|
|
|
?>
|