You are here

public function CourseObjectFulfillment::postSave in Course 3.x

Same name and namespace in other branches
  1. 8.3 src/Entity/CourseObjectFulfillment.php \Drupal\course\Entity\CourseObjectFulfillment::postSave()
  2. 8.2 src/Entity/CourseObjectFulfillment.php \Drupal\course\Entity\CourseObjectFulfillment::postSave()

Reset object access cache.

Overrides ContentEntityBase::postSave

File

src/Entity/CourseObjectFulfillment.php, line 246

Class

CourseObjectFulfillment
Parent class for course object fulfillment. Unlike Course objects, this is not abstract and can be used when the fulfillment requirements are simple.

Namespace

Drupal\course\Entity

Code

public function postSave(EntityStorageInterface $storage, $update = TRUE) {
  Drupal::entityTypeManager()
    ->getAccessControlHandler('course_object')
    ->resetCache();
}