PeertubeVideo/config/module.config.php

31 lines
786 B
PHP
Raw Normal View History

2021-04-09 11:31:13 +02:00
<?php
namespace PeertubeVideo;
return [
'view_manager' => [
'template_path_stack' => [
dirname(__DIR__) . '/view',
]
],
'block_layouts' => [
'factories' => [
'peertubeVideo' => Service\BlockLayout\PeertubeVideoFactory::class,
],
],
'form_elements' => [
'invokables' => [
Form\PeertubeVideoBlockForm::class => Form\PeertubeVideoBlockForm::class,
],
],
'DefaultSettings' => [
'PeertubeVideoBlockForm' => [
'url' => '',
'title' => '',
2021-04-09 11:52:38 +02:00
'width' => 800,
2021-04-09 11:31:13 +02:00
'ratio' => '16:9',
'vertical' => false,
'wrapStyle' => 'overflow-y: hidden;display: flex;flex-direction: column;justify-content: center;',
]
]
];