2004-10-22 02:33:18 +00:00
|
|
|
<?php // $Id$
|
2002-12-07 07:27:18 +00:00
|
|
|
// index.php - the front page.
|
2004-05-28 10:53:54 +00:00
|
|
|
|
2006-08-23 08:39:15 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// //
|
|
|
|
// NOTICE OF COPYRIGHT //
|
|
|
|
// //
|
|
|
|
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
|
|
|
// http://moodle.org //
|
|
|
|
// //
|
|
|
|
// Copyright (C) 1999-2999 Martin Dougiamas http://moodle.com //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License for more details: //
|
|
|
|
// //
|
|
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
|
|
// //
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2004-08-12 15:53:32 +00:00
|
|
|
if (!file_exists('./config.php')) {
|
|
|
|
header('Location: install.php');
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Bounds for block widths on this page
|
2004-06-01 13:47:55 +00:00
|
|
|
define('BLOCK_L_MIN_WIDTH', 160);
|
|
|
|
define('BLOCK_L_MAX_WIDTH', 210);
|
|
|
|
define('BLOCK_R_MIN_WIDTH', 160);
|
|
|
|
define('BLOCK_R_MAX_WIDTH', 210);
|
|
|
|
|
2004-09-07 13:39:41 +00:00
|
|
|
require_once('config.php');
|
2005-03-08 23:35:35 +00:00
|
|
|
require_once($CFG->dirroot .'/course/lib.php');
|
2004-10-22 02:33:18 +00:00
|
|
|
require_once($CFG->dirroot .'/lib/blocklib.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
|
|
|
}
|
|
|
|
|
2004-01-14 08:27:18 +00:00
|
|
|
if ($CFG->forcelogin) {
|
|
|
|
require_login();
|
|
|
|
}
|
|
|
|
|
2006-11-08 06:24:05 +00:00
|
|
|
if ($CFG->rolesactive) { // if already using roles system
|
2007-01-29 21:29:27 +00:00
|
|
|
if (has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM))) {
|
2006-11-08 06:24:05 +00:00
|
|
|
if (moodle_needs_upgrading()) {
|
|
|
|
redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php');
|
|
|
|
}
|
2006-12-06 05:08:37 +00:00
|
|
|
} else if (!empty($CFG->mymoodleredirect)) { // Redirect logged-in users to My Moodle overview if required
|
|
|
|
if (isloggedin()) {
|
|
|
|
redirect($CFG->wwwroot .'/my/index.php');
|
|
|
|
}
|
2006-11-08 06:24:05 +00:00
|
|
|
}
|
|
|
|
} else { // if upgrading from 1.6 or below
|
|
|
|
if (isadmin() && moodle_needs_upgrading()) {
|
2004-10-22 02:33:18 +00:00
|
|
|
redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php');
|
2002-08-09 02:45:15 +00:00
|
|
|
}
|
2003-05-03 05:57:29 +00:00
|
|
|
}
|
|
|
|
|
2006-12-06 05:08:37 +00:00
|
|
|
|
2005-04-17 05:47:40 +00:00
|
|
|
if (get_moodle_cookie() == '') {
|
|
|
|
set_moodle_cookie('nobody'); // To help search for cookies on login page
|
|
|
|
}
|
|
|
|
|
2005-03-03 04:41:46 +00:00
|
|
|
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
|
|
|
}
|
2003-01-20 08:01:46 +00:00
|
|
|
|
2003-05-03 06:50:29 +00:00
|
|
|
if (empty($CFG->langmenu)) {
|
2004-10-22 02:33:18 +00:00
|
|
|
$langmenu = '';
|
2003-05-03 06:50:29 +00:00
|
|
|
} else {
|
|
|
|
$currlang = current_language();
|
|
|
|
$langs = get_list_of_languages();
|
2007-01-18 09:42:29 +00:00
|
|
|
$langlabel = '<span class="accesshide">'.get_string('language').':</span>';
|
|
|
|
$langmenu = popup_form($CFG->wwwroot .'/index.php?lang=', $langs, 'chooselang', $currlang, '', '', '', true, 'self', $langlabel);
|
2003-05-03 06:50:29 +00:00
|
|
|
}
|
2003-01-20 08:01:46 +00:00
|
|
|
|
2005-02-02 04:32:13 +00:00
|
|
|
$PAGE = page_create_object(PAGE_COURSE_VIEW, SITEID);
|
2005-03-02 05:19:47 +00:00
|
|
|
$pageblocks = blocks_setup($PAGE);
|
2005-02-02 04:32:13 +00:00
|
|
|
$editing = $PAGE->user_is_editing();
|
2005-03-08 17:32:08 +00:00
|
|
|
$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);
|
2004-06-01 13:47:55 +00:00
|
|
|
|
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)) .'" />',
|
2005-03-03 04:41:46 +00:00
|
|
|
true, '', user_login_string($SITE).$langmenu);
|
2005-01-27 23:48:16 +00:00
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
?>
|
|
|
|
|
2001-11-25 15:45:35 +00:00
|
|
|
|
2007-01-18 09:52:04 +00:00
|
|
|
<table id="layout-table" summary="layout">
|
2003-05-03 05:57:29 +00:00
|
|
|
<tr>
|
2005-03-08 17:32:08 +00:00
|
|
|
<?php
|
2007-01-08 15:53:34 +00:00
|
|
|
// uh-changes start
|
|
|
|
$lt = (empty($THEME->layouttable)) ? array('left', 'middle', 'right') : $THEME->layouttable;
|
|
|
|
foreach ($lt as $column) {
|
|
|
|
switch ($column) {
|
|
|
|
case 'left':
|
|
|
|
// uh-changes end
|
2005-03-08 17:32:08 +00:00
|
|
|
if (blocks_have_content($pageblocks, BLOCK_POS_LEFT) || $editing) {
|
2005-02-12 11:37:09 +00:00
|
|
|
echo '<td style="width: '.$preferred_width_left.'px;" id="left-column">';
|
2007-01-11 07:21:28 +00:00
|
|
|
// uh-changes start
|
|
|
|
if (!empty($THEME->roundcorners)) {
|
2007-01-11 16:57:44 +00:00
|
|
|
echo '<div class="bt"><div></div></div>';
|
|
|
|
echo '<div class="i1"><div class="i2"><div class="i3">';
|
2007-01-11 07:21:28 +00:00
|
|
|
}
|
|
|
|
// uh-changes end
|
2005-03-02 05:47:39 +00:00
|
|
|
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_LEFT);
|
2007-01-11 07:21:28 +00:00
|
|
|
// uh-changes start
|
|
|
|
if (!empty($THEME->roundcorners)) {
|
2007-01-11 16:57:44 +00:00
|
|
|
echo '</div></div></div>';
|
|
|
|
echo '<div class="bb"><div></div></div>';
|
2007-01-11 07:21:28 +00:00
|
|
|
}
|
|
|
|
// uh-changes end
|
2004-05-28 10:53:54 +00:00
|
|
|
echo '</td>';
|
|
|
|
}
|
2007-01-08 15:53:34 +00:00
|
|
|
// uh-changes start
|
|
|
|
break;
|
|
|
|
case 'middle':
|
|
|
|
// uh-changes end
|
2005-02-12 11:37:09 +00:00
|
|
|
echo '<td id="middle-column">';
|
2005-01-18 11:05:46 +00:00
|
|
|
|
2007-01-11 07:21:28 +00:00
|
|
|
// uh-changes start
|
|
|
|
if (!empty($THEME->roundcorners)) {
|
2007-01-11 16:57:44 +00:00
|
|
|
echo '<div class="bt"><div></div></div>';
|
|
|
|
echo '<div class="i1"><div class="i2"><div class="i3">';
|
2007-01-11 07:21:28 +00:00
|
|
|
}
|
|
|
|
// uh-changes end
|
2005-01-18 11:05:46 +00:00
|
|
|
|
2004-07-02 09:32:17 +00:00
|
|
|
/// Print Section
|
2005-02-12 15:07:25 +00:00
|
|
|
if ($SITE->numsections > 0) {
|
2004-07-02 09:32:17 +00:00
|
|
|
|
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 = '';
|
2005-03-07 17:24:32 +00:00
|
|
|
$section->sequence = '';
|
2004-07-09 05:33:07 +00:00
|
|
|
$section->visible = 1;
|
|
|
|
$section->id = insert_record('course_sections', $section);
|
|
|
|
}
|
2004-07-02 09:32:17 +00:00
|
|
|
|
2005-03-07 17:24:32 +00:00
|
|
|
if (!empty($section->sequence) or !empty($section->summary) or $editing) {
|
2007-02-02 07:29:17 +00:00
|
|
|
print_box_start('generalbox sitetopic');
|
2004-07-02 09:32:17 +00:00
|
|
|
|
2005-03-07 17:24:32 +00:00
|
|
|
/// If currently moving a file then show the current clipboard
|
|
|
|
if (ismoving($SITE->id)) {
|
|
|
|
$stractivityclipboard = strip_tags(get_string('activityclipboard', '', addslashes($USER->activitycopyname)));
|
|
|
|
echo '<p><font size="2">';
|
2005-12-22 00:17:00 +00:00
|
|
|
echo "$stractivityclipboard (<a href=\"course/mod.php?cancelcopy=true&sesskey=$USER->sesskey\">". get_string('cancel') .'</a>)';
|
2005-03-07 17:24:32 +00:00
|
|
|
echo '</font></p>';
|
|
|
|
}
|
2004-07-02 09:32:17 +00:00
|
|
|
|
2005-04-02 09:38:42 +00:00
|
|
|
$options = NULL;
|
|
|
|
$options->noclean = true;
|
|
|
|
echo format_text($section->summary, FORMAT_HTML, $options);
|
2004-07-02 09:32:17 +00:00
|
|
|
|
2005-03-07 17:24:32 +00:00
|
|
|
if ($editing) {
|
|
|
|
$streditsummary = get_string('editsummary');
|
|
|
|
echo "<a title=\"$streditsummary\" ".
|
|
|
|
" href=\"course/editsection.php?id=$section->id\"><img src=\"$CFG->pixpath/t/edit.gif\" ".
|
2007-01-08 09:14:05 +00:00
|
|
|
" class=\"iconsmall\" alt=\"$streditsummary\" /></a><br /><br />";
|
2005-03-07 17:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2007-02-02 07:29:17 +00:00
|
|
|
print_box_end();
|
2004-07-02 09:32:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-19 12:10:07 +00:00
|
|
|
if (isloggedin() and !isguest() and isset($CFG->frontpageloggedin)) {
|
|
|
|
$frontpagelayout = $CFG->frontpageloggedin;
|
|
|
|
} else {
|
|
|
|
$frontpagelayout = $CFG->frontpage;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (explode(',',$frontpagelayout) as $v) {
|
2005-12-14 21:42:44 +00:00
|
|
|
switch ($v) { /// Display the main part of the front page.
|
|
|
|
case strval(FRONTPAGENEWS):
|
|
|
|
if ($SITE->newsitems) { // Print forums only when needed
|
|
|
|
require_once($CFG->dirroot .'/mod/forum/lib.php');
|
|
|
|
|
|
|
|
if (! $newsforum = forum_get_course_forum($SITE->id, 'news')) {
|
|
|
|
error('Could not find or create a main news forum for the site');
|
|
|
|
}
|
|
|
|
|
2006-09-02 11:44:04 +00:00
|
|
|
if (!empty($USER->id)) {
|
2005-12-14 21:42:44 +00:00
|
|
|
$SESSION->fromdiscussion = $CFG->wwwroot;
|
|
|
|
if (forum_is_subscribed($USER->id, $newsforum->id)) {
|
|
|
|
$subtext = get_string('unsubscribe', 'forum');
|
|
|
|
} else {
|
|
|
|
$subtext = get_string('subscribe', 'forum');
|
|
|
|
}
|
2007-01-05 16:10:13 +00:00
|
|
|
print_heading_block($newsforum->name);
|
|
|
|
echo '<div class="subscribelink"><a href="mod/forum/subscribe.php?id='.$newsforum->id.'">'.$subtext.'</a></div>';
|
2005-03-08 17:32:08 +00:00
|
|
|
} else {
|
2007-01-05 16:10:13 +00:00
|
|
|
print_heading_block($newsforum->name);
|
2005-03-08 17:32:08 +00:00
|
|
|
}
|
2005-12-14 21:42:44 +00:00
|
|
|
|
2006-04-05 01:54:41 +00:00
|
|
|
forum_print_latest_discussions($SITE, $newsforum, $SITE->newsitems, 'plain', 'p.modified DESC');
|
2004-05-28 10:53:54 +00:00
|
|
|
}
|
2005-12-14 21:42:44 +00:00
|
|
|
break;
|
2004-05-28 10:53:54 +00:00
|
|
|
|
2005-12-14 21:42:44 +00:00
|
|
|
case FRONTPAGECOURSELIST:
|
2005-03-08 17:32:08 +00:00
|
|
|
|
2007-01-29 21:29:27 +00:00
|
|
|
if (isloggedin() and !has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM)) and !isguest() and empty($CFG->disablemycourses)) {
|
2005-12-14 21:42:44 +00:00
|
|
|
print_heading_block(get_string('mycourses'));
|
|
|
|
print_my_moodle();
|
2007-01-29 21:29:27 +00:00
|
|
|
} else if ((!has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM)) and !isguest()) or (count_records('course') <= FRONTPAGECOURSELIMIT)) {
|
2006-07-19 13:37:09 +00:00
|
|
|
// admin should not see list of courses when there are too many of them
|
2006-01-30 22:54:12 +00:00
|
|
|
print_heading_block(get_string('availablecourses'));
|
2006-02-07 01:13:27 +00:00
|
|
|
print_courses(0, '100%', true);
|
2004-05-28 10:53:54 +00:00
|
|
|
}
|
2005-12-14 21:42:44 +00:00
|
|
|
break;
|
2004-05-28 10:53:54 +00:00
|
|
|
|
2006-01-30 22:54:12 +00:00
|
|
|
case FRONTPAGECATEGORYNAMES:
|
|
|
|
|
|
|
|
print_heading_block(get_string('categories'));
|
2007-02-02 07:39:40 +00:00
|
|
|
print_box_start('generalbox categorybox');
|
2006-07-19 13:16:57 +00:00
|
|
|
print_whole_category_list(NULL, NULL, NULL, -1, false);
|
2007-02-02 07:39:40 +00:00
|
|
|
print_box_end();
|
2006-01-30 22:54:12 +00:00
|
|
|
print_course_search('', false, 'short');
|
|
|
|
break;
|
|
|
|
|
2006-07-19 12:10:07 +00:00
|
|
|
case FRONTPAGECATEGORYCOMBO:
|
|
|
|
|
|
|
|
print_heading_block(get_string('categories'));
|
2007-02-02 07:39:40 +00:00
|
|
|
print_box_start('generalbox categorybox');
|
2006-07-19 12:10:07 +00:00
|
|
|
print_whole_category_list(NULL, NULL, NULL, -1, true);
|
2007-02-02 07:39:40 +00:00
|
|
|
print_box_end();
|
2006-07-19 12:10:07 +00:00
|
|
|
print_course_search('', false, 'short');
|
|
|
|
break;
|
|
|
|
|
2005-12-14 21:42:44 +00:00
|
|
|
case FRONTPAGETOPICONLY: // Do nothing!! :-)
|
|
|
|
break;
|
2005-04-02 09:29:59 +00:00
|
|
|
|
2005-12-14 21:42:44 +00:00
|
|
|
}
|
|
|
|
echo '<br />';
|
2004-05-28 10:53:54 +00:00
|
|
|
}
|
|
|
|
|
2007-01-11 07:21:28 +00:00
|
|
|
// uh-changes start
|
|
|
|
if (!empty($THEME->roundcorners)) {
|
2007-01-11 16:57:44 +00:00
|
|
|
echo '</div></div></div>';
|
|
|
|
echo '<div class="bb"><div></div></div>';
|
2007-01-11 07:21:28 +00:00
|
|
|
}
|
|
|
|
// uh-changes end
|
|
|
|
|
2004-05-28 10:53:54 +00:00
|
|
|
echo '</td>';
|
2007-01-08 15:53:34 +00:00
|
|
|
// uh-changes start
|
|
|
|
break;
|
|
|
|
case 'right':
|
|
|
|
// uh-changes end
|
2004-10-19 21:04:28 +00:00
|
|
|
// The right column
|
2007-01-29 21:29:27 +00:00
|
|
|
if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing || has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, SITEID))) {
|
2005-02-12 11:37:09 +00:00
|
|
|
echo '<td style="width: '.$preferred_width_right.'px;" id="right-column">';
|
2007-01-11 07:21:28 +00:00
|
|
|
// uh-changes start
|
|
|
|
if (!empty($THEME->roundcorners)) {
|
2007-01-11 16:57:44 +00:00
|
|
|
echo '<div class="bt"><div></div></div>';
|
|
|
|
echo '<div class="i1"><div class="i2"><div class="i3">';
|
2007-01-11 07:21:28 +00:00
|
|
|
}
|
|
|
|
// uh-changes end
|
2007-01-29 21:29:27 +00:00
|
|
|
if (has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, SITEID))) {
|
2007-01-04 18:58:31 +00:00
|
|
|
echo '<div style="text-align:center">'.update_course_icon($SITE->id).'</div>';
|
2004-05-28 10:53:54 +00:00
|
|
|
echo '<br />';
|
|
|
|
}
|
2005-03-02 05:47:39 +00:00
|
|
|
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT);
|
2007-01-11 07:21:28 +00:00
|
|
|
// uh-changes start
|
|
|
|
if (!empty($THEME->roundcorners)) {
|
2007-01-11 16:57:44 +00:00
|
|
|
echo '</div></div></div>';
|
|
|
|
echo '<div class="bb"><div></div></div>';
|
2007-01-11 07:21:28 +00:00
|
|
|
}
|
|
|
|
// uh-changes end
|
2004-05-28 10:53:54 +00:00
|
|
|
echo '</td>';
|
|
|
|
}
|
2007-01-08 15:53:34 +00:00
|
|
|
// uh-changes start
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// uh-changes end
|
2004-05-28 10:53:54 +00:00
|
|
|
?>
|
2002-06-10 05:19:03 +00:00
|
|
|
|
2003-05-03 05:57:29 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-01-18 11:05:46 +00:00
|
|
|
<?php
|
|
|
|
print_footer('home'); // Please do not modify this line
|
2005-01-25 13:40:26 +00:00
|
|
|
?>
|