metatag.info 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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[] = system (>= 7.28)
  8. ; CTools is required.
  9. dependencies[] = 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
  13. configure = admin/config/search/metatags
  14. files[] = metatag.inc
  15. files[] = metatag.migrate.inc
  16. files[] = metatag.search_api.inc
  17. ; Tests.
  18. files[] = tests/metatag.helper.test
  19. ; Basic configuration handling.
  20. files[] = tests/metatag.unit.test
  21. ; Core entities.
  22. files[] = tests/metatag.node.test
  23. files[] = tests/metatag.term.test
  24. files[] = tests/metatag.user.test
  25. ; Handling of core's default meta tags.
  26. files[] = tests/metatag.core_tag_removal.test
  27. ; String handling.
  28. files[] = tests/metatag.string_handling.test
  29. files[] = tests/metatag.string_handling_with_i18n.test
  30. ; Images need specia attention.
  31. files[] = tests/metatag.image.test
  32. ; Internationalization & translation.
  33. files[] = tests/metatag.locale.test
  34. files[] = tests/metatag.with_i18n_output.test
  35. files[] = tests/metatag.with_i18n_disabled.test
  36. files[] = tests/metatag.with_i18n_config.test
  37. files[] = tests/metatag.with_i18n_node.test
  38. ; Basic integration with Media.
  39. files[] = tests/metatag.with_media.test
  40. ; Basic integration with Panels.
  41. files[] = tests/metatag.with_panels.test
  42. ; Basic integration with Profile2.
  43. files[] = tests/metatag.with_profile2.test
  44. ; Basic integration with Search API.
  45. files[] = tests/metatag.with_search_api.test
  46. ; Basic integration with Views.
  47. files[] = tests/metatag.with_views.test
  48. ; This is required for testing image handling.
  49. test_dependencies[] = devel
  50. test_dependencies[] = imagecache_token
  51. ; These are required for the internationalization & translation functionality.
  52. test_dependencies[] = entity_translation
  53. test_dependencies[] = i18n
  54. ; These are required for the submodules.
  55. test_dependencies[] = context
  56. test_dependencies[] = panels
  57. test_dependencies[] = views
  58. ; These are required for the Media integration.
  59. test_dependencies[] = file_entity
  60. test_dependencies[] = media
  61. ; These are required for the Search API integration.
  62. test_dependencies[] = entity
  63. test_dependencies[] = search_api
  64. ; This is required for the Profile2-related tests.
  65. test_dependencies[] = profile2
  66. ; Information added by Drupal.org packaging script on 2016-06-30
  67. version = "7.x-1.17"
  68. core = "7.x"
  69. project = "metatag"
  70. datestamp = "1467306248"