ContactInterface.php
Same filename in other branches
Namespace
Drupal\content_entity_exampleFile
-
modules/
content_entity_example/ src/ ContactInterface.php
View source
<?php
namespace Drupal\content_entity_example;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;
/**
* Provides an interface defining a Contact entity.
*
* We have this interface so we can join the other interfaces it extends.
*
* @ingroup content_entity_example
*/
interface ContactInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
ContactInterface | Provides an interface defining a Contact entity. |