Show larger avatar / profile images on dasboard

Issue #729 resolved
Jeremy Hopkins created an issue

We override the defalt image to show larger profile images in news forums on the front page of Moodle.

We need to do this on the dashboard page also by adding the dashboard layout to the following array:

    protected function render_user_picture(\user_picture $userpicture) {
        if ($this->page->pagetype == 'mod-forum-discuss' ||
        $this->page->pagetype == 'course-view-socialwall' ||
        $this->page->pagetype == 'site-index') {
            $userpicture->size = 1;
        }

Comments (3)

  1. Log in to comment