-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
52 lines (40 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
<?php
return [
'#theme-name' => 'Github Repository Stats',
'#theme-key' => 'github-repository-stats',
'#theme-version' => '1.0',
'#ideaspace-version' => '>=1.1.1',
'#theme-description' => 'A theme for visualizing statistics for a public github repository.',
'#theme-author-name' => 'IdeaSpaceVR',
'#theme-author-email' => '[email protected]',
'#theme-homepage' => 'https://www.ideaspacevr.org/themes',
'#theme-keywords' => 'git, github, statistics, data visualization',
'#theme-view' => 'scene',
'#content-types' => [
'repository-info' => [
'#label' => 'General Info',
'#description' => 'Add some general info for this gallery.',
'#max-values' => 1,
'#fields' => [
'repository-owner-name' => [
'#label' => 'Github Repository Owner',
'#description' => 'Enter owner name.',
'#help' => 'Enter owner name.',
'#type' => 'textfield',
'#maxlength' => 100,
'#contentformat' => 'text',
'#required' => true,
],
'repository-name' => [
'#label' => 'Github Repository Name',
'#description' => 'Enter repository name.',
'#help' => 'Enter repository name.',
'#type' => 'textfield',
'#maxlength' => 100,
'#contentformat' => 'text',
'#required' => true,
],
],
],
], /* content types */
];