MDL-36580 backup: Use the encrypted_final_element for lti "secrets"
[moodle.git] / index.php
blobc7bed108852bb0d9959b130dc2ae53b4789fda40
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Moodle frontpage.
20 * @package core
21 * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 if (!file_exists('./config.php')) {
26 header('Location: install.php');
27 die;
30 require_once('config.php');
31 require_once($CFG->dirroot .'/course/lib.php');
32 require_once($CFG->libdir .'/filelib.php');
34 redirect_if_major_upgrade_required();
36 $urlparams = array();
37 if (!empty($CFG->defaulthomepage) && ($CFG->defaulthomepage == HOMEPAGE_MY) && optional_param('redirect', 1, PARAM_BOOL) === 0) {
38 $urlparams['redirect'] = 0;
40 $PAGE->set_url('/', $urlparams);
41 $PAGE->set_course($SITE);
42 $PAGE->set_pagelayout('frontpage');
43 $PAGE->set_other_editing_capability('moodle/course:update');
44 $PAGE->set_other_editing_capability('moodle/course:manageactivities');
45 $PAGE->set_other_editing_capability('moodle/course:activityvisibility');
47 // Prevent caching of this page to stop confusion when changing page after making AJAX changes.
48 $PAGE->set_cacheable(false);
50 if ($CFG->forcelogin) {
51 require_login();
52 } else {
53 user_accesstime_log();
56 $hasmaintenanceaccess = has_capability('moodle/site:maintenanceaccess', context_system::instance());
58 // If the site is currently under maintenance, then print a message.
59 if (!empty($CFG->maintenance_enabled) and !$hasmaintenanceaccess) {
60 print_maintenance_message();
63 $hassiteconfig = has_capability('moodle/site:config', context_system::instance());
65 if ($hassiteconfig && moodle_needs_upgrading()) {
66 redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php');
69 if (get_home_page() != HOMEPAGE_SITE) {
70 // Redirect logged-in users to My Moodle overview if required.
71 $redirect = optional_param('redirect', 1, PARAM_BOOL);
72 if (optional_param('setdefaulthome', false, PARAM_BOOL)) {
73 set_user_preference('user_home_page_preference', HOMEPAGE_SITE);
74 } else if (!empty($CFG->defaulthomepage) && ($CFG->defaulthomepage == HOMEPAGE_MY) && $redirect === 1) {
75 redirect($CFG->wwwroot .'/my/');
76 } else if (!empty($CFG->defaulthomepage) && ($CFG->defaulthomepage == HOMEPAGE_USER)) {
77 $frontpagenode = $PAGE->settingsnav->find('frontpage', null);
78 if ($frontpagenode) {
79 $frontpagenode->add(
80 get_string('makethismyhome'),
81 new moodle_url('/', array('setdefaulthome' => true)),
82 navigation_node::TYPE_SETTING);
83 } else {
84 $frontpagenode = $PAGE->settingsnav->add(get_string('frontpagesettings'), null, navigation_node::TYPE_SETTING, null);
85 $frontpagenode->force_open();
86 $frontpagenode->add(get_string('makethismyhome'),
87 new moodle_url('/', array('setdefaulthome' => true)),
88 navigation_node::TYPE_SETTING);
93 // Trigger event.
94 course_view(context_course::instance(SITEID));
96 // If the hub plugin is installed then we let it take over the homepage here.
97 if (file_exists($CFG->dirroot.'/local/hub/lib.php') and get_config('local_hub', 'hubenabled')) {
98 require_once($CFG->dirroot.'/local/hub/lib.php');
99 $hub = new local_hub();
100 $continue = $hub->display_homepage();
101 // Function display_homepage() returns true if the hub home page is not displayed
102 // ...mostly when search form is not displayed for not logged users.
103 if (empty($continue)) {
104 exit;
108 $PAGE->set_pagetype('site-index');
109 $PAGE->set_docs_path('');
110 $editing = $PAGE->user_is_editing();
111 $PAGE->set_title($SITE->fullname);
112 $PAGE->set_heading($SITE->fullname);
113 $courserenderer = $PAGE->get_renderer('core', 'course');
114 echo $OUTPUT->header();
116 // Print Section or custom info.
117 $siteformatoptions = course_get_format($SITE)->get_format_options();
118 $modinfo = get_fast_modinfo($SITE);
119 $modnames = get_module_types_names();
120 $modnamesplural = get_module_types_names(true);
121 $modnamesused = $modinfo->get_used_module_names();
122 $mods = $modinfo->get_cms();
124 if (!empty($CFG->customfrontpageinclude)) {
125 include($CFG->customfrontpageinclude);
127 } else if ($siteformatoptions['numsections'] > 0) {
128 if ($editing) {
129 // Make sure section with number 1 exists.
130 course_create_sections_if_missing($SITE, 1);
131 // Re-request modinfo in case section was created.
132 $modinfo = get_fast_modinfo($SITE);
134 $section = $modinfo->get_section_info(1);
135 if (($section && (!empty($modinfo->sections[1]) or !empty($section->summary))) or $editing) {
136 echo $OUTPUT->box_start('generalbox sitetopic');
138 // If currently moving a file then show the current clipboard.
139 if (ismoving($SITE->id)) {
140 $stractivityclipboard = strip_tags(get_string('activityclipboard', '', $USER->activitycopyname));
141 echo '<p><font size="2">';
142 echo "$stractivityclipboard&nbsp;&nbsp;(<a href=\"course/mod.php?cancelcopy=true&amp;sesskey=".sesskey()."\">";
143 echo get_string('cancel') . '</a>)';
144 echo '</font></p>';
147 $context = context_course::instance(SITEID);
149 // If the section name is set we show it.
150 if (trim($section->name) !== '') {
151 echo $OUTPUT->heading(
152 format_string($section->name, true, array('context' => $context)),
154 'sectionname'
158 $summarytext = file_rewrite_pluginfile_urls($section->summary,
159 'pluginfile.php',
160 $context->id,
161 'course',
162 'section',
163 $section->id);
164 $summaryformatoptions = new stdClass();
165 $summaryformatoptions->noclean = true;
166 $summaryformatoptions->overflowdiv = true;
168 echo format_text($summarytext, $section->summaryformat, $summaryformatoptions);
170 if ($editing && has_capability('moodle/course:update', $context)) {
171 $streditsummary = get_string('editsummary');
172 echo "<a title=\"$streditsummary\" " .
173 " href=\"course/editsection.php?id=$section->id\">" . $OUTPUT->pix_icon('t/edit', $streditsummary) .
174 "</a><br /><br />";
177 $courserenderer = $PAGE->get_renderer('core', 'course');
178 echo $courserenderer->course_section_cm_list($SITE, $section);
180 echo $courserenderer->course_section_add_cm_control($SITE, $section->section);
181 echo $OUTPUT->box_end();
184 // Include course AJAX.
185 include_course_ajax($SITE, $modnamesused);
187 if (isloggedin() and !isguestuser() and isset($CFG->frontpageloggedin)) {
188 $frontpagelayout = $CFG->frontpageloggedin;
189 } else {
190 $frontpagelayout = $CFG->frontpage;
193 foreach (explode(',', $frontpagelayout) as $v) {
194 switch ($v) {
195 // Display the main part of the front page.
196 case FRONTPAGENEWS:
197 if ($SITE->newsitems) {
198 // Print forums only when needed.
199 require_once($CFG->dirroot .'/mod/forum/lib.php');
201 if (! $newsforum = forum_get_course_forum($SITE->id, 'news')) {
202 print_error('cannotfindorcreateforum', 'forum');
205 // Fetch news forum context for proper filtering to happen.
206 $newsforumcm = get_coursemodule_from_instance('forum', $newsforum->id, $SITE->id, false, MUST_EXIST);
207 $newsforumcontext = context_module::instance($newsforumcm->id, MUST_EXIST);
209 $forumname = format_string($newsforum->name, true, array('context' => $newsforumcontext));
210 echo html_writer::link('#skipsitenews',
211 get_string('skipa', 'access', core_text::strtolower(strip_tags($forumname))),
212 array('class' => 'skip-block skip'));
214 // Wraps site news forum in div container.
215 echo html_writer::start_tag('div', array('id' => 'site-news-forum'));
217 if (isloggedin()) {
218 $SESSION->fromdiscussion = $CFG->wwwroot;
219 $subtext = '';
220 if (\mod_forum\subscriptions::is_subscribed($USER->id, $newsforum)) {
221 if (!\mod_forum\subscriptions::is_forcesubscribed($newsforum)) {
222 $subtext = get_string('unsubscribe', 'forum');
224 } else {
225 $subtext = get_string('subscribe', 'forum');
227 echo $OUTPUT->heading($forumname);
228 $suburl = new moodle_url('/mod/forum/subscribe.php', array('id' => $newsforum->id, 'sesskey' => sesskey()));
229 echo html_writer::tag('div', html_writer::link($suburl, $subtext), array('class' => 'subscribelink'));
230 } else {
231 echo $OUTPUT->heading($forumname);
234 forum_print_latest_discussions($SITE, $newsforum, $SITE->newsitems, 'plain', 'p.modified DESC');
236 // End site news forum div container.
237 echo html_writer::end_tag('div');
239 echo html_writer::tag('span', '', array('class' => 'skip-block-to', 'id' => 'skipsitenews'));
241 break;
243 case FRONTPAGEENROLLEDCOURSELIST:
244 $mycourseshtml = $courserenderer->frontpage_my_courses();
245 if (!empty($mycourseshtml)) {
246 echo html_writer::link('#skipmycourses',
247 get_string('skipa', 'access', core_text::strtolower(get_string('mycourses'))),
248 array('class' => 'skip skip-block'));
250 // Wrap frontpage course list in div container.
251 echo html_writer::start_tag('div', array('id' => 'frontpage-course-list'));
253 echo $OUTPUT->heading(get_string('mycourses'));
254 echo $mycourseshtml;
256 // End frontpage course list div container.
257 echo html_writer::end_tag('div');
259 echo html_writer::tag('span', '', array('class' => 'skip-block-to', 'id' => 'skipmycourses'));
260 break;
262 // No "break" here. If there are no enrolled courses - continue to 'Available courses'.
264 case FRONTPAGEALLCOURSELIST:
265 $availablecourseshtml = $courserenderer->frontpage_available_courses();
266 if (!empty($availablecourseshtml)) {
267 echo html_writer::link('#skipavailablecourses',
268 get_string('skipa', 'access', core_text::strtolower(get_string('availablecourses'))),
269 array('class' => 'skip skip-block'));
271 // Wrap frontpage course list in div container.
272 echo html_writer::start_tag('div', array('id' => 'frontpage-course-list'));
274 echo $OUTPUT->heading(get_string('availablecourses'));
275 echo $availablecourseshtml;
277 // End frontpage course list div container.
278 echo html_writer::end_tag('div');
280 echo html_writer::tag('span', '', array('class' => 'skip-block-to', 'id' => 'skipavailablecourses'));
282 break;
284 case FRONTPAGECATEGORYNAMES:
285 echo html_writer::link('#skipcategories',
286 get_string('skipa', 'access', core_text::strtolower(get_string('categories'))),
287 array('class' => 'skip skip-block'));
289 // Wrap frontpage category names in div container.
290 echo html_writer::start_tag('div', array('id' => 'frontpage-category-names'));
292 echo $OUTPUT->heading(get_string('categories'));
293 echo $courserenderer->frontpage_categories_list();
295 // End frontpage category names div container.
296 echo html_writer::end_tag('div');
298 echo html_writer::tag('span', '', array('class' => 'skip-block-to', 'id' => 'skipcategories'));
299 break;
301 case FRONTPAGECATEGORYCOMBO:
302 echo html_writer::link('#skipcourses',
303 get_string('skipa', 'access', core_text::strtolower(get_string('courses'))),
304 array('class' => 'skip skip-block'));
306 // Wrap frontpage category combo in div container.
307 echo html_writer::start_tag('div', array('id' => 'frontpage-category-combo'));
309 echo $OUTPUT->heading(get_string('courses'));
310 echo $courserenderer->frontpage_combo_list();
312 // End frontpage category combo div container.
313 echo html_writer::end_tag('div');
315 echo html_writer::tag('span', '', array('class' => 'skip-block-to', 'id' => 'skipcourses'));
316 break;
318 case FRONTPAGECOURSESEARCH:
319 echo $OUTPUT->box($courserenderer->course_search_form('', 'short'), 'mdl-align');
320 break;
323 echo '<br />';
325 if ($editing && has_capability('moodle/course:create', context_system::instance())) {
326 echo $courserenderer->add_new_course_button();
328 echo $OUTPUT->footer();