You are here

interface SampleEntityGeneratorInterface in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/src/Entity/SampleEntityGeneratorInterface.php \Drupal\layout_builder\Entity\SampleEntityGeneratorInterface
  2. 9 core/modules/layout_builder/src/Entity/SampleEntityGeneratorInterface.php \Drupal\layout_builder\Entity\SampleEntityGeneratorInterface

Generates a sample entity.

Hierarchy

Expanded class hierarchy of SampleEntityGeneratorInterface

All classes that implement SampleEntityGeneratorInterface

2 files declare their use of SampleEntityGeneratorInterface
DefaultsSectionStorage.php in core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php
DefaultsSectionStorageTest.php in core/modules/layout_builder/tests/src/Unit/DefaultsSectionStorageTest.php

File

core/modules/layout_builder/src/Entity/SampleEntityGeneratorInterface.php, line 8

Namespace

Drupal\layout_builder\Entity
View source
interface SampleEntityGeneratorInterface {

  /**
   * Gets a sample entity for a given entity type and bundle.
   *
   * @param string $entity_type_id
   *   The entity type ID.
   * @param string $bundle_id
   *   The bundle ID.
   *
   * @return \Drupal\Core\Entity\EntityInterface
   *   An entity.
   */
  public function get($entity_type_id, $bundle_id);

  /**
   * Deletes a sample entity for a given entity type and bundle.
   *
   * @param string $entity_type_id
   *   The entity type ID.
   * @param string $bundle_id
   *   The bundle ID.
   *
   * @return $this
   */
  public function delete($entity_type_id, $bundle_id);

}

Members

Namesort descending Modifiers Type Description Overrides
SampleEntityGeneratorInterface::delete public function Deletes a sample entity for a given entity type and bundle. 1
SampleEntityGeneratorInterface::get public function Gets a sample entity for a given entity type and bundle. 1