mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
d180d19a83
Support for blocks columns switch when in rtl mode: theme/base/layout/frontpage.php theme/base/layout/general.php Right align course completion checkbox to the right side of the activities and resources, when in RTL mode theme/base/style/course.css Right align DOCK bar, when in RTL mode theme/base/style/dock.css First-name and Last-name Initials (filter) bar (on every users list) letters spacing (usability issue, NOT RTL issue) theme/base/style/core.css Conflicts: theme/base/style/core.css theme/base/style/course.css
116 lines
3.9 KiB
PHP
116 lines
3.9 KiB
PHP
<?php
|
|
|
|
$hassidepre = $PAGE->blocks->region_has_content('side-pre', $OUTPUT);
|
|
$hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
|
|
$showsidepre = $hassidepre && !$PAGE->blocks->region_completely_docked('side-pre', $OUTPUT);
|
|
$showsidepost = $hassidepost && !$PAGE->blocks->region_completely_docked('side-post', $OUTPUT);
|
|
|
|
$custommenu = $OUTPUT->custom_menu();
|
|
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
|
|
|
|
$bodyclasses = array();
|
|
if ($showsidepre && !$showsidepost) {
|
|
if (!right_to_left()) {
|
|
$bodyclasses[] = 'side-pre-only';
|
|
}else{
|
|
$bodyclasses[] = 'side-post-only';
|
|
}
|
|
} else if ($showsidepost && !$showsidepre) {
|
|
if (!right_to_left()) {
|
|
$bodyclasses[] = 'side-post-only';
|
|
}else{
|
|
$bodyclasses[] = 'side-pre-only';
|
|
}
|
|
} else if (!$showsidepost && !$showsidepre) {
|
|
$bodyclasses[] = 'content-only';
|
|
}
|
|
if ($hascustommenu) {
|
|
$bodyclasses[] = 'has_custom_menu';
|
|
}
|
|
|
|
echo $OUTPUT->doctype() ?>
|
|
<html <?php echo $OUTPUT->htmlattributes() ?>>
|
|
<head>
|
|
<title><?php echo $PAGE->title ?></title>
|
|
<link rel="shortcut icon" href="<?php echo $OUTPUT->pix_url('favicon', 'theme')?>" />
|
|
<meta name="description" content="<?php p(strip_tags(format_text($SITE->summary, FORMAT_HTML))) ?>" />
|
|
<?php echo $OUTPUT->standard_head_html() ?>
|
|
</head>
|
|
<body id="<?php p($PAGE->bodyid) ?>" class="<?php p($PAGE->bodyclasses.' '.join(' ', $bodyclasses)) ?>">
|
|
<?php echo $OUTPUT->standard_top_of_body_html() ?>
|
|
|
|
<div id="page">
|
|
|
|
<div id="page-header" class="clearfix">
|
|
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>
|
|
<div class="headermenu"><?php
|
|
echo $OUTPUT->login_info();
|
|
echo $OUTPUT->lang_menu();
|
|
echo $PAGE->headingmenu;
|
|
?></div>
|
|
<?php if ($hascustommenu) { ?>
|
|
<div id="custommenu"><?php echo $custommenu; ?></div>
|
|
<?php } ?>
|
|
</div>
|
|
<!-- END OF HEADER -->
|
|
|
|
<div id="page-content">
|
|
<div id="region-main-box">
|
|
<div id="region-post-box">
|
|
|
|
<div id="region-main-wrap">
|
|
<div id="region-main">
|
|
<div class="region-content">
|
|
<?php echo $OUTPUT->main_content() ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if ($hassidepre OR (right_to_left() AND $hassidepost)) { ?>
|
|
<div id="region-pre" class="block-region">
|
|
<div class="region-content">
|
|
<?php
|
|
if (!right_to_left()) {
|
|
echo $OUTPUT->blocks_for_region('side-pre');
|
|
} elseif ($hassidepost) {
|
|
echo $OUTPUT->blocks_for_region('side-post');
|
|
} ?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if ($hassidepost OR (right_to_left() AND $hassidepre)) { ?>
|
|
<div id="region-post" class="block-region">
|
|
<div class="region-content">
|
|
<?php
|
|
if (!right_to_left()) {
|
|
echo $OUTPUT->blocks_for_region('side-post');
|
|
} elseif ($hassidepre) {
|
|
echo $OUTPUT->blocks_for_region('side-pre');
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- START OF FOOTER -->
|
|
<div id="page-footer">
|
|
<p class="helplink">
|
|
<?php echo page_doc_link(get_string('moodledocslink')) ?>
|
|
</p>
|
|
|
|
<?php
|
|
echo $OUTPUT->login_info();
|
|
echo $OUTPUT->home_link();
|
|
echo $OUTPUT->standard_footer_html();
|
|
?>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<?php echo $OUTPUT->standard_end_of_body_html() ?>
|
|
</body>
|
|
</html>
|