-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotionsplan_exercise.features.taxonomy.inc
61 lines (60 loc) · 1.61 KB
/
motionsplan_exercise.features.taxonomy.inc
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
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* @file
* motionsplan_exercise.features.taxonomy.inc
*/
/**
* Implements hook_taxonomy_default_vocabularies().
*/
function motionsplan_exercise_taxonomy_default_vocabularies() {
return array(
'motionsplan_activity_category' => array(
'name' => 'Kategori for aktivitet',
'machine_name' => 'motionsplan_activity_category',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'type_of_training' => array(
'name' => 'Type of training',
'machine_name' => 'type_of_training',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'vocabulary_1' => array(
'name' => 'Tags',
'machine_name' => 'vocabulary_1',
'description' => 'Beskriv øvelsen med nøgleord',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'vocabulary_3' => array(
'name' => 'Redskaber',
'machine_name' => 'vocabulary_3',
'description' => '',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
'vocabulary_4' => array(
'name' => 'Funktionel bevægelse',
'machine_name' => 'vocabulary_4',
'description' => '<p>Den overordnede bevægelse øvelsen træner.</p>',
'hierarchy' => 1,
'module' => 'taxonomy',
'weight' => 0,
),
'vocabulary_5' => array(
'name' => 'Muskelgruppe',
'machine_name' => 'vocabulary_5',
'description' => 'Muskelgruppe der indgår i bevægelsen',
'hierarchy' => 0,
'module' => 'taxonomy',
'weight' => 0,
),
);
}