metatag.info 3.0 KB

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