mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?PHP //$Id$
|
|
|
|
class CourseBlock_course_summary extends MoodleBlock {
|
|
function CourseBlock_course_summary ($course) {
|
|
$this->title = get_string('blockname','block_course_summary');
|
|
$this->content_type = BLOCK_TYPE_TEXT;
|
|
$this->course = $course;
|
|
$this->version = 2004052600;
|
|
}
|
|
|
|
function applicable_formats() {
|
|
return COURSE_FORMAT_WEEKS | COURSE_FORMAT_TOPICS | COURSE_FORMAT_SOCIAL | COURSE_FORMAT_SITE;
|
|
}
|
|
|
|
function get_content() {
|
|
global $CFG, $THEME;
|
|
|
|
if($this->content !== NULL) {
|
|
return $this->content;
|
|
}
|
|
|
|
$this->content = New stdClass;
|
|
$this->content->text = format_text($this->course->summary, FORMAT_HTML);
|
|
if (isediting($this->course->id)) {
|
|
$path = $CFG->wwwroot.'/course';
|
|
if (empty($THEME->custompix)) {
|
|
$pixpath = $path.'/../pix';
|
|
} else {
|
|
$pixpath = $path.'/../theme/'.$CFG->theme.'/pix';
|
|
}
|
|
$this->content->text .= "<div align=\"right\"><a href=\"$CFG->wwwroot/admin/site.php\"><img src=\"$pixpath/t/edit.gif\" /></a></div>";
|
|
}
|
|
$this->content->footer = '';
|
|
|
|
return $this->content;
|
|
}
|
|
|
|
function hide_header() {return true;}
|
|
}
|
|
|
|
?>
|