You are here

ContactInterface.php in Examples for Developers 3.x

File

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

Namesort descending Description
ContactInterface Provides an interface defining a Contact entity.