activity_stream-1.0.x-dev/src/Plugin/ActivityEntityCondition/CommentAllActivityEntityCondition.php
src/Plugin/ActivityEntityCondition/CommentAllActivityEntityCondition.php
<?php
namespace Drupal\activity_stream\Plugin\ActivityEntityCondition;
use Drupal\activity_stream\Plugin\ActivityEntityConditionBase;
use Drupal\comment\CommentInterface;
/**
* Provides a 'CommentReply' activity condition.
*
* @ActivityEntityCondition(
* id = "comment_all",
* label = @Translation("All comments"),
* entities = {"comment" = {}}
* )
*/
class CommentAllActivityEntityCondition extends ActivityEntityConditionBase {
/**
* {@inheritdoc}
*/
public function isValidEntityCondition($entity) : bool {
return $entity instanceof CommentInterface;
}
}
