Skip to content

Commit

Permalink
MDL-11382 added a link 'Profil' to the administration block
Browse files Browse the repository at this point in the history
  • Loading branch information
jerome committed May 2, 2008
1 parent 8440f94 commit e18bc77
Showing 1 changed file with 3 additions and 24 deletions.
27 changes: 3 additions & 24 deletions blocks/admin/block_admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,30 +172,9 @@ function get_content() {
}
}

/// Should the following two be in this block?

/// View own activity report
// if ($course->showreports) {
// $this->content->items[]='<a href="user.php?id='.$this->instance->pageid.'&amp;user='.$USER->id.'">'.get_string('activityreport').'</a>';
// $this->content->icons[]='<img src="'.$CFG->pixpath.'/i/report.gif" alt="" />';
// }


/// Edit your own profile

// $fullname = fullname($USER, has_capability('moodle/site:viewfullnames', $context));
// $editmyprofile = '<a title="'.$fullname.'" href="'.$CFG->wwwroot.'/user/edit.php?id='.$USER->id.'&amp;course='.$this->instance->pageid.'">'.get_string('editmyprofile').'</a>';
// if (empty($USER->description)) {
// //Accessibility: replace non-standard <blink> with CSS (<a> makes title visible in IE).
// $text = get_string('profile').' '.get_string('missingdescription');
// $this->content->items[]= $editmyprofile.' <a title="'.$text.'" class="useredit blink">*<span class="accesshide">'.$text.'</span></a>';
// } else {
// $this->content->items[]= $editmyprofile;
// }
// $this->content->icons[]='<img src="'.$CFG->pixpath.'/i/user.gif" alt="" />';


/// Link to the user own profile
$this->content->items[]='<a href="'.$CFG->wwwroot.'/user/view.php?id='.$USER->id.'&amp;course='.$course->id.'">'.get_string('profile').'</a>';
$this->content->icons[]='<img src="'.$CFG->pixpath.'/i/user.gif" alt="" />';

return $this->content;
}
Expand Down

0 comments on commit e18bc77

Please sign in to comment.