arc-hive-TechDocument-omeka.../config/module.config.php

55 lines
1.6 KiB
PHP
Raw Normal View History

2021-05-24 22:18:43 +02:00
<?php
namespace TechDocument;
return [
'view_manager' => [
'template_path_stack' => [
dirname(__DIR__) . '/view',
]
],
'block_layouts' => [
'factories' => [
'techDocument' => Service\BlockLayout\TechDocumentFactory::class,
],
],
'form_elements' => [
'invokables' => [
Form\TechDocumentBlockForm::class => Form\TechDocumentBlockForm::class,
],
],
/*
'media_ingesters' => [
'factories' => [
'TechDocument_media' => Service\Media\Ingester\TechDocumentMediaFactory::class,
],
],
*/
2021-05-24 22:18:43 +02:00
'DefaultSettings' => [
'TechDocumentBlockForm' => [
'wrapStyle' => 'overflow-y: hidden;display: flex;flex-direction: column;justify-content: center;',
//'imgStyle' => '',
'ui_background' => 'rgba(0,0,0,0.1)',
'characteristics' => 'Title:
Author: (artist, collective, scientist...)
Date:
Summary:
Extended description:
Keywords:
Size:
Dimension Length:
Dimension Breadth:
Dimension Height:
Weight:
Volume structure: (flat or 3D)
Volume state: (flexible or rigid)
Raw Material(s): (Materials or substances used in the primary production or manufacturing of the item)
Glossiness: (The property of being smooth and shiny. burnish, polish, gloss)
Color: (the property possessed by an object of producing different sensations on the eye as a result of the way it reflects or emits light.)
Transport: (movable or fixed)
Status: (stable, unstable, living, dead(fixed or decaying), inert)
Lifespan:
Life cycle:',
]
]
];