ContentModerationStateInterface.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\content_moderation\EntityFile
core/modules/content_moderation/src/Entity/ContentModerationStateInterface.phpView source
<?php
namespace Drupal\content_moderation\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
/**
* An interface for Content moderation state entity.
*
* Content moderation state entities track the moderation state of other content
* entities.
*
* @internal
*/
interface ContentModerationStateInterface extends ContentEntityInterface, EntityOwnerInterface {
}
Interfaces
Name | Description |
---|---|
ContentModerationStateInterface | An interface for Content moderation state entity. |