You are here

FlexiformEntityFormDisplayInterface.php in Flexiform 8

Namespace

Drupal\flexiform

File

src/FlexiformEntityFormDisplayInterface.php
View source
<?php

namespace Drupal\flexiform;

use Drupal\Core\Entity\Display\EntityFormDisplayInterface;

/**
 * Extends the EntityFormDisplay interface to work with multiple entities.
 */
interface FlexiformEntityFormDisplayInterface extends EntityFormDisplayInterface {

  /**
   * Get the Flexiform form Entity Configuration from the object.
   *
   * @return array
   *   The form entity configuration.
   */
  public function getFormEntityConfig();

}

Interfaces

Namesort descending Description
FlexiformEntityFormDisplayInterface Extends the EntityFormDisplay interface to work with multiple entities.