-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
42 lines (31 loc) · 1 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
return [
'#theme-name' => 'Image Slideshow',
'#theme-key' => 'image-slideshow',
'#theme-version' => '1.1',
'#ideaspace-version' => '>=1.2.0',
'#theme-description' => 'description.theme_description',
'#theme-author-name' => 'IdeaSpaceVR',
'#theme-author-email' => '[email protected]',
'#theme-homepage' => 'https://www.ideaspacevr.org/themes',
'#theme-keywords' => 'image, slideshow',
'#theme-view' => 'scene',
'#content-types' => [
'images' => [
'#label' => 'label.images',
'#description' => 'description.upload_images',
'#max-values' => 'infinite',
'#fields' => [
'image' => [
'#label' => 'label.image',
'#description' => 'description.upload_image',
'#help' => 'help.upload_image',
'#type' => 'image',
'#file-extension' => ['jpg', 'png'],
'#content-preview-image' => true,
'#required' => true,
],
], /* fields */
], /* blog-posts */
], /* content types */
];