mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?PHP //$Id$
|
|
|
|
class block_participants extends block_list {
|
|
function init() {
|
|
$this->title = get_string('people');
|
|
$this->version = 2004052600;
|
|
}
|
|
|
|
function get_content() {
|
|
global $USER, $CFG;
|
|
|
|
if ($this->content !== NULL) {
|
|
return $this->content;
|
|
}
|
|
if (empty($this->instance)) {
|
|
$this->content = '';
|
|
return $this->content;
|
|
}
|
|
|
|
$this->content = new stdClass;
|
|
$this->content->items = array();
|
|
$this->content->icons = array();
|
|
$this->content->footer = '';
|
|
|
|
|
|
if (empty($this->instance->pageid)) {
|
|
$this->instance->pageid = SITEID;
|
|
}
|
|
|
|
if ($this->instance->pageid != SITEID ||
|
|
$CFG->showsiteparticipantslist > 1 ||
|
|
($CFG->showsiteparticipantslist == 1 && isteacherinanycourse()) ||
|
|
isteacher(SITEID)) {
|
|
|
|
$this->content->items[] = '<a title="'.get_string('listofallpeople').'" href="'.
|
|
$CFG->wwwroot.'/user/index.php?id='.$this->instance->pageid.'">'.get_string('participants').'</a>';
|
|
$this->content->icons[] = '<img src="'.$CFG->pixpath.'/i/users.gif" height="16" width="16" alt="" />';
|
|
|
|
}
|
|
|
|
|
|
return $this->content;
|
|
}
|
|
|
|
// my moodle can only have SITEID and it's redundant here, so take it away
|
|
function applicable_formats() {
|
|
return array('all' => true, 'my' => false);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|