Skip to content
Snippets Groups Projects
Commit 0ee1daf0 authored by Alexander Bias's avatar Alexander Bias
Browse files

Add missing PHPDoc to make codechecker happier

parent 43781fe5
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ Changes ...@@ -6,6 +6,7 @@ Changes
### Unreleased ### Unreleased
* 2018-05-17 - Add missing PHPDoc to make codechecker happier.
* 2018-05-16 - Implement Privacy API. * 2018-05-16 - Implement Privacy API.
* 2018-04-25 - Removed build_action_menu_from_navigation in core_renderer as MDL-58174 is integrated. * 2018-04-25 - Removed build_action_menu_from_navigation in core_renderer as MDL-58174 is integrated.
* 2018-04-25 - Fixed bug with accessing courses with guest login. Thanks to Benedikt Schneider for reporting and pointing to the solution. * 2018-04-25 - Fixed bug with accessing courses with guest login. Thanks to Benedikt Schneider for reporting and pointing to the solution.
......
...@@ -364,6 +364,12 @@ function theme_boost_campus_get_incourse_activity_settings() { ...@@ -364,6 +364,12 @@ function theme_boost_campus_get_incourse_activity_settings() {
return $node; return $node;
} }
/**
* Build the guest access hint HTML code.
*
* @param int $courseid The course ID.
* @return string.
*/
function theme_boost_campus_get_course_guest_access_hint($courseid) { function theme_boost_campus_get_course_guest_access_hint($courseid) {
global $CFG; global $CFG;
require_once($CFG->dirroot . '/enrol/self/lib.php'); require_once($CFG->dirroot . '/enrol/self/lib.php');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment