Mercurial > hg > isophonics-drupal-site
comparison core/modules/content_moderation/src/Entity/ContentModerationStateInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\content_moderation\Entity; | |
4 | |
5 use Drupal\Core\Entity\ContentEntityInterface; | |
6 use Drupal\user\EntityOwnerInterface; | |
7 | |
8 /** | |
9 * An interface for Content moderation state entity. | |
10 * | |
11 * Content moderation state entities track the moderation state of other content | |
12 * entities. | |
13 * | |
14 * @internal | |
15 */ | |
16 interface ContentModerationStateInterface extends ContentEntityInterface, EntityOwnerInterface { | |
17 | |
18 } |