public function ActivityNotifications::markEntityNotificationsAsRead in Open Social 8.5
Same name and namespace in other branches
- 8 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityNotificationsAsRead()
- 8.2 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityNotificationsAsRead()
- 8.3 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityNotificationsAsRead()
- 8.4 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityNotificationsAsRead()
- 8.6 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityNotificationsAsRead()
- 8.7 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityNotificationsAsRead()
Mark Notifications as Read for given account and entity..
Parameters
\Drupal\Core\Session\AccountInterface $account: Account object.
\Drupal\Core\Entity\EntityBase $entity: Entity object.
File
- modules/
custom/ activity_creator/ src/ ActivityNotifications.php, line 81
Class
- ActivityNotifications
- Class ActivityNotifications to get Personalised activity items for account.
Namespace
Drupal\activity_creatorCode
public function markEntityNotificationsAsRead(AccountInterface $account, EntityBase $entity) {
// Retrieve all the activities referring this entity for this account.
$ids = $this
->getNotificationIds($account, [
ACTIVITY_STATUS_RECEIVED,
ACTIVITY_STATUS_SEEN,
], $entity);
$activities = Activity::loadMultiple($ids);
foreach ($activities as $activity) {
$this
->changeStatusOfActivity($activity, ACTIVITY_STATUS_READ);
}
}