You are here

public function FillPdfForm::getStorageScheme in FillPDF 8.4

Same name and namespace in other branches
  1. 5.0.x src/Entity/FillPdfForm.php \Drupal\fillpdf\Entity\FillPdfForm::getStorageScheme()

Gets this FillPdfForm's storage scheme.

Return value

string The storage scheme to be used for PDF files generated from this FillPdfForm.

Overrides FillPdfFormInterface::getStorageScheme

File

src/Entity/FillPdfForm.php, line 239

Class

FillPdfForm
Defines the entity for managing uploaded FillPDF forms.

Namespace

Drupal\fillpdf\Entity

Code

public function getStorageScheme() {
  return $this
    ->get('scheme')->value;
}