You are here

public function ActivityNotifications::markAllNotificationsAsSeen in Open Social 8.2

Same name and namespace in other branches
  1. 8.9 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  2. 8 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  3. 8.3 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  4. 8.4 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  5. 8.5 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  6. 8.6 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  7. 8.7 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  8. 8.8 modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  9. 10.3.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  10. 10.0.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  11. 10.1.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()
  12. 10.2.x modules/custom/activity_creator/src/ActivityNotifications.php \Drupal\activity_creator\ActivityNotifications::markAllNotificationsAsSeen()

Mark all notifications as Seen for account.

Parameters

\Drupal\Core\Session\AccountInterface $account: Account object.

Return value

int Number of remaining notifications.

File

modules/custom/activity_creator/src/ActivityNotifications.php, line 60

Class

ActivityNotifications
Class ActivityNotifications to get Personalised activity items for account.

Namespace

Drupal\activity_creator

Code

public function markAllNotificationsAsSeen(AccountInterface $account) {

  // Retrieve all the activities referring this entity for this account.
  $ids = $this
    ->getNotificationIds($account, [
    ACTIVITY_STATUS_RECEIVED,
  ]);
  foreach ($ids as $activity_id) {
    $activity = Activity::load($activity_id);
    $this
      ->changeStatusOfActivity($activity, ACTIVITY_STATUS_SEEN);
  }
  $remaining_notifications = 0;
  return $remaining_notifications;
}