public function TestPdfEngine::defaultConfiguration in Entity Print 8
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides PdfEngineBase::defaultConfiguration
File
- tests/
modules/ entity_print_test/ src/ Plugin/ EntityPrint/ PdfEngine/ TestPdfEngine.php, line 81
Class
- TestPdfEngine
- Plugin annotation @PdfEngine( id = "testpdfengine", label= @Translation("Test PDF Engine") )
Namespace
Drupal\entity_print_test\Plugin\EntityPrint\PdfEngineCode
public function defaultConfiguration() {
return [
'test_engine_setting' => '',
'test_engine_suffix' => '',
];
}