mailing.features.metatag.inc 707 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * @file
  4. * mailing.features.metatag.inc
  5. */
  6. /**
  7. * Implements hook_metatag_export_default().
  8. */
  9. function mailing_metatag_export_default() {
  10. $config = array();
  11. // Exported Metatag config instance: node:simplenews.
  12. $config['node:simplenews'] = array(
  13. 'instance' => 'node:simplenews',
  14. 'config' => array(
  15. 'robots' => array(
  16. 'value' => array(
  17. 'index' => 'index',
  18. 'follow' => 0,
  19. 'noindex' => 0,
  20. 'nofollow' => 0,
  21. 'noarchive' => 0,
  22. 'nosnippet' => 0,
  23. 'noodp' => 0,
  24. 'noydir' => 0,
  25. 'noimageindex' => 0,
  26. 'notranslate' => 0,
  27. ),
  28. ),
  29. ),
  30. );
  31. return $config;
  32. }