You are here

class QueueStorageEntitySendActivityCondition in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/custom/social_queue_storage/src/Plugin/ActivityEntityCondition/QueueStorageEntitySendActivityCondition.php \Drupal\social_queue_storage\Plugin\ActivityEntityCondition\QueueStorageEntitySendActivityCondition
  2. 8.8 modules/custom/social_queue_storage/src/Plugin/ActivityEntityCondition/QueueStorageEntitySendActivityCondition.php \Drupal\social_queue_storage\Plugin\ActivityEntityCondition\QueueStorageEntitySendActivityCondition
  3. 10.3.x modules/custom/social_queue_storage/src/Plugin/ActivityEntityCondition/QueueStorageEntitySendActivityCondition.php \Drupal\social_queue_storage\Plugin\ActivityEntityCondition\QueueStorageEntitySendActivityCondition
  4. 10.1.x modules/custom/social_queue_storage/src/Plugin/ActivityEntityCondition/QueueStorageEntitySendActivityCondition.php \Drupal\social_queue_storage\Plugin\ActivityEntityCondition\QueueStorageEntitySendActivityCondition
  5. 10.2.x modules/custom/social_queue_storage/src/Plugin/ActivityEntityCondition/QueueStorageEntitySendActivityCondition.php \Drupal\social_queue_storage\Plugin\ActivityEntityCondition\QueueStorageEntitySendActivityCondition

Provides a 'QueueStorageEntitySendActivityAction` activity action.

Plugin annotation


@ActivityEntityCondition(
  id = "queue_store_entity_send_activity_condition",
  label = @Translation("Queue Store Entity has is finished status."),
  entities = {"queue_storage_entity" = {}}
)

Hierarchy

Expanded class hierarchy of QueueStorageEntitySendActivityCondition

File

modules/custom/social_queue_storage/src/Plugin/ActivityEntityCondition/QueueStorageEntitySendActivityCondition.php, line 16

Namespace

Drupal\social_queue_storage\Plugin\ActivityEntityCondition
View source
class QueueStorageEntitySendActivityCondition extends ActivityEntityConditionBase {

  /**
   * {@inheritdoc}
   */
  public function isValidEntityCondition($entity) {

    /** @var \Drupal\social_queue_storage\Entity\QueueStorageEntity $entity */
    if ($entity
      ->getEntityTypeId() === 'queue_storage_entity') {
      return $entity
        ->isFinished();
    }
    return FALSE;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 98
QueueStorageEntitySendActivityCondition::isValidEntityCondition public function Checks if this is a valid entity condition for the action. Overrides ActivityEntityConditionBase::isValidEntityCondition