public function CourseObject::hasPolling in Course 7
Same name and namespace in other branches
- 6 includes/course_object.core.inc \CourseObject::hasPolling()
- 7.2 includes/CourseObject.inc \CourseObject::hasPolling()
Specify whether fulfillment uses asynchronous polling.
Return value
bool Whether this object uses polling. Defaults to FALSE.
2 methods override CourseObject::hasPolling()
- CourseObjectSignup::hasPolling in modules/
course_signup/ course_signup.classes.inc - Specify that this object needs a navigation listener.
- CourseObjectUbercart::hasPolling in modules/
course_uc/ course_uc.classes.inc - Specify that this object needs a navigation listener.
File
- includes/
CourseObject.inc, line 31
Class
- CourseObject
- Parent abstract base class of all course objects.
Code
public function hasPolling() {
return FALSE;
}