Mini Shell
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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 3 of the License, or
// (at your option) any later version.
//
// Moodle 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.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Theme LearnR - Drawers page layout.
*
* This layoutfile is based on theme/boost/layout/drawers.php
*
* Modifications compared to this layout file:
* * Render theme_learnr/drawers instead of theme_boost/drawers template
* * Include activity navigation
* * Include course related hints
* * Include back to top button
* * Include scroll spy
* * Include footnote
* * Include static pages
* * Include Jvascript disabled hint
* * Include advertisement tiles
* * Include info banners
* * Include additional block regions
*
* @package theme_learnr
* @copyright 2022 Luca Bösch, BFH Bern University of Applied Sciences [email protected]
* @copyright based on code from theme_boost by Bas Brands
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/behat/lib.php');
require_once($CFG->dirroot . '/course/lib.php');
// Require own locallib.php.
require_once($CFG->dirroot . '/theme/learnr/locallib.php');
// Add activity navigation if the feature is enabled.
$activitynavigation = get_config('theme_learnr', 'activitynavigation');
if ($activitynavigation == THEME_LEARNR_SETTING_SELECT_YES) {
$PAGE->theme->usescourseindex = false;
}
// Add block button in editing mode.
$addblockbutton = $OUTPUT->addblockbutton();
user_preference_allow_ajax_update('drawer-open-index', PARAM_BOOL);
user_preference_allow_ajax_update('drawer-open-block', PARAM_BOOL);
if (isloggedin()) {
$courseindexopen = (get_user_preferences('drawer-open-index', true) == true);
$blockdraweropen = (get_user_preferences('drawer-open-block') == true);
} else {
$courseindexopen = false;
$blockdraweropen = false;
}
if (defined('BEHAT_SITE_RUNNING')) {
$blockdraweropen = true;
}
$extraclasses = ['uses-drawers'];
if ($courseindexopen) {
$extraclasses[] = 'drawer-open-index';
}
$blockshtml = $OUTPUT->blocks('side-pre');
$hasblocks = (strpos($blockshtml, 'data-block=') !== false || !empty($addblockbutton));
if (!$hasblocks) {
$blockdraweropen = false;
}
$courseindex = core_course_drawer();
if (!$courseindex) {
$courseindexopen = false;
}
$bodyattributes = $OUTPUT->body_attributes($extraclasses);
$forceblockdraweropen = $OUTPUT->firstview_fakeblocks();
$secondarynavigation = false;
$overflow = '';
if ($PAGE->has_secondary_navigation()) {
$tablistnav = $PAGE->has_tablist_secondary_navigation();
$moremenu = new \core\navigation\output\more_menu($PAGE->secondarynav, 'nav-tabs', true, $tablistnav);
$secondarynavigation = $moremenu->export_for_template($OUTPUT);
$overflowdata = $PAGE->secondarynav->get_overflow_menu_data();
if (!is_null($overflowdata)) {
$overflow = $overflowdata->export_for_template($OUTPUT);
}
}
$primary = new core\navigation\output\primary($PAGE);
$renderer = $PAGE->get_renderer('core');
$primarymenu = $primary->export_for_template($renderer);
$buildregionmainsettings = !$PAGE->include_region_main_settings_in_header_actions() && !$PAGE->has_secondary_navigation();
// If the settings menu will be included in the header then don't add it here.
$regionmainsettingsmenu = $buildregionmainsettings ? $OUTPUT->region_main_settings_menu() : false;
$header = $PAGE->activityheader;
$headercontent = $header->export_for_template($renderer);
// DBN Update begin
$showcourseindexnav = (empty($this->page->theme->settings->showcourseindexnav)) ? false : $this->page->theme->settings->showcourseindexnav;
// DBN Update end
$templatecontext = [
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]),
'output' => $OUTPUT,
'sidepreblocks' => $blockshtml,
'hasblocks' => $hasblocks,
'bodyattributes' => $bodyattributes,
'courseindexopen' => $courseindexopen,
'blockdraweropen' => $blockdraweropen,
'courseindex' => $courseindex,
'primarymoremenu' => $primarymenu['moremenu'],
'secondarymoremenu' => $secondarynavigation ?: false,
'mobileprimarynav' => $primarymenu['mobileprimarynav'],
'usermenu' => $primarymenu['user'],
'langmenu' => $primarymenu['lang'],
'forceblockdraweropen' => $forceblockdraweropen,
'regionmainsettingsmenu' => $regionmainsettingsmenu,
'hasregionmainsettingsmenu' => !empty($regionmainsettingsmenu),
'overflow' => $overflow,
'headercontent' => $headercontent,
'addblockbutton' => $addblockbutton,
// DBN Update begin
'showcourseindexnav' => $showcourseindexnav
// DBN Update end
];
// Include the template content for the course related hints.
require_once(__DIR__ . '/includes/courserelatedhints.php');
// Include the template content for the block regions.
require_once(__DIR__ . '/includes/blockregions.php');
// Include the content for the back to top button.
require_once(__DIR__ . '/includes/backtotopbutton.php');
// Include the content for the scrollspy.
require_once(__DIR__ . '/includes/scrollspy.php');
// Include the template content for the footnote.
require_once(__DIR__ . '/includes/footnote.php');
// Include the template content for the static pages.
require_once(__DIR__ . '/includes/staticpages.php');
// Include the template content for the JavaScript disabled hint.
require_once(__DIR__ . '/includes/javascriptdisabledhint.php');
// Include the template content for the info banners.
require_once(__DIR__ . '/includes/infobanners.php');
// Include the template content for the navbar styling.
require_once(__DIR__ . '/includes/navbar.php');
// DBN Update begin.
// Include the template content for the advertisement tiles, but only if we are on the frontpage.
if ((strpos($this->page->theme->settings->showadvertonpages,1) !== false) && $PAGE->pagelayout == 'frontpage') {
require_once(__DIR__ . '/includes/advertisementtiles.php');
}
if ((strpos($this->page->theme->settings->showadvertonpages,2) !== false) && $PAGE->pagelayout == 'mydashboard') {
require_once(__DIR__ . '/includes/advertisementtiles.php');
}
if ((strpos($this->page->theme->settings->showadvertonpages,3) !== false) && $PAGE->pagelayout == 'mycourses') {
require_once(__DIR__ . '/includes/advertisementtiles.php');
}
if ((strpos($this->page->theme->settings->showadvertonpages,4) !== false) && $PAGE->pagelayout == 'course') {
require_once(__DIR__ . '/includes/advertisementtiles.php');
}
// DBN Update end.
// Render drawers.mustache from learnr.
echo $OUTPUT->render_from_template('theme_learnr/drawers', $templatecontext);
Zerion Mini Shell 1.0