interface ContactInterface

Same name in other branches
  1. 3.x modules/content_entity_example/src/ContactInterface.php \Drupal\content_entity_example\ContactInterface
  2. 4.0.x modules/content_entity_example/src/ContactInterface.php \Drupal\content_entity_example\ContactInterface

Provides an interface defining a Contact entity.

We have this interface so we can join the other interfaces it extends.

Hierarchy

  • interface \Drupal\content_entity_example\ContactInterface extends \Drupal\Core\Entity\ContentEntityInterface \Drupal\user\EntityOwnerInterface \Drupal\Core\Entity\EntityChangedInterface

Expanded class hierarchy of ContactInterface

All classes that implement ContactInterface

Related topics

1 file declares its use of ContactInterface
Contact.php in content_entity_example/src/Entity/Contact.php

File

content_entity_example/src/ContactInterface.php, line 16

Namespace

Drupal\content_entity_example
View source
interface ContactInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {

}