Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moodle-theme_boost_campus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elc
moodle-theme_boost_campus
Commits
b77b8516
Commit
b77b8516
authored
6 years ago
by
Kathrin Osswald
Browse files
Options
Downloads
Patches
Plain Diff
Further formal changes to the renderers to be constistent with Moodle core.
parent
a57f94ad
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES.md
+1
-0
1 addition, 0 deletions
CHANGES.md
classes/output/core_renderer.php
+11
-6
11 additions, 6 deletions
classes/output/core_renderer.php
with
12 additions
and
6 deletions
CHANGES.md
+
1
−
0
View file @
b77b8516
...
...
@@ -6,6 +6,7 @@ Changes
### Unreleased
*
2019-06-03 - Further formal changes to the renderers to be constistent with Moodle core.
*
2019-05-31 - Adjusted function render_help_icon() in core_renderer.php due to upstream changes in theme Boost.
*
2019-05-31 - Adjusted function render_login() in core_renderer.php due to upstream changes in theme Boost.
*
2019-05-31 - Adjusted function context_header_settings_menu() in core_renderer.php due to upstream changes in theme Boost.
...
...
This diff is collapsed.
Click to expand it.
classes/output/core_renderer.php
+
11
−
6
View file @
b77b8516
...
...
@@ -294,6 +294,7 @@ class core_renderer extends \core_renderer {
$showfrontpagemenu
=
false
;
$showusermenu
=
false
;
// We are on the course home page.
// MODIFICATION START.
// REASON: With the original code, the course settings icon will only appear on the course main page.
// Therefore the access to the course settings and related functions is not possible on other
...
...
@@ -450,5 +451,9 @@ class core_renderer extends \core_renderer {
return
$this
->
render_from_template
(
'core/help_icon'
,
$context
);
}
// MODIFICATION END.
/* ORIGINAL START.
$context = $helpicon->export_for_template($this);
return $this->render_from_template('core/help_icon', $context);
ORIGINAL END. */
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment