30 lines
742 B
PHP
30 lines
742 B
PHP
|
<?php
|
||
|
namespace PDFLink;
|
||
|
|
||
|
return [
|
||
|
'view_manager' => [
|
||
|
'template_path_stack' => [
|
||
|
dirname(__DIR__) . '/view',
|
||
|
]
|
||
|
],
|
||
|
'block_layouts' => [
|
||
|
'factories' => [
|
||
|
'pDFLink' => Service\BlockLayout\PDFLinkFactory::class,
|
||
|
],
|
||
|
],
|
||
|
'form_elements' => [
|
||
|
'invokables' => [
|
||
|
Form\PDFLinkBlockForm::class => Form\PDFLinkBlockForm::class,
|
||
|
],
|
||
|
],
|
||
|
'DefaultSettings' => [
|
||
|
'PDFLinkBlockForm' => [
|
||
|
'title' => '',
|
||
|
'renderSourceLink' => true,
|
||
|
'width' => 600,
|
||
|
'zoom_type' => '',
|
||
|
'wrapStyle' => 'overflow-y: hidden;display: flex;flex-direction: column;justify-content: center;',
|
||
|
]
|
||
|
]
|
||
|
];
|