public function CourseObjectPoll::getReport in Course 6
Same name and namespace in other branches
- 7.2 modules/course_poll/course_poll.classes.inc \CourseObjectPoll::getReport()
- 7 modules/course_poll/course_poll.classes.inc \CourseObjectPoll::getReport()
Let the course object provide its own reports.
Return value
array An array containing:
- title: The title of this report as show on the page
- content: Content to be displayed.
- url: URL to be loaded in an iframe.
Reports should return either 'content' or 'url'.
Overrides CourseObject::getReport
See also
CourseObjectQuiz::getReports()
File
- modules/
course_poll/ course_poll.classes.inc, line 43
Class
- CourseObjectPoll
- Parent class for poll tracking.
Code
public function getReport($key) {
module_load_include('inc', 'poll', 'poll.pages');
switch ($key) {
case 'results':
return array(
'title' => t('Poll results'),
'content' => poll_view_results($this->node, NULL, NULL, NULL),
);
case 'all':
return array(
'title' => 'All votes',
'content' => poll_votes($this->node),
);
}
}