Skip to content

Commit

Permalink
V3.4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gjb2048 committed Jan 24, 2018
1 parent 5943fbc commit 1c29e4c
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Version Information
===================
24th January 2018 - Version 3.4.0.1
1. Initial Moodle 3.4 version.
2. Add reset user tours link to the footer.
3. Add activity navigation.
4. Fix messages string in user menu.

15th January 2018 - Version 3.3.0.5
1. Fix missing '$left' parameter in 'theme_campus_render_slide_controls()' call.

Expand Down
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ About

Required version of Moodle
==========================
This version works with Moodle 3.3 version 2017051500.00 (Build: 20170515) and above within the 3.3 branch until the
This version works with Moodle 3.4 version 2017111300.00 (Build: 20171113) and above within the 3.4 branch until the
next release.

Please ensure that your hardware and software complies with 'Requirements' in 'Installing Moodle' on
'docs.moodle.org/33/en/Installing_Moodle'.
'docs.moodle.org/34/en/Installing_Moodle'.

Installation
============
Expand Down
2 changes: 1 addition & 1 deletion classes/output/core_renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ public function custom_menu_user() {

// Check if messaging is enabled.
if (!empty($CFG->messaging)) {
$branchlabel = '<em><span class="fa fa-envelope"></span>' . get_string('pluginname', 'block_messages') . '</em>';
$branchlabel = '<em><span class="fa fa-envelope"></span>'.get_string('messages', 'message').'</em>';
$branchurl = new moodle_url('/message/index.php');
$usermenu .= html_writer::tag('li', html_writer::link($branchurl, $branchlabel));
}
Expand Down
1 change: 1 addition & 0 deletions layout/columns2l.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
}
echo $OUTPUT->course_content_header();
echo $OUTPUT->main_content();
echo $OUTPUT->activity_navigation();
echo $OUTPUT->course_content_footer();
?>
</section>
Expand Down
1 change: 1 addition & 0 deletions layout/columns2r.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
}
echo $OUTPUT->course_content_header();
echo $OUTPUT->main_content();
echo $OUTPUT->activity_navigation();
echo $OUTPUT->course_content_footer();
?>
</section>
Expand Down
1 change: 1 addition & 0 deletions layout/columns3.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
}
echo $OUTPUT->course_content_header();
echo $OUTPUT->main_content();
echo $OUTPUT->activity_navigation();
echo $OUTPUT->course_content_footer();
?>
</section>
Expand Down
5 changes: 5 additions & 0 deletions layout/tiles/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
<p class="helplink"><?php echo $OUTPUT->page_doc_link(); ?></p>
<?php
echo $html->footnote;
?>
<div class="row-fluid">
<div class="tool_usertours-resettourcontainer span12"></div>
</div>
<?php
$logininfofooter = (!isset($PAGE->theme->settings->showlogininfofooter)) ? true : $PAGE->theme->settings->showlogininfofooter;
if ($logininfofooter) {
echo $OUTPUT->login_info();
Expand Down
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2017071904; // Note: Must never be less than M3.2 possible last version.
$plugin->requires = 2017051500.00; // 3.3 (Build: 20170515).
$plugin->version = 2018012400; // Note: Must never be less than M3.3 possible last version.
$plugin->requires = 2017111300.00; // 3.4 (Build: 20171113).
$plugin->component = 'theme_campus';
$plugin->maturity = MATURITY_BETA;
$plugin->release = '3.3.0.5';
$plugin->release = '3.4.0.1';
$plugin->dependencies = array(
'theme_bootstrapbase' => 2017051500
'theme_bootstrapbase' => 2017111300
);

0 comments on commit 1c29e4c

Please sign in to comment.