* @package chamilo.admin */ /** * INIT SECTION */ // name of the language file that needs to be included $language_file = 'admin'; include('../inc/global.inc.php'); $this_section = SECTION_PLATFORM_ADMIN; api_protect_admin_script(); $tool_name = get_lang('DummyCourseCreator'); $interbreadcrumb[] = array("url" => 'index.php', "name" => get_lang('PlatformAdmin')); Display::display_header($tool_name); //api_display_tool_title($tool_name); if (api_get_setting('server_type') != 'test') { echo get_lang('DummyCourseOnlyOnTestServer'); } elseif (isset($_POST['action'])) { require_once api_get_path(SYS_CODE_PATH).'coursecopy/classes/DummyCourseCreator.class.php'; $dcc = new DummyCourseCreator(); $dcc->create_dummy_course($_POST['course_code']); echo get_lang('Done'); } else { echo get_lang('DummyCourseDescription'); echo '
'; } Display::display_footer();