ProfileActivityContext.php in Open Social 8.5
Same filename and directory in other branches
- 8.9 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 8 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 8.2 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 8.3 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 8.4 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 8.6 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 8.7 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 8.8 modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 10.3.x modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 10.0.x modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
- 10.2.x modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.php
File
modules/custom/activity_basics/src/Plugin/ActivityContext/ProfileActivityContext.phpView source
<?php
namespace Drupal\activity_basics\Plugin\ActivityContext;
use Drupal\activity_creator\Plugin\ActivityContextBase;
use Drupal\group\Entity\GroupContent;
use Drupal\activity_creator\ActivityFactory;
/**
* Provides a 'ProfileActivityContext' activity context.
*
* @ActivityContext(
* id = "profile_activity_context",
* label = @Translation("Profile activity context"),
* )
*/
class ProfileActivityContext extends ActivityContextBase {
/**
* {@inheritdoc}
*/
public function getRecipients(array $data, $last_uid, $limit) {
$recipients = [];
// We only know the context if there is a related object.
if (isset($data['related_object']) && !empty($data['related_object'])) {
$referenced_entity = ActivityFactory::getActivityRelatedEntity($data);
if ($referenced_entity['target_type'] === 'post') {
$recipients += $this
->getRecipientsFromPost($referenced_entity);
}
}
return $recipients;
}
/**
* {@inheritdoc}
*/
public function isValidEntity($entity) {
// Special cases for comments.
if ($entity
->getEntityTypeId() === 'comment') {
// Returns the entity to which the comment is attached.
$entity = $entity
->getCommentedEntity();
}
if (!isset($entity)) {
return FALSE;
}
// Check if it's placed in a group (regardless off content type).
if (GroupContent::loadByEntity($entity)) {
return FALSE;
}
if ($entity
->getEntityTypeId() === 'post') {
if (!empty($entity
->get('field_recipient_group')
->getValue())) {
return FALSE;
}
elseif (!empty($entity
->get('field_recipient_user')
->getValue())) {
return TRUE;
}
}
return FALSE;
}
}
Classes
Name | Description |
---|---|
ProfileActivityContext | Provides a 'ProfileActivityContext' activity context. |