
| Current Path : /var/www/html/12park/web/modules/contrib/webform/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/web/modules/contrib/webform/src/WebformSubmissionViewBuilderInterface.php |
<?php
namespace Drupal\webform;
use Drupal\Core\Entity\EntityHandlerInterface;
use Drupal\Core\Entity\EntityViewBuilderInterface;
/**
* Defines an interface for webform view builder classes.
*/
interface WebformSubmissionViewBuilderInterface extends EntityHandlerInterface, EntityViewBuilderInterface {
/**
* Build element display items from elements and submitted data.
*
* @param array $elements
* Webform elements.
* @param \Drupal\webform\WebformSubmissionInterface $webform_submission
* A webform submission.
* @param array $options
* - excluded_elements: An array of elements to be excluded.
* - ignore_access: Flag to ignore private and/or access controls and always
* display the element.
* - email: Format element to be send via email.
* @param string $format
* Output format set to html or text.
*
* @return array
* A render array displaying the submitted values.
*/
public function buildElements(array $elements, WebformSubmissionInterface $webform_submission, array $options = [], $format = 'html');
/**
* Build table display from elements and submitted data.
*
* @param array $elements
* A flattened array webform elements that have values.
* @param \Drupal\webform\WebformSubmissionInterface $webform_submission
* A webform submission.
* @param array $options
* - excluded_elements: An array of elements to be excluded.
* - email: Format element to be send via email.
*
* @return array
* A render array displaying the submitted values in a table.
*/
public function buildTable(array $elements, WebformSubmissionInterface $webform_submission, array $options = []);
}