-
Notifications
You must be signed in to change notification settings - Fork 2
/
metatag.info
105 lines (78 loc) · 2.83 KB
/
metatag.info
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name = Metatag
description = "Adds support and an API to implement meta tags."
package = SEO
core = 7.x
; This requires Drupal 7.40 because of the project:module dependency structure.
dependencies[] = drupal:system (>= 7.40)
; CTools is required.
dependencies[] = ctools:ctools
; Requires Token; v7.x-1.6 is highly recommended due to bugs with certain tags
; when using older versions.
dependencies[] = token:token
configure = admin/config/search/metatags
; The main classes.
files[] = metatag.inc
; Defines the basic meta tags.
files[] = metatag.migrate.inc
; Search API integration.
files[] = metatag.search_api.inc
; Tests.
files[] = tests/metatag.helper.test
; Basic configuration handling.
files[] = tests/metatag.unit.test
; Basic tag testing.
files[] = tests/metatag.tags_helper.test
files[] = tests/metatag.tags.test
; Core entities.
files[] = tests/metatag.node.test
files[] = tests/metatag.term.test
files[] = tests/metatag.user.test
; Handling of core's default meta tags.
files[] = tests/metatag.core_tag_removal.test
; The custom Bulk Revert functionality.
files[] = tests/metatag.bulk_revert.test
; String handling.
files[] = tests/metatag.string_handling.test
files[] = tests/metatag.string_handling_with_i18n.test
; XSS testing.
files[] = tests/metatag.xss.test
; Output caching.
files[] = tests/metatag.output_caching.test
; Images need specia attention.
test_dependencies[] = devel:devel
test_dependencies[] = imagecache_token:imagecache_token
files[] = tests/metatag.image.test
; Internationalization & translation.
test_dependencies[] = entity_translation:entity_translation
test_dependencies[] = i18n:i18n
files[] = tests/metatag.locale.test
files[] = tests/metatag.node.with_i18n.test
files[] = tests/metatag.term.with_i18n.test
files[] = tests/metatag.with_i18n_output.test
files[] = tests/metatag.with_i18n_disabled.test
files[] = tests/metatag.with_i18n_config.test
; Basic integration with Me.
test_dependencies[] = me:me
files[] = tests/metatag.with_me.test
; Basic integration with Media.
test_dependencies[] = file_entity:file_entity
test_dependencies[] = media:media (>= 2.0, < 3.0)
files[] = tests/metatag.with_media.test
; Basic integration with Panels.
test_dependencies[] = panels:panels
files[] = tests/metatag.with_panels.test
; Basic integration with Profile2.
test_dependencies[] = profile2:profile2
files[] = tests/metatag.with_profile2.test
; Basic integration with Search API.
test_dependencies[] = entity:entity
test_dependencies[] = search_api:search_api
files[] = tests/metatag.with_search_api.test
; Integration with Workbench Moderation.
test_dependencies[] = workbench_moderation:workbench_moderation
files[] = tests/metatag.with_workbench_moderation.test
; Basic integration with Views.
test_dependencies[] = views:views
files[] = tests/metatag.with_views.test
; Other test dependencies.
test_dependencies[] = context:context