MDL-22029 obsolete help file index removal
[moodle.git] / index.php
blobbc34b5302e9ac68ad61d6b3c66900050909b2949
1 <?php
2 // index.php - the front page.
4 ///////////////////////////////////////////////////////////////////////////
5 // //
6 // NOTICE OF COPYRIGHT //
7 // //
8 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
9 // http://moodle.org //
10 // //
11 // Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com //
12 // //
13 // This program is free software; you can redistribute it and/or modify //
14 // it under the terms of the GNU General Public License as published by //
15 // the Free Software Foundation; either version 2 of the License, or //
16 // (at your option) any later version. //
17 // //
18 // This program is distributed in the hope that it will be useful, //
19 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
21 // GNU General Public License for more details: //
22 // //
23 // http://www.gnu.org/copyleft/gpl.html //
24 // //
25 ///////////////////////////////////////////////////////////////////////////
28 if (!file_exists('./config.php')) {
29 header('Location: install.php');
30 die;
33 require_once('config.php');
34 require_once($CFG->dirroot .'/course/lib.php');
35 require_once($CFG->libdir .'/filelib.php');
37 redirect_if_major_upgrade_required();
39 if ($CFG->forcelogin) {
40 require_login();
41 } else {
42 user_accesstime_log();
45 /// If the site is currently under maintenance, then print a message
46 if (!empty($CFG->maintenance_enabled) and !has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM))) {
47 print_maintenance_message();
50 if (has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM))) {
51 if (moodle_needs_upgrading()) {
52 redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php');
54 } else if (!empty($CFG->mymoodleredirect)) { // Redirect logged-in users to My Moodle overview if required
55 if (isloggedin() && !isguestuser()) {
56 redirect($CFG->wwwroot .'/my/index.php');
61 if (get_moodle_cookie() == '') {
62 set_moodle_cookie('nobody'); // To help search for cookies on login page
65 if (isloggedin()) {
66 add_to_log(SITEID, 'course', 'view', 'view.php?id='.SITEID, SITEID);
69 $PAGE->set_pagetype('site-index');
70 $PAGE->set_course($SITE);
72 $PAGE->set_other_editing_capability('moodle/course:manageactivities');
73 $PAGE->set_url('/');
74 $PAGE->set_docs_path('');
75 $PAGE->set_pagelayout('frontpage');
76 $editing = $PAGE->user_is_editing();
77 $PAGE->set_title($SITE->fullname);
78 $PAGE->set_heading($SITE->fullname);
79 echo $OUTPUT->header();
81 /// Print Section
82 if ($SITE->numsections > 0) {
84 if (!$section = $DB->get_record('course_sections', array('course'=>$SITE->id, 'section'=>1))) {
85 $DB->delete_records('course_sections', array('course'=>$SITE->id, 'section'=>1)); // Just in case
86 $section->course = $SITE->id;
87 $section->section = 1;
88 $section->summary = '';
89 $section->sequence = '';
90 $section->visible = 1;
91 $section->id = $DB->insert_record('course_sections', $section);
94 if (!empty($section->sequence) or !empty($section->summary) or $editing) {
95 echo $OUTPUT->box_start('generalbox sitetopic');
97 /// If currently moving a file then show the current clipboard
98 if (ismoving($SITE->id)) {
99 $stractivityclipboard = strip_tags(get_string('activityclipboard', '', $USER->activitycopyname));
100 echo '<p><font size="2">';
101 echo "$stractivityclipboard&nbsp;&nbsp;(<a href=\"course/mod.php?cancelcopy=true&amp;sesskey=".sesskey()."\">". get_string('cancel') .'</a>)';
102 echo '</font></p>';
105 $context = get_context_instance(CONTEXT_COURSE, SITEID);
106 $summarytext = file_rewrite_pluginfile_urls($section->summary, 'pluginfile.php', $context->id, 'course_section', $section->id);
107 $summaryformatoptions = new object();
108 $summaryformatoptions->noclean = true;
110 echo format_text($summarytext, FORMAT_HTML, $summaryformatoptions);
112 if ($editing) {
113 $streditsummary = get_string('editsummary');
114 echo "<a title=\"$streditsummary\" ".
115 " href=\"course/editsection.php?id=$section->id\"><img src=\"" . $OUTPUT->pix_url('t/edit') . "\" ".
116 " class=\"iconsmall\" alt=\"$streditsummary\" /></a><br /><br />";
119 get_all_mods($SITE->id, $mods, $modnames, $modnamesplural, $modnamesused);
120 print_section($SITE, $section, $mods, $modnamesused, true);
122 if ($editing) {
123 print_section_add_menus($SITE, $section->section, $modnames);
125 echo $OUTPUT->box_end();
129 if (isloggedin() and !isguestuser() and isset($CFG->frontpageloggedin)) {
130 $frontpagelayout = $CFG->frontpageloggedin;
131 } else {
132 $frontpagelayout = $CFG->frontpage;
135 foreach (explode(',',$frontpagelayout) as $v) {
136 switch ($v) { /// Display the main part of the front page.
137 case FRONTPAGENEWS:
138 if ($SITE->newsitems) { // Print forums only when needed
139 require_once($CFG->dirroot .'/mod/forum/lib.php');
141 if (! $newsforum = forum_get_course_forum($SITE->id, 'news')) {
142 print_error('cannotfindorcreateforum', 'forum');
145 if (isloggedin()) {
146 $SESSION->fromdiscussion = $CFG->wwwroot;
147 $subtext = '';
148 if (forum_is_subscribed($USER->id, $newsforum)) {
149 if (!forum_is_forcesubscribed($newsforum)) {
150 $subtext = get_string('unsubscribe', 'forum');
152 } else {
153 $subtext = get_string('subscribe', 'forum');
155 echo $OUTPUT->heading($newsforum->name, 2, 'headingblock header');
156 echo '<div class="subscribelink"><a href="mod/forum/subscribe.php?id='.$newsforum->id.'">'.$subtext.'</a></div>';
157 } else {
158 echo $OUTPUT->heading($newsforum->name, 2, 'headingblock header');
161 forum_print_latest_discussions($SITE, $newsforum, $SITE->newsitems, 'plain', 'p.modified DESC');
163 break;
165 case FRONTPAGECOURSELIST:
167 if (isloggedin() and !has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM)) and !isguestuser() and empty($CFG->disablemycourses)) {
168 echo $OUTPUT->heading(get_string('mycourses'), 2, 'headingblock header');
169 print_my_moodle();
170 } else if ((!has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM)) and !isguestuser()) or ($DB->count_records('course') <= FRONTPAGECOURSELIMIT)) {
171 // admin should not see list of courses when there are too many of them
172 echo $OUTPUT->heading(get_string('availablecourses'), 2, 'headingblock header');
173 print_courses(0);
175 break;
177 case FRONTPAGECATEGORYNAMES:
179 echo $OUTPUT->heading(get_string('categories'), 2, 'headingblock header');
180 echo $OUTPUT->box_start('generalbox categorybox');
181 print_whole_category_list(NULL, NULL, NULL, -1, false);
182 echo $OUTPUT->box_end();
183 print_course_search('', false, 'short');
184 break;
186 case FRONTPAGECATEGORYCOMBO:
188 echo $OUTPUT->heading(get_string('categories'), 2, 'headingblock header');
189 echo $OUTPUT->box_start('generalbox categorybox');
190 print_whole_category_list(NULL, NULL, NULL, -1, true);
191 echo $OUTPUT->box_end();
192 print_course_search('', false, 'short');
193 break;
195 case FRONTPAGETOPICONLY: // Do nothing!! :-)
196 break;
199 echo '<br />';
202 echo $OUTPUT->footer();