You are here

public function FieldMapping::getData in FillPDF 5.0.x

Same name and namespace in other branches
  1. 8.4 src/FieldMapping.php \Drupal\fillpdf\FieldMapping::getData()

Returns the data.

Return value

string String containing the data.

1 call to FieldMapping::getData()
TextFieldMapping::__toString in src/FieldMapping/TextFieldMapping.php
Return parent::getData().

File

src/FieldMapping.php, line 40

Class

FieldMapping
Represents a mapping between a PDF field and a merge value.

Namespace

Drupal\fillpdf

Code

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