***prevpageid of page $page->id set to $prevpageid***"); } $prevpageid = $page->id; $pageid = $page->nextpageid; if ($single === true) { $single = 'stop'; } } return $this->output->box($content, 'edit_pages_box'); } /** * Returns HTML to display the add page links * * @param lesson $lesson * @param int $prevpageid * @return string */ public function add_page_links(lesson $lesson, $prevpageid=false) { global $CFG; $links = array(); $importquestionsurl = new moodle_url('/mod/lesson/import.php',array('id'=>$this->page->cm->id, 'pageid'=>$prevpageid)); $links[] = html_writer::link($importquestionsurl, get_string('importquestions', 'lesson')); $manager = lesson_page_type_manager::get($lesson); foreach($manager->get_add_page_type_links($prevpageid) as $link) { $links[] = html_writer::link($link['addurl'], $link['name']); } $addquestionurl = new moodle_url('/mod/lesson/editpage.php', array('id'=>$this->page->cm->id, 'pageid'=>$prevpageid)); $links[] = html_writer::link($addquestionurl, get_string('addaquestionpagehere', 'lesson')); return $this->output->box(implode(" | \n", $links), 'addlinks'); } /** * Return HTML to display add first page links * @param lesson $lesson * @return string */ public function add_first_page_links(lesson $lesson) { global $CFG; $prevpageid = 0; $output = $this->output->heading(get_string("whatdofirst", "lesson"), 3); $links = array(); $importquestionsurl = new moodle_url('/mod/lesson/import.php',array('id'=>$this->page->cm->id, 'pageid'=>$prevpageid)); $links[] = html_writer::link($importquestionsurl, get_string('importquestions', 'lesson')); $manager = lesson_page_type_manager::get($lesson); foreach ($manager->get_add_page_type_links($prevpageid) as $link) { $link['addurl']->param('firstpage', 1); $links[] = html_writer::link($link['addurl'], $link['name']); } $addquestionurl = new moodle_url('/mod/lesson/editpage.php', array('id'=>$this->page->cm->id, 'pageid'=>$prevpageid, 'firstpage'=>1)); $links[] = html_writer::link($addquestionurl, get_string('addaquestionpage', 'lesson')); return $this->output->box($output.'
'.implode('
', $links).'
', 'generalbox firstpageoptions'); } /** * Returns HTML to display action links for a page * * @param lesson_page $page * @param bool $printmove * @param bool $printaddpage * @return string */ public function page_action_links(lesson_page $page, $printmove, $printaddpage=false) { global $CFG; $actions = array(); if ($printmove) { $url = new moodle_url('/mod/lesson/lesson.php', array('id' => $this->page->cm->id, 'action' => 'move', 'pageid' => $page->id, 'sesskey' => sesskey())); $label = get_string('movepagenamed', 'lesson', format_string($page->title)); $img = $this->output->pix_icon('t/move', $label); $actions[] = html_writer::link($url, $img, array('title' => $label)); } $url = new moodle_url('/mod/lesson/editpage.php', array('id' => $this->page->cm->id, 'pageid' => $page->id, 'edit' => 1)); $label = get_string('updatepagenamed', 'lesson', format_string($page->title)); $img = $this->output->pix_icon('t/edit', $label); $actions[] = html_writer::link($url, $img, array('title' => $label)); // Duplicate action. $url = new moodle_url('/mod/lesson/lesson.php', array('id' => $this->page->cm->id, 'pageid' => $page->id, 'action' => 'duplicate', 'sesskey' => sesskey())); $label = get_string('duplicatepagenamed', 'lesson', format_string($page->title)); $img = $this->output->pix_icon('e/copy', $label, 'mod_lesson'); $actions[] = html_writer::link($url, $img, array('title' => $label)); $url = new moodle_url('/mod/lesson/view.php', array('id' => $this->page->cm->id, 'pageid' => $page->id)); $label = get_string('previewpagenamed', 'lesson', format_string($page->title)); $img = $this->output->pix_icon('t/preview', $label); $actions[] = html_writer::link($url, $img, array('title' => $label)); $url = new moodle_url('/mod/lesson/lesson.php', array('id' => $this->page->cm->id, 'action' => 'confirmdelete', 'pageid' => $page->id, 'sesskey' => sesskey())); $label = get_string('deletepagenamed', 'lesson', format_string($page->title)); $img = $this->output->pix_icon('t/delete', $label); $actions[] = html_writer::link($url, $img, array('title' => $label)); if ($printaddpage) { $options = array(); $manager = lesson_page_type_manager::get($page->lesson); $links = $manager->get_add_page_type_links($page->id); foreach ($links as $link) { $options[$link['type']] = $link['name']; } $options[0] = get_string('addaquestionpage', 'lesson'); $addpageurl = new moodle_url('/mod/lesson/editpage.php', array('id'=>$this->page->cm->id, 'pageid'=>$page->id, 'sesskey'=>sesskey())); $addpageselect = new single_select($addpageurl, 'qtype', $options, null, array(''=>get_string('addanewpage', 'lesson').'...'), 'addpageafter'.$page->id); $addpageselect->attributes = ['aria-label' => get_string('actions', 'lesson')]; $addpageselector = $this->output->render($addpageselect); } if (isset($addpageselector)) { $actions[] = $addpageselector; } return implode(' ', $actions); } /** * Prints the on going message to the user. * * With custom grading On, displays points * earned out of total points possible thus far. * With custom grading Off, displays number of correct * answers out of total attempted. * * @param object $lesson The lesson that the user is taking. * @return void **/ /** * Prints the on going message to the user. * * With custom grading On, displays points * earned out of total points possible thus far. * With custom grading Off, displays number of correct * answers out of total attempted. * * @param lesson $lesson * @return string */ public function ongoing_score(lesson $lesson) { return $this->output->box($lesson->get_ongoing_score_message(), "ongoing center"); } /** * Returns HTML to display a progress bar of progression through a lesson * * @param lesson $lesson * @param int $progress optional, if empty it will be calculated * @return string */ public function progress_bar(lesson $lesson, $progress = null) { $context = context_module::instance($this->page->cm->id); // lesson setting to turn progress bar on or off if (!$lesson->progressbar) { return ''; } // catch teachers if (has_capability('mod/lesson:manage', $context)) { return $this->output->notification(get_string('progressbarteacherwarning2', 'lesson')); } if ($progress === null) { $progress = $lesson->calculate_progress(); } $content = html_writer::start_tag('div'); $content .= html_writer::start_tag('div', array('class' => 'progress')); $content .= html_writer::start_tag('div', array('class' => 'progress-bar bar', 'role' => 'progressbar', 'style' => 'width: ' . $progress .'%', 'aria-valuenow' => $progress, 'aria-valuemin' => 0, 'aria-valuemax' => 100)); $content .= $progress . "%"; $content .= html_writer::end_tag('div'); $content .= html_writer::end_tag('div'); $printprogress = html_writer::tag('div', get_string('progresscompleted', 'lesson', $progress) . $content); return $this->output->box($printprogress, 'progress_bar'); } /** * Returns HTML to show the start of a slideshow * @param lesson $lesson */ public function slideshow_start(lesson $lesson) { $attributes = array(); $attributes['class'] = 'slideshow'; $attributes['style'] = 'background-color:'.$lesson->properties()->bgcolor.';height:'. $lesson->properties()->height.'px;width:'.$lesson->properties()->width.'px;'; $output = html_writer::start_tag('div', $attributes); return $output; } /** * Returns HTML to show the end of a slideshow */ public function slideshow_end() { $output = html_writer::end_tag('div'); return $output; } /** * Returns a P tag containing contents * @param string $contents * @param string $class */ public function paragraph($contents, $class='') { $attributes = array(); if ($class !== '') { $attributes['class'] = $class; } $output = html_writer::tag('p', $contents, $attributes); return $output; } /** * Returns the HTML for displaying the end of lesson page. * * @param lesson $lesson lesson instance * @param stdclass $data lesson data to be rendered * @return string HTML contents */ public function display_eol_page(lesson $lesson, $data) { $output = ''; $canmanage = $lesson->can_manage(); $course = $lesson->courserecord; if ($lesson->custom && !$canmanage && (($data->gradeinfo->nquestions < $lesson->minquestions))) { $output .= $this->box_start('generalbox boxaligncenter'); } if ($data->gradelesson) { // We are using level 3 header because the page title is a sub-heading of lesson title (MDL-30911). $output .= $this->heading(get_string("congratulations", "lesson"), 3); $output .= $this->box_start('generalbox boxaligncenter'); } if ($data->notenoughtimespent !== false) { $output .= $this->paragraph(get_string("notenoughtimespent", "lesson", $data->notenoughtimespent), 'center'); } if ($data->numberofpagesviewed !== false) { $output .= $this->paragraph(get_string("numberofpagesviewed", "lesson", $data->numberofpagesviewed), 'center'); } if ($data->youshouldview !== false) { $output .= $this->paragraph(get_string("youshouldview", "lesson", $data->youshouldview), 'center'); } if ($data->numberofcorrectanswers !== false) { $output .= $this->paragraph(get_string("numberofcorrectanswers", "lesson", $data->numberofcorrectanswers), 'center'); } if ($data->displayscorewithessays !== false) { $output .= $this->box(get_string("displayscorewithessays", "lesson", $data->displayscorewithessays), 'center'); } else if ($data->displayscorewithoutessays !== false) { $output .= $this->box(get_string("displayscorewithoutessays", "lesson", $data->displayscorewithoutessays), 'center'); } if ($data->yourcurrentgradeisoutof !== false) { $output .= $this->paragraph(get_string("yourcurrentgradeisoutof", "lesson", $data->yourcurrentgradeisoutof), 'center'); } if ($data->yourcurrentgradeis !== false) { $output .= $this->paragraph(get_string("yourcurrentgradeis", "lesson", $data->yourcurrentgradeis), 'center'); } if ($data->eolstudentoutoftimenoanswers !== false) { $output .= $this->paragraph(get_string("eolstudentoutoftimenoanswers", "lesson")); } if ($data->welldone !== false) { $output .= $this->paragraph(get_string("welldone", "lesson")); } if ($data->progresscompleted !== false) { $output .= $this->progress_bar($lesson, $data->progresscompleted); } if ($data->displayofgrade !== false) { $output .= $this->paragraph(get_string("displayofgrade", "lesson"), 'center'); } $output .= $this->box_end(); // End of Lesson button to Continue. if ($data->reviewlesson !== false) { $output .= html_writer::link($data->reviewlesson, get_string('reviewlesson', 'lesson'), array('class' => 'centerpadded lessonbutton standardbutton pr-3')); } if ($data->modattemptsnoteacher !== false) { $output .= $this->paragraph(get_string("modattemptsnoteacher", "lesson"), 'centerpadded'); } if ($data->activitylink !== false) { $output .= $data->activitylink; } $url = new moodle_url('/course/view.php', array('id' => $course->id)); $output .= html_writer::link($url, get_string('returnto', 'lesson', format_string($course->fullname, true)), array('class' => 'centerpadded lessonbutton standardbutton pr-3')); if (has_capability('gradereport/user:view', context_course::instance($course->id)) && $course->showgrades && $lesson->grade != 0 && !$lesson->practice) { $url = new moodle_url('/grade/index.php', array('id' => $course->id)); $output .= html_writer::link($url, get_string('viewgrades', 'lesson'), array('class' => 'centerpadded lessonbutton standardbutton pr-3')); } return $output; } /** * Render the override action menu. * * @param \mod_lesson\output\override_action_menu $overrideactionmenu The overrideactionmenu * * @return string The rendered override action menu. */ public function render_override_action_menu(\mod_lesson\output\override_action_menu $overrideactionmenu): string { $context = $overrideactionmenu->export_for_template($this); return $this->render_from_template('mod_lesson/override_action_menu', $context); } /** * Render the edit action buttons. * * @param \mod_lesson\output\edit_action_buttons $editbuttons The editbuttons * * @return string The rendered edit action buttons. */ public function render_edit_action_buttons(\mod_lesson\output\edit_action_buttons $editbuttons): string { $context = $editbuttons->export_for_template($this); return $this->render_from_template('mod_lesson/edit_action_buttons', $context); } /** * Render the edit action area. * * @param \mod_lesson\output\edit_action_area $editarea The edit area. * @return string The rendered edit action area. */ public function render_edit_action_area(\mod_lesson\output\edit_action_area $editarea): string { $context = $editarea->export_for_template($this); return $this->render_from_template('mod_lesson/edit_action_area', $context); } /** * Render the report action menu * * @param \mod\lesson\output\report_action_menu $reportmenu The reportmenu. * @return string The rendered report action menu. */ public function render_report_action_menu(\mod_lesson\output\report_action_menu $reportmenu): string { $context = $reportmenu->export_for_template($this); return $this->render_from_template('mod_lesson/report_action_menu', $context); } }