metatag_google_plus.install 627 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @file
  4. * Various update scripts for Metatag: Google Plus.
  5. */
  6. /**
  7. * Implements hook_install().
  8. */
  9. function metatag_google_plus_install() {
  10. // Notify the site builder that the html.tpl.php must be updated.
  11. metatag_google_plus_update_7100();
  12. }
  13. /**
  14. * Implementations of hook_update_N().
  15. */
  16. /**
  17. * Notify the site builder that the html.tpl.php file needs to be changed.
  18. */
  19. function metatag_google_plus_update_7100() {
  20. drupal_set_message(t("Note that the template's html.tpl.php must be updated in order for the Metatag: Google+ module to work correctly. Please see its README.txt file for details."));
  21. }