*/
public $includefullname = false;
+ /**
+ * @var bool Include user authentication token.
+ */
+ public $includetoken = false;
+
/**
* User picture constructor.
*
$path .= $page->theme->name.'/';
}
// Set the image URL to the URL for the uploaded file and return.
- $url = moodle_url::make_pluginfile_url($contextid, 'user', 'icon', NULL, $path, $filename);
+ $url = moodle_url::make_pluginfile_url(
+ $contextid, 'user', 'icon', null, $path, $filename, false, $this->includetoken);
$url->param('rev', $this->user->picture);
return $url;
}
* - class = image class attribute (default 'userpicture')
* - visibletoscreenreaders=true (whether to be visible to screen readers)
* - includefullname=false (whether to include the user's full name together with the user picture)
+ * - includetoken = false
* @return string HTML fragment
*/
public function user_picture(stdClass $user, array $options = null) {
* The following picture functions have been updated to support use of the new token-based file serving:
- print_group_picture
- get_group_picture_url
+* The `user_picture` class has a new public `$includetoken` property which can be set to make use of the new token-based
+ file serving.
* Custom AJAX handlers for the form autocomplete fields can now optionally return string in their processResults()
callback. If a string is returned, it is displayed instead of the list of suggested items. This can be used, for
example, to inform the user that there are too many items matching the current search criteria.