dirroot .'/course/lib.php'); require_once($CFG->dirroot .'/lib/blocklib.php'); require_once($CFG->dirroot .'/mod/resource/lib.php'); require_once($CFG->dirroot .'/mod/forum/lib.php'); $blockaction = optional_param('blockaction'); if (! $site = get_site()) { redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php'); } if ($CFG->forcelogin) { require_login(); } if (isadmin()) { if (moodle_needs_upgrading()) { redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php'); } } if (empty($USER->id)) { if (empty($CFG->loginhttps)) { $wwwroot = $CFG->wwwroot; } else { $wwwroot = str_replace('http', 'https', $CFG->wwwroot); } $loginstring = "".get_string('login').''; } else { $loginstring = ''. user_login_string($site) .''; add_to_log(SITEID, 'course', 'view', 'view.php?id='.SITEID, SITEID); } if (empty($CFG->langmenu)) { $langmenu = ''; } else { $currlang = current_language(); $langs = get_list_of_languages(); $langmenu = popup_form ($CFG->wwwroot .'/index.php?lang=', $langs, 'chooselang', $currlang, '', '', '', true); } $PAGE = page_create_object(PAGE_COURSE_VIEW, SITEID); $pageblocks = blocks_get_by_page($PAGE); $editing = $PAGE->user_is_editing(); if (!empty($blockaction)) { blocks_execute_url_action($PAGE, $pageblocks); // This re-query could be eliminated by judicious programming in blocks_execute_action(), // but I'm not sure if it's worth the complexity increase... $pageblocks = blocks_get_by_page($PAGE); } $preferred_width_left = bounded_number(BLOCK_L_MIN_WIDTH, blocks_preferred_width($pageblocks[BLOCK_POS_LEFT]), BLOCK_L_MAX_WIDTH); $preferred_width_right = bounded_number(BLOCK_R_MIN_WIDTH, blocks_preferred_width($pageblocks[BLOCK_POS_RIGHT]), BLOCK_R_MAX_WIDTH); print_header(strip_tags($site->fullname), $site->fullname, 'home', '', '', true, '', $loginstring . '
' . $langmenu); ?> '; blocks_print_group($PAGE, $pageblocks[BLOCK_POS_LEFT]); echo ''; } echo ''; // The right column if(blocks_have_content($pageblocks[BLOCK_POS_RIGHT]) || $editing || isadmin()) { echo ''; } ?>
'; /// Print Section if ($site->numsections > 0) { print_simple_box_start('center', '100%', '', 5, 'sitetopic'); /// If currently moving a file then show the current clipboard if (ismoving($site->id)) { $stractivityclipboard = strip_tags(get_string('activityclipboard', '', addslashes($USER->activitycopyname))); echo '

'; echo "$stractivityclipboard  (". get_string('cancel') .')'; echo '

'; } if (!$section = get_record('course_sections', 'course', $site->id, 'section', 1)) { delete_records('course_sections', 'course', $site->id, 'section', 1); // Just in case $section->course = $site->id; $section->section = 1; $section->summary = ''; $section->visible = 1; $section->id = insert_record('course_sections', $section); } echo format_text($section->summary, FORMAT_HTML); if ($editing) { $streditsummary = get_string('editsummary'); echo "id\">pixpath/t/edit.gif\" ". " height=\"11\" width=\"11\" border=\"0\" alt=\"$streditsummary\" />

"; } get_all_mods($site->id, $mods, $modnames, $modnamesplural, $modnamesused); print_section($site, $section, $mods, $modnamesused, true); if ($editing) { print_section_add_menus($site, $section->section, $modnames); } print_simple_box_end(); print_spacer(10); } switch ($CFG->frontpage) { /// Display the main part of the front page. case FRONTPAGENEWS: if (! $newsforum = forum_get_course_forum($site->id, 'news')) { error('Could not find or create a main news forum for the site'); } if (isset($USER->id)) { $SESSION->fromdiscussion = $CFG->wwwroot; if (forum_is_subscribed($USER->id, $newsforum->id)) { $subtext = get_string('unsubscribe', 'forum'); } else { $subtext = get_string('subscribe', 'forum'); } $headertext = "
$newsforum->name id\">$subtext
"; } else { $headertext = $newsforum->name; } if ($site->newsitems) { //print forums only when needed print_heading_block($headertext); print_spacer(8,1); forum_print_latest_discussions($newsforum->id, $site->newsitems); } break; case FRONTPAGECOURSELIST: case FRONTPAGECATEGORYNAMES: if (isset($USER->id) and !isset($USER->admin)) { print_heading_block(get_string('mycourses')); print_spacer(8,1); print_my_moodle(); } else { if (count_records('course_categories') > 1) { if ($CFG->frontpage == FRONTPAGECOURSELIST) { print_heading_block(get_string('availablecourses')); } else { print_heading_block(get_string('categories')); } print_spacer(8,1); print_simple_box_start('center', '100%'); print_whole_category_list(); print_simple_box_end(); print_course_search('', false, 'short'); } else { print_heading_block(get_string('availablecourses')); print_spacer(8,1); print_courses(0, '100%'); } } break; } echo '
'; if (isadmin()) { echo '
'.update_course_icon($site->id).'
'; echo '
'; } blocks_print_group($PAGE, $pageblocks[BLOCK_POS_RIGHT]); if ($editing) { blocks_print_adminblock($PAGE, $pageblocks); } echo '