[svn r16451] course copy : display destination course

skala
Eric Marguin 16 years ago
parent 784c526e67
commit b07c1af89f
  1. 12
      main/coursecopy/classes/CourseSelectForm.class.php

@ -1,5 +1,5 @@
<?php
// $Id: CourseSelectForm.class.php 15429 2008-05-26 20:34:37Z yannoo $
// $Id: CourseSelectForm.class.php 16451 2008-10-08 07:57:29Z elixir_inter $
/*
==============================================================================
Dokeos - elearning and course management software
@ -90,6 +90,16 @@ class CourseSelectForm
</script>
<?php
//get destination course title
if(!empty($hidden_fields['destination_course']))
{
require_once(api_get_path(LIBRARY_PATH).'course.lib.php');
$course_infos = CourseManager::get_course_information($hidden_fields['destination_course']);
echo '<h3>';
echo get_lang('DestinationCourse').' : '.$course_infos['title'];
echo '</h3>';
}
echo '<p>';
echo get_lang('SelectResources');
echo '</p>';

Loading…
Cancel
Save