PanoramaViewer-omeka-module/config/module.config.php

32 lines
887 B
PHP
Raw Normal View History

2021-04-03 18:47:20 +02:00
<?php
namespace PanoramaViewer;
return [
'view_manager' => [
'template_path_stack' => [
dirname(__DIR__) . '/view',
]
],
'block_layouts' => [
'factories' => [
'panoramaViewer' => Service\BlockLayout\PanoramaViewerFactory::class,
],
],
'form_elements' => [
'invokables' => [
Form\PanoramaViewerBlockForm::class => Form\PanoramaViewerBlockForm::class,
],
],
'DefaultSettings' => [
'PanoramaViewerBlockForm' => [
'panorama_type' => 'equirectangular',
'pannellum_types' => [],
'title' => '',
'height' => '400px',
'wrapStyle' => 'overflow-y: hidden;display: flex;flex-direction: column;justify-content: center;',
//'imgStyle' => '',
'ui_background' => 'rgba(0,0,0,0.1)',
]
]
];