MDL-57791 mlbackend_php: Minimum 2 samples per target value
[moodle.git] / report / stats / lib.php
blobf0a069b2df20a06eb607d9d110ba23b97f802dec
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * This file contains functions used by the log reports
20 * This file is also required by /admin/reports/stats/index.php.
22 * @package report
23 * @subpackage stats
24 * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') || die;
30 /**
31 * This function extends the navigation with the report items
33 * @param navigation_node $navigation The navigation node to extend
34 * @param stdClass $course The course to object for the report
35 * @param stdClass $context The context of the course
37 function report_stats_extend_navigation_course($navigation, $course, $context) {
38 global $CFG;
39 if (empty($CFG->enablestats)) {
40 return;
42 if (has_capability('report/stats:view', $context)) {
43 $url = new moodle_url('/report/stats/index.php', array('course'=>$course->id));
44 $navigation->add(get_string('pluginname', 'report_stats'), $url, navigation_node::TYPE_SETTING, null, null, new pix_icon('i/report', ''));
48 /**
49 * This function extends the course navigation with the report items
51 * @param navigation_node $navigation The navigation node to extend
52 * @param stdClass $user
53 * @param stdClass $course The course to object for the report
55 function report_stats_extend_navigation_user($navigation, $user, $course) {
56 global $CFG;
57 if (empty($CFG->enablestats)) {
58 return;
60 if (report_stats_can_access_user_report($user, $course)) {
61 $url = new moodle_url('/report/stats/user.php', array('id'=>$user->id, 'course'=>$course->id));
62 $navigation->add(get_string('stats'), $url);
66 /**
67 * Is current user allowed to access this report
69 * @private defined in lib.php for performance reasons
71 * @param stdClass $user
72 * @param stdClass $course
73 * @return bool
75 function report_stats_can_access_user_report($user, $course) {
76 global $USER;
78 $coursecontext = context_course::instance($course->id);
79 $personalcontext = context_user::instance($user->id);
81 if (has_capability('report/stats:view', $coursecontext)) {
82 return true;
85 if (has_capability('moodle/user:viewuseractivitiesreport', $personalcontext)) {
86 if ($course->showreports and (is_viewing($coursecontext, $user) or is_enrolled($coursecontext, $user))) {
87 return true;
90 } else if ($user->id == $USER->id) {
91 if ($course->showreports and (is_viewing($coursecontext, $USER) or is_enrolled($coursecontext, $USER))) {
92 return true;
96 return false;
99 /**
100 * Return a list of page types
101 * @param string $pagetype current page type
102 * @param stdClass $parentcontext Block's parent context
103 * @param stdClass $currentcontext Current context of block
104 * @return array
106 function report_stats_page_type_list($pagetype, $parentcontext, $currentcontext) {
107 $array = array(
108 '*' => get_string('page-x', 'pagetype'),
109 'report-*' => get_string('page-report-x', 'pagetype'),
110 'report-stats-*' => get_string('page-report-stats-x', 'report_stats'),
111 'report-stats-index' => get_string('page-report-stats-index', 'report_stats'),
112 'report-stats-user' => get_string('page-report-stats-user', 'report_stats')
114 return $array;
118 * Callback to verify if the given instance of store is supported by this report or not.
120 * @param string $instance store instance.
122 * @return bool returns true if the store is supported by the report, false otherwise.
124 function report_stats_supports_logstore($instance) {
125 if ($instance instanceof \core\log\sql_internal_table_reader || $instance instanceof \logstore_legacy\log\store) {
126 return true;
128 return false;
132 * Add nodes to myprofile page.
134 * @param \core_user\output\myprofile\tree $tree Tree object
135 * @param stdClass $user user object
136 * @param bool $iscurrentuser
137 * @param stdClass $course Course object
138 * @return bool
140 function report_stats_myprofile_navigation(core_user\output\myprofile\tree $tree, $user, $iscurrentuser, $course) {
141 global $CFG;
142 if (empty($CFG->enablestats)) {
143 return false;
145 if (empty($course)) {
146 // We want to display these reports under the site context.
147 $course = get_fast_modinfo(SITEID)->get_course();
149 if (report_stats_can_access_user_report($user, $course)) {
150 $url = new moodle_url('/report/stats/user.php', array('id' => $user->id, 'course' => $course->id));
151 $node = new core_user\output\myprofile\node('reports', 'stats', get_string('stats'), null, $url);
152 $tree->add_node($node);