public function ActivityNotifications::markEntityAsRead in Open Social 8.9
Same name and namespace in other branches
- 8 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 8.2 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 8.3 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 8.4 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 8.5 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 8.6 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 8.7 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 8.8 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 10.3.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 10.0.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 10.1.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
- 10.2.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markEntityAsRead()
Mark an entity as read for a given account.
Parameters
\Drupal\Core\Session\AccountInterface $account: Account object.
\Drupal\Core\Entity\EntityBase $entity: Entity object.
Deprecated
in opensocial:8.x-7.1 and is removed from opensocial:8.x-8.0. Use \Drupal\activity_creator\ActivityNotifications ::markEntityNotificationsAsSeen() instead.
TODO: Change
See also
to point to a change record.
https://www.drupal.org/project/social/issues/3087083
File
- modules/
custom/ activity_creator/ src/ ActivityNotifications.php, line 167
Class
- ActivityNotifications
- Class ActivityNotifications to get Personalised activity items for account.
Namespace
Drupal\activity_creatorCode
public function markEntityAsRead(AccountInterface $account, EntityBase $entity) {
// Retrieve all the activities referring this entity for this account.
$ids = $this
->getNotificationIds($account, [
ACTIVITY_STATUS_RECEIVED,
ACTIVITY_STATUS_SEEN,
]);
$this
->changeStatusOfActivity($ids, $account);
}