You are here

public function CourseObject::take in Course 6

Same name and namespace in other branches
  1. 7.2 includes/CourseObject.inc \CourseObject::take()
  2. 7 includes/CourseObject.inc \CourseObject::take()
1 call to CourseObject::take()
CourseObject::takeCourseObject in includes/course_object.core.inc
Take a course object.
5 methods override CourseObject::take()
CourseObjectCertificate::take in modules/course_certificate/course_certificate.classes.inc
CourseObjectManual::take in modules/course_object_manual/course_object_manual.classes.inc
Display status message as course content.
CourseObjectPoll::take in modules/course_poll/course_poll.classes.inc
Take or view the results of a poll. Wrapper for poll_view().
CourseObjectSignup::take in modules/course_signup/course_signup.classes.inc
CourseObjectUbercart::take in modules/course_uc/course_uc.classes.inc

File

includes/course_object.core.inc, line 594

Class

CourseObject
Parent abstract base class of all course objects.

Code

public function take() {
  return 'This should be overridden by the module to return course content.';
}