You are here

public function FillPdfForm::getStoragePath in FillPDF 5.0.x

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

Gets this FillPdfForm's storage path.

Return value

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

Overrides FillPdfFormInterface::getStoragePath

File

src/Entity/FillPdfForm.php, line 246

Class

FillPdfForm
Defines the entity for managing uploaded FillPDF forms.

Namespace

Drupal\fillpdf\Entity

Code

public function getStoragePath() {
  return $this
    ->get('destination_path')->value;
}