MDL-33627 - feedback block now show all feedbacks

This commit is contained in:
Andreas Grabs 2012-06-09 20:30:17 +02:00 committed by Sam Hemelryk
parent 1494f20da3
commit 786ad3511c

View file

@ -4,7 +4,7 @@ if (is_file($CFG->dirroot.'/mod/feedback/lib.php')) {
define('FEEDBACK_BLOCK_LIB_IS_OK', true); define('FEEDBACK_BLOCK_LIB_IS_OK', true);
} }
class block_feedback extends block_base { class block_feedback extends block_list {
function init() { function init() {
$this->title = get_string('feedback', 'block_feedback'); $this->title = get_string('feedback', 'block_feedback');
@ -21,10 +21,13 @@ class block_feedback extends block_base {
return $this->content; return $this->content;
} }
$this->content = new stdClass;
$this->content->items = array();
$this->content->icons = array();
$this->content->footer = '';
if (!defined('FEEDBACK_BLOCK_LIB_IS_OK')) { if (!defined('FEEDBACK_BLOCK_LIB_IS_OK')) {
$this->content = new stdClass; $this->content->items = array(get_string('missing_feedback_module', 'block_feedback'));
$this->content->text = get_string('missing_feedback_module', 'block_feedback');
$this->content->footer = '';
return $this->content; return $this->content;
} }
@ -33,9 +36,7 @@ class block_feedback extends block_base {
$courseid = SITEID; $courseid = SITEID;
} }
$this->content = new stdClass; $icon = '<img src="'.$OUTPUT->pix_url('icon', 'feedback') . '" class="icon" alt="" />';
$this->content->text = '';
$this->content->footer = '';
if (empty($this->instance->pageid)) { if (empty($this->instance->pageid)) {
@ -47,8 +48,7 @@ class block_feedback extends block_base {
foreach ($feedbacks as $feedback) { foreach ($feedbacks as $feedback) {
$url = new moodle_url($baseurl); $url = new moodle_url($baseurl);
$url->params(array('id'=>$feedback->cmid, 'courseid'=>$courseid)); $url->params(array('id'=>$feedback->cmid, 'courseid'=>$courseid));
$icon = '<img src="'.$OUTPUT->pix_url('icon', 'feedback') . '" class="icon" alt="" />&nbsp;'; $this->content->items[] = '<a href="'.$url->out().'">'.$icon.$feedback->name.'</a>';
$this->content->text = ' <a href="'.$url->out().'">'.$icon.$feedback->name.'</a>';
} }
} }