metatag.info 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. name = Metatag
  2. description = "Adds support and an API to implement meta tags."
  3. package = SEO
  4. core = 7.x
  5. ; This requires Drupal 7.28 or newer as it fixes the [node:summary] token that
  6. ; was previously broken.
  7. dependencies[] = drupal:system (>= 7.28)
  8. ; CTools is required.
  9. dependencies[] = ctools:ctools
  10. ; Requires Token; v7.x-1.6 is highly recommended due to bugs with certain tags
  11. ; when using older versions.
  12. dependencies[] = token:token
  13. configure = admin/config/search/metatags
  14. ; The main classes.
  15. files[] = metatag.inc
  16. ; Defines the basic meta tags.
  17. files[] = metatag.migrate.inc
  18. ; Search API integration.
  19. files[] = metatag.search_api.inc
  20. ; Tests.
  21. files[] = tests/metatag.helper.test
  22. ; Basic configuration handling.
  23. files[] = tests/metatag.unit.test
  24. ; Basic tag testing.
  25. files[] = tests/metatag.tags_helper.test
  26. files[] = tests/metatag.tags.test
  27. ; Core entities.
  28. files[] = tests/metatag.node.test
  29. files[] = tests/metatag.term.test
  30. files[] = tests/metatag.user.test
  31. ; Handling of core's default meta tags.
  32. files[] = tests/metatag.core_tag_removal.test
  33. ; The custom Bulk Revert functionality.
  34. files[] = tests/metatag.bulk_revert.test
  35. ; String handling.
  36. files[] = tests/metatag.string_handling.test
  37. files[] = tests/metatag.string_handling_with_i18n.test
  38. ; XSS testing.
  39. files[] = tests/metatag.xss.test
  40. ; Output caching.
  41. files[] = tests/metatag.output_caching.test
  42. ; Images need specia attention.
  43. test_dependencies[] = devel:devel
  44. test_dependencies[] = imagecache_token:imagecache_token
  45. files[] = tests/metatag.image.test
  46. ; Internationalization & translation.
  47. test_dependencies[] = entity_translation:entity_translation
  48. test_dependencies[] = i18n:i18n
  49. files[] = tests/metatag.locale.test
  50. files[] = tests/metatag.node.with_i18n.test
  51. files[] = tests/metatag.term.with_i18n.test
  52. files[] = tests/metatag.with_i18n_output.test
  53. files[] = tests/metatag.with_i18n_disabled.test
  54. files[] = tests/metatag.with_i18n_config.test
  55. ; Basic integration with Me.
  56. test_dependencies[] = me:me
  57. files[] = tests/metatag.with_me.test
  58. ; Basic integration with Media.
  59. test_dependencies[] = file_entity:file_entity
  60. test_dependencies[] = media:media (>= 2.0, < 3.0)
  61. files[] = tests/metatag.with_media.test
  62. ; Basic integration with Panels.
  63. test_dependencies[] = panels:panels
  64. files[] = tests/metatag.with_panels.test
  65. ; Basic integration with Profile2.
  66. test_dependencies[] = profile2:profile2
  67. files[] = tests/metatag.with_profile2.test
  68. ; Basic integration with Search API.
  69. test_dependencies[] = entity:entity
  70. test_dependencies[] = search_api:search_api
  71. files[] = tests/metatag.with_search_api.test
  72. ; Integration with Workbench Moderation.
  73. test_dependencies[] = workbench_moderation:workbench_moderation
  74. files[] = tests/metatag.with_workbench_moderation.test
  75. ; Basic integration with Views.
  76. test_dependencies[] = views:views
  77. files[] = tests/metatag.with_views.test
  78. ; Other test dependencies.
  79. test_dependencies[] = context:context
  80. ; Information added by Drupal.org packaging script on 2017-02-15
  81. version = "7.x-1.21"
  82. core = "7.x"
  83. project = "metatag"
  84. datestamp = "1487171290"