You are here

public function WebformSubmission::getRawData in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Entity/WebformSubmission.php \Drupal\webform\Entity\WebformSubmission::getRawData()

Gets the webform submission's raw data.

Return value

array The webform submission raw data.

Overrides WebformSubmissionInterface::getRawData

1 call to WebformSubmission::getRawData()
WebformSubmission::getDataHash in src/Entity/WebformSubmission.php
Get a webform submission data as a hash view.

File

src/Entity/WebformSubmission.php, line 420

Class

WebformSubmission
Defines the WebformSubmission entity.

Namespace

Drupal\webform\Entity

Code

public function getRawData() {
  return $this->data;
}