You are here

public function CourseObject::hasPolling in Course 8.3

Same name and namespace in other branches
  1. 8.2 src/Entity/CourseObject.php \Drupal\course\Entity\CourseObject::hasPolling()
  2. 3.x src/Entity/CourseObject.php \Drupal\course\Entity\CourseObject::hasPolling()

Specify whether fulfillment uses asynchronous polling.

Return value

bool Whether this object uses polling. Defaults to FALSE.

File

src/Entity/CourseObject.php, line 93

Class

CourseObject
Parent abstract base class of all course objects.

Namespace

Drupal\course\Entity

Code

public function hasPolling() {
  return FALSE;
}