SimpleMarkdown-omeka-module/config/module.config.php

29 lines
763 B
PHP
Raw Normal View History

2021-05-08 18:54:43 +02:00
<?php
namespace SimpleMDText;
return [
'view_manager' => [
'template_path_stack' => [
dirname(__DIR__) . '/view',
]
],
'block_layouts' => [
'factories' => [
'simpleMDText' => Service\BlockLayout\SimpleMDTextFactory::class,
],
],
'form_elements' => [
'invokables' => [
Form\SimpleMDTextBlockForm::class => Form\SimpleMDTextBlockForm::class,
],
],
'DefaultSettings' => [
'SimpleMDTextBlockForm' => [
'markdown_text' => '',
'wrapStyle' => 'overflow-y: hidden;display: flex;flex-direction: column;justify-content: center;',
//'imgStyle' => '',
'ui_background' => 'rgba(0,0,0,0.1)',
]
]
];