Hide Links in Activities Block?

Re: Hide Links in Activities Block?

by Alistair McQuade -
Number of replies: 0
Thanks for this chardelle! smile I found this hack useful but I needed to update it slightly for for moodle 1.6:            

  $this->content->footer = '';

                    $this->content->items[] = '<a href="../mod/journal/index.php?id='.$this->instance->pageid.'">My Journals</a>';
                    $this->content->icons[] = '<img src="'.$CFG->modpixpath.'/journal/icon.gif" height="16" width="16" alt="">';
                    $this->content->items[] = '<a href="../mod/forum/index.php?id='.$this->instance->pageid.'">All Discussions</a>';
                    $this->content->icons[] = '<img src="'.$CFG->modpixpath.'/forum/icon.gif" height="16" width="16" alt="">';
             

        return $this->content;
       
    }

Thanks

Al