MDL-37516 Translate fieldnames on output only.
[moodle.git] / mod / lesson / edit.php
blobaeeb201429783d12ba6902de8c509b944bbe0986
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Provides the interface for overall authoring of lessons
21 * @package mod
22 * @subpackage lesson
23 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 **/
27 require_once('../../config.php');
28 require_once($CFG->dirroot.'/mod/lesson/locallib.php');
30 $id = required_param('id', PARAM_INT);
32 $cm = get_coursemodule_from_id('lesson', $id, 0, false, MUST_EXIST);
33 $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
34 $lesson = new lesson($DB->get_record('lesson', array('id' => $cm->instance), '*', MUST_EXIST));
36 require_login($course, false, $cm);
38 $context = context_module::instance($cm->id);
39 require_capability('mod/lesson:manage', $context);
41 $mode = optional_param('mode', get_user_preferences('lesson_view', 'collapsed'), PARAM_ALPHA);
42 $PAGE->set_url('/mod/lesson/edit.php', array('id'=>$cm->id,'mode'=>$mode));
44 if ($mode != get_user_preferences('lesson_view', 'collapsed') && $mode !== 'single') {
45 set_user_preference('lesson_view', $mode);
48 $lessonoutput = $PAGE->get_renderer('mod_lesson');
49 $PAGE->navbar->add(get_string('edit'));
50 echo $lessonoutput->header($lesson, $cm, $mode, false, null, get_string('edit', 'lesson'));
52 if (!$lesson->has_pages()) {
53 // There are no pages; give teacher some options
54 require_capability('mod/lesson:edit', $context);
55 echo $lessonoutput->add_first_page_links($lesson);
56 } else {
57 switch ($mode) {
58 case 'collapsed':
59 echo $lessonoutput->display_edit_collapsed($lesson, $lesson->firstpageid);
60 break;
61 case 'single':
62 $pageid = required_param('pageid', PARAM_INT);
63 $PAGE->url->param('pageid', $pageid);
64 $singlepage = $lesson->load_page($pageid);
65 echo $lessonoutput->display_edit_full($lesson, $singlepage->id, $singlepage->prevpageid, true);
66 break;
67 case 'full':
68 echo $lessonoutput->display_edit_full($lesson, $lesson->firstpageid, 0);
69 break;
73 echo $lessonoutput->footer();