Skip to content

Commit f263d67

Browse files
authored
Merge pull request #142 from learnweb/fixfeature/makeuserstatsasitesetting
added site setting to disable user stats feature
2 parents c9a524e + c619f71 commit f263d67

File tree

6 files changed

+26
-16
lines changed

6 files changed

+26
-16
lines changed

classes/privacy/provider.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -161,17 +161,17 @@ public static function get_contexts_for_userid(int $userid) : contextlist {
161161
)";
162162

163163
$params = [
164-
'modname' => 'moodleoverflow',
164+
'modname' => 'moodleoverflow',
165165
'contextlevel' => CONTEXT_MODULE,
166-
'duserid' => $userid,
167-
'dmuserid' => $userid,
168-
'puserid' => $userid,
169-
'ruserid' => $userid,
170-
'suserid' => $userid,
171-
'dsuserid' => $userid,
172-
'rauserid' => $userid,
173-
'tuserid' => $userid,
174-
'guserid' => $userid
166+
'duserid' => $userid,
167+
'dmuserid' => $userid,
168+
'puserid' => $userid,
169+
'ruserid' => $userid,
170+
'suserid' => $userid,
171+
'dsuserid' => $userid,
172+
'rauserid' => $userid,
173+
'tuserid' => $userid,
174+
'guserid' => $userid
175175
];
176176

177177
$contextlist = new \core_privacy\local\request\contextlist();

lang/en/moodleoverflow.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,14 @@
202202
$string['markmoodleoverflowreadsuccessful'] = 'All posts have been marked as read.';
203203
$string['noguesttracking'] = 'Sorry, guests are not allowed to set tracking options.';
204204

205-
// Strings for the userstats_table.php.
205+
// Strings for the userstats feature.
206206
$string['userstatsupvotes'] = 'Received upvotes';
207207
$string['userstatsdownvotes'] = 'Received downvotes';
208208
$string['userstatsactivity'] = 'Amount of activity';
209209
$string['userstatsreputation'] = 'User reputation';
210-
$string['helpamountofactivity'] = 'Each actitivy like writing a post, starting a discussion or giving a rating gives 1 point';
210+
$string['helpamountofactivity'] = 'Each activity like writing a post, starting a discussion or giving a rating gives 1 point';
211+
$string['showuserstats'] = 'Show cumulative user statistics';
212+
$string['configshowuserstats'] = 'Allow teachers in courses to see statistics summarizing the activity of users in Moodleoverflows.';
211213

212214
// OTHER.
213215
$string['messageprovider:posts'] = 'Notification of new posts';

locallib.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function moodleoverflow_print_latest_discussions($moodleoverflow, $cm, $page = -
151151
}
152152

153153
// Print a button if the user is capable of seeing the user stats.
154-
if ($canseeuserstats) {
154+
if ($canseeuserstats && get_config('moodleoverflow', 'showuserstats')) {
155155
$userstatsbuttontext = get_string('seeuserstats', 'moodleoverflow');
156156
$userstatsbuttonurl = new moodle_url('/mod/moodleoverflow/userstats.php', ['id' => $cm->id,
157157
'courseid' => $moodleoverflow->course,

settings.php

+5
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,9 @@
137137
$setting->set_updatedcallback('moodleoverflow_update_all_grades');
138138
}
139139

140+
// Allow teachers to see cummulative userstats.
141+
$settings->add(new admin_setting_configcheckbox('moodleoverflow/showuserstats',
142+
get_string('showuserstats', 'moodleoverflow'), get_string('configshowuserstats', 'moodleoverflow'), 0));
143+
144+
140145
}

userstats.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
$PAGE->set_context($context);
5555

5656
// Do a capability check, in case a user iserts the userstats-url manually.
57-
if (has_capability('mod/moodleoverflow:viewanyrating', $context)) {
57+
if (has_capability('mod/moodleoverflow:viewanyrating', $context) && get_config('moodleoverflow', 'showuserstats')) {
5858
// Print the page header.
5959
$PAGE->set_url('/mod/moodleoverflow/userstats.php', array('id' => $cm->id,
6060
'courseid' => $course->id, 'mid' => $moodleoverflow->id));
@@ -65,6 +65,9 @@
6565
echo $OUTPUT->header();
6666
echo $OUTPUT->heading('');
6767
$table = new userstats_table('statisticstable' , $course->id, $moodleoverflow->id, $PAGE->url);
68-
echo $table->out();
68+
$table->out();
6969
echo $OUTPUT->footer();
70+
} else {
71+
redirect(new moodle_url('/'));
7072
}
73+

version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
defined('MOODLE_INTERNAL') || die();
2929

3030
$plugin->component = 'mod_moodleoverflow';
31-
$plugin->version = 2023052200;
31+
$plugin->version = 2023052201;
3232
$plugin->release = 'v4.2-r1';
3333
$plugin->requires = 2020061500; // Requires Moodle 3.9+.
3434
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)