You are here

interface YamlFormRequestInterface in YAML Form 8

Provides an interface defining a form request handler.

Hierarchy

Expanded class hierarchy of YamlFormRequestInterface

All classes that implement YamlFormRequestInterface

8 files declare their use of YamlFormRequestInterface
YamlFormController.php in src/Controller/YamlFormController.php
YamlFormResultsCustomForm.php in src/Form/YamlFormResultsCustomForm.php
YamlFormResultsExportController.php in src/Controller/YamlFormResultsExportController.php
YamlFormSubmissionController.php in src/Controller/YamlFormSubmissionController.php
YamlFormSubmissionDeleteForm.php in src/Form/YamlFormSubmissionDeleteForm.php

... See full list

File

src/YamlFormRequestInterface.php, line 13

Namespace

Drupal\yamlform
View source
interface YamlFormRequestInterface {

  /**
   * Get the current request's source entity.
   *
   * @param string|array $ignored_types
   *   (optional) Array of ignore entity types.
   *
   * @return \Drupal\Core\Entity\EntityInterface|null
   *   The current request's source entity.
   */
  public function getCurrentSourceEntity($ignored_types = NULL);

  /**
   * Get form associated with the current request.
   *
   * @return \Drupal\yamlform\YamlFormInterface|null
   *   The current request's form.
   */
  public function getCurrentYamlForm();

  /**
   * Get the form and source entity for the current request.
   *
   * @return array
   *   An array containing the form and source entity for the current
   *   request.
   */
  public function getYamlFormEntities();

  /**
   * Get the form submission and source entity for the current request.
   *
   * @return array
   *   An array containing the form and source entity for the current
   *   request.
   */
  public function getYamlFormSubmissionEntities();

  /**
   * Get the route name for a form/submission and source entity.
   *
   * @param \Drupal\Core\Entity\EntityInterface $yamlform_entity
   *   A form or form submission.
   * @param \Drupal\Core\Entity\EntityInterface|null $source_entity
   *   A form submission's source entity.
   * @param string $route_name
   *   The route name.
   *
   * @return string
   *   A route name prefixed with 'entity.{entity_type_id}'
   *   or just 'entity'.
   */
  public function getRouteName(EntityInterface $yamlform_entity, EntityInterface $source_entity = NULL, $route_name);

  /**
   * Get the route parameters for a form/submission and source entity.
   *
   * @param \Drupal\Core\Entity\EntityInterface $yamlform_entity
   *   A form or form submission.
   * @param \Drupal\Core\Entity\EntityInterface|null $source_entity
   *   A form submission's source entity.
   *
   * @return array
   *   An array of route parameters.
   */
  public function getRouteParameters(EntityInterface $yamlform_entity, EntityInterface $source_entity = NULL);

  /**
   * Get the base route name for a form/submission and source entity.
   *
   * @param \Drupal\Core\Entity\EntityInterface $yamlform_entity
   *   A form or form submission.
   * @param \Drupal\Core\Entity\EntityInterface|null $source_entity
   *   A form submission's source entity.
   *
   * @return string
   *   If the source entity has a form attached, 'entity.{entity_type_id}'
   *   or just 'entity'.
   */
  public function getBaseRouteName(EntityInterface $yamlform_entity, EntityInterface $source_entity = NULL);

  /**
   * Check if a source entity is attached to a form.
   *
   * @param \Drupal\Core\Entity\EntityInterface $yamlform_entity
   *   A form or form submission.
   * @param \Drupal\Core\Entity\EntityInterface|null $source_entity
   *   A form submission's source entity.
   *
   * @return bool
   *   TRUE if a form is attached to a form submission source entity.
   */
  public function isValidSourceEntity(EntityInterface $yamlform_entity, EntityInterface $source_entity = NULL);

}

Members

Namesort descending Modifiers Type Description Overrides
YamlFormRequestInterface::getBaseRouteName public function Get the base route name for a form/submission and source entity. 1
YamlFormRequestInterface::getCurrentSourceEntity public function Get the current request's source entity. 1
YamlFormRequestInterface::getCurrentYamlForm public function Get form associated with the current request. 1
YamlFormRequestInterface::getRouteName public function Get the route name for a form/submission and source entity. 1
YamlFormRequestInterface::getRouteParameters public function Get the route parameters for a form/submission and source entity. 1
YamlFormRequestInterface::getYamlFormEntities public function Get the form and source entity for the current request. 1
YamlFormRequestInterface::getYamlFormSubmissionEntities public function Get the form submission and source entity for the current request. 1
YamlFormRequestInterface::isValidSourceEntity public function Check if a source entity is attached to a form. 1