moodle/index.php

192 lines
6.9 KiB
PHP
Raw Normal View History

2004-10-22 02:33:18 +00:00
<?php // $Id$
2002-12-07 07:27:18 +00:00
// index.php - the front page.
if (!file_exists('./config.php')) {
header('Location: install.php');
die;
}
/// Bounds for block widths on this page
define('BLOCK_L_MIN_WIDTH', 160);
define('BLOCK_L_MAX_WIDTH', 210);
define('BLOCK_R_MIN_WIDTH', 160);
define('BLOCK_R_MAX_WIDTH', 210);
require_once('config.php');
2004-10-22 02:33:18 +00:00
require_once($CFG->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');
2001-11-22 06:23:56 +00:00
2005-02-12 15:07:25 +00:00
if (empty($SITE)) {
2004-10-22 02:33:18 +00:00
redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php');
2001-11-22 06:23:56 +00:00
}
if ($CFG->forcelogin) {
require_login();
}
if (isadmin()) {
if (moodle_needs_upgrading()) {
2004-10-22 02:33:18 +00:00
redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php');
}
}
if (!empty($USER->id)) {
2004-12-28 15:12:46 +00:00
add_to_log(SITEID, 'course', 'view', 'view.php?id='.SITEID, SITEID);
2002-06-16 03:25:10 +00:00
}
if (empty($CFG->langmenu)) {
2004-10-22 02:33:18 +00:00
$langmenu = '';
} else {
$currlang = current_language();
$langs = get_list_of_languages();
2004-10-22 02:33:18 +00:00
$langmenu = popup_form ($CFG->wwwroot .'/index.php?lang=', $langs, 'chooselang', $currlang, '', '', '', true);
}
$PAGE = page_create_object(PAGE_COURSE_VIEW, SITEID);
$pageblocks = blocks_setup($PAGE);
$editing = $PAGE->user_is_editing();
$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);
2005-02-12 15:07:25 +00:00
print_header(strip_tags($SITE->fullname), $SITE->fullname, 'home', '',
'<meta name="description" content="'. s(strip_tags($SITE->summary)) .'" />',
true, '', user_login_string($SITE).$langmenu);
2001-11-22 06:23:56 +00:00
?>
<table id="layout-table">
<tr>
<?PHP
if(blocks_have_content($pageblocks, BLOCK_POS_LEFT) || $editing) {
echo '<td style="width: '.$preferred_width_left.'px;" id="left-column">';
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_LEFT);
echo '</td>';
}
echo '<td id="middle-column">';
/// Print Section
2005-02-12 15:07:25 +00:00
if ($SITE->numsections > 0) {
2005-01-25 13:40:26 +00:00
print_simple_box_start('center', '100%', '', 5, 'sitetopic');
/// If currently moving a file then show the current clipboard
2005-02-12 15:07:25 +00:00
if (ismoving($SITE->id)) {
2004-10-22 02:33:18 +00:00
$stractivityclipboard = strip_tags(get_string('activityclipboard', '', addslashes($USER->activitycopyname)));
echo '<p><font size="2">';
echo "$stractivityclipboard&nbsp;&nbsp;(<a href=\"course/mod.php?cancelcopy=true\">". get_string('cancel') .'</a>)';
echo '</font></p>';
}
2005-02-12 15:07:25 +00:00
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;
2004-07-09 05:33:07 +00:00
$section->section = 1;
$section->summary = '';
$section->visible = 1;
$section->id = insert_record('course_sections', $section);
}
2004-07-09 05:33:07 +00:00
echo format_text($section->summary, FORMAT_HTML);
if ($editing) {
2004-07-09 05:33:07 +00:00
$streditsummary = get_string('editsummary');
echo "<a title=\"$streditsummary\" ".
2004-07-09 05:33:07 +00:00
" href=\"course/editsection.php?id=$section->id\"><img src=\"$CFG->pixpath/t/edit.gif\" ".
" height=\"11\" width=\"11\" border=\"0\" alt=\"$streditsummary\" /></a><br /><br />";
}
2005-02-12 15:07:25 +00:00
get_all_mods($SITE->id, $mods, $modnames, $modnamesplural, $modnamesused);
print_section($SITE, $section, $mods, $modnamesused, true);
if ($editing) {
2005-02-12 15:07:25 +00:00
print_section_add_menus($SITE, $section->section, $modnames);
}
2004-07-09 05:33:07 +00:00
print_simple_box_end();
print_spacer(10);
}
switch ($CFG->frontpage) { /// Display the main part of the front page.
case FRONTPAGENEWS:
2005-02-12 15:07:25 +00:00
if (! $newsforum = forum_get_course_forum($SITE->id, 'news')) {
2004-10-22 02:33:18 +00:00
error('Could not find or create a main news forum for the site');
}
if (isset($USER->id)) {
2004-10-22 02:33:18 +00:00
$SESSION->fromdiscussion = $CFG->wwwroot;
if (forum_is_subscribed($USER->id, $newsforum->id)) {
2004-10-22 02:33:18 +00:00
$subtext = get_string('unsubscribe', 'forum');
} else {
2004-10-22 02:33:18 +00:00
$subtext = get_string('subscribe', 'forum');
}
2004-09-12 21:55:34 +00:00
$headertext = "<table border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" class=\"headingblockcontent\"><tr>
<td>$newsforum->name</td>
2004-09-12 21:55:34 +00:00
<td align=\"right\"><font size=\"1\">
<a href=\"mod/forum/subscribe.php?id=$newsforum->id\">$subtext</a>
</td></tr></table>";
} else {
$headertext = $newsforum->name;
}
2005-02-12 15:07:25 +00:00
if ($SITE->newsitems) { //print forums only when needed
print_heading_block($headertext);
print_spacer(8,1);
2005-02-12 15:07:25 +00:00
forum_print_latest_discussions($newsforum->id, $SITE->newsitems);
}
break;
case FRONTPAGECOURSELIST:
case FRONTPAGECATEGORYNAMES:
if (isset($USER->id) and !isset($USER->admin)) {
2004-10-22 02:33:18 +00:00
print_heading_block(get_string('mycourses'));
print_spacer(8,1);
print_my_moodle();
} else {
2004-10-22 02:33:18 +00:00
if (count_records('course_categories') > 1) {
if ($CFG->frontpage == FRONTPAGECOURSELIST) {
2004-10-22 02:33:18 +00:00
print_heading_block(get_string('availablecourses'));
} else {
2004-10-22 02:33:18 +00:00
print_heading_block(get_string('categories'));
}
print_spacer(8,1);
2004-10-22 02:33:18 +00:00
print_simple_box_start('center', '100%');
print_whole_category_list();
print_simple_box_end();
2004-10-22 02:33:18 +00:00
print_course_search('', false, 'short');
} else {
2004-10-22 02:33:18 +00:00
print_heading_block(get_string('availablecourses'));
print_spacer(8,1);
2004-10-22 02:33:18 +00:00
print_courses(0, '100%');
}
}
break;
}
echo '</td>';
// The right column
if(blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing || isadmin()) {
echo '<td style="width: '.$preferred_width_right.'px;" id="right-column">';
if (isadmin()) {
2005-02-12 15:07:25 +00:00
echo '<div align="center">'.update_course_icon($SITE->id).'</div>';
echo '<br />';
}
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT);
echo '</td>';
}
?>
</tr>
</table>
2001-11-22 06:23:56 +00:00
<?php
print_footer('home'); // Please do not modify this line
2005-01-25 13:40:26 +00:00
?>