We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb3d8cd commit f7b49d7Copy full SHA for f7b49d7
main/install/configuration.dist.php
@@ -689,3 +689,5 @@
689
3 => 'Dimension',
690
]
691
];*/
692
+// Hide the session list in Reporting tool. Useful when a course has too many sessions.
693
+//$_configuration['hide_reporting_session_list'] = false;
main/tracking/courseLog.php
@@ -338,8 +338,8 @@ function(index) {
338
$html .= $coaches;
339
}
340
341
-if (api_is_platform_admin(true) ||
342
- api_is_session_general_coach()
+if (!api_get_configuration_value('hide_reporting_session_list') &&
+ (api_is_platform_admin(true) || api_is_session_general_coach())
343
) {
344
$sessionList = SessionManager::get_session_by_course($courseInfo['real_id']);
345
0 commit comments