48 lines
1.4 KiB
PHP
48 lines
1.4 KiB
PHP
<?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,
|
|
],
|
|
],
|
|
'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:',
|
|
]
|
|
]
|
|
];
|