PDFLink-omeka-module/config/module.config.php

30 lines
742 B
PHP
Raw Normal View History

2021-08-10 13:32:24 +02:00
<?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;',
]
]
];