You are here

protected function WebformEntityPrintWebformExporter::getExportTypeId in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php \Drupal\webform_entity_print\Plugin\WebformExporter\WebformEntityPrintWebformExporter::getExportTypeId()

Get export type id.

Return value

string The export type id.

2 calls to WebformEntityPrintWebformExporter::getExportTypeId()
WebformEntityPrintWebformExporter::getExportTypeDefinition in modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php
Get export type definition.
WebformEntityPrintWebformExporter::writeSubmission in modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php
Write submission to export.

File

modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php, line 148

Class

WebformEntityPrintWebformExporter
Defines a Webform Entity Print PDF exporter.

Namespace

Drupal\webform_entity_print\Plugin\WebformExporter

Code

protected function getExportTypeId() {
  return str_replace('webform_entity_print:', '', $this
    ->getPluginId());
}