token_example.info 755 B

1234567891011121314151617181920
  1. name = Token example
  2. description = An example module showing how to define and use tokens.
  3. package = Example modules
  4. core = 7.x
  5. ; Since someone might install our module through Composer, we want to be sure
  6. ; that the Drupal Composer facade knows we're specifying a contrib module.
  7. ; We do this by namespacing the dependency name with project name in format:
  8. ; dependencies[] = {project}:{module}
  9. dependencies[] = token:token
  10. ; Since the namespacing feature is new as of Drupal 7.40, we have to require at
  11. ; least that version of core.
  12. dependencies[] = drupal:system (>= 7.40)
  13. files[] = token_example.test
  14. ; Information added by Drupal.org packaging script on 2017-01-10
  15. version = "7.x-1.x-dev"
  16. core = "7.x"
  17. project = "examples"
  18. datestamp = "1484076787"