mirror of
https://github.com/moodle/moodle.git
synced 2025-08-10 19:36:41 +02:00

Fix I edit profile steps Apply fixed header in css Remove transitions from menus for behat Be more specific about some "I follow" steps Navigation path changes "Current course" node removed from nav tree Adapt tests because there are no default blocks Force some space between action menu items
54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* A two column layout for the boost theme.
|
|
*
|
|
* @package theme_boost
|
|
* @copyright 2016 Damyon Wiese
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
user_preference_allow_ajax_update('drawer-open-nav', PARAM_ALPHA);
|
|
require_once($CFG->libdir . '/behat/lib.php');
|
|
|
|
if (isloggedin() && !behat_is_test_site()) {
|
|
$navdraweropen = (get_user_preferences('drawer-open-nav', 'true') == 'true');
|
|
} else {
|
|
$navdraweropen = false;
|
|
}
|
|
$extraclasses = [];
|
|
if ($navdraweropen) {
|
|
$extraclasses[] = 'drawer-open-left';
|
|
}
|
|
$bodyattributes = $OUTPUT->body_attributes($extraclasses);
|
|
$blockshtml = $OUTPUT->blocks('side-pre');
|
|
$hasblocks = strpos($blockshtml, 'data-block=') !== false;
|
|
|
|
$templatecontext = [
|
|
'sitename' => format_string($SITE->shortname, true, array('context' => context_course::instance(SITEID))),
|
|
'output' => $OUTPUT,
|
|
'sidepreblocks' => $blockshtml,
|
|
'hasblocks' => $hasblocks,
|
|
'bodyattributes' => $bodyattributes,
|
|
'navdraweropen' => $navdraweropen
|
|
];
|
|
|
|
$templatecontext['flatnavigation'] = $PAGE->flatnav;
|
|
echo $OUTPUT->render_from_template('theme_boost/columns2', $templatecontext);
|
|
|