activity_stream-1.0.x-dev/src/Plugin/ActivityActionInterface.php
src/Plugin/ActivityActionInterface.php
<?php
namespace Drupal\activity_stream\Plugin;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Core\Entity\EntityInterface;
/**
* Defines an interface for Activity action plugins.
*/
interface ActivityActionInterface extends PluginInspectionInterface {
/**
* Creates a new message on the action with some logic behind it.
*/
public function create($entity);
/**
* Dumb function that can be called to create the message.
*/
public function createMessage($entity);
/**
* Checks if this is a valid entity for the action.
*/
public function isValidEntity(EntityInterface $entity): bool;
}
