metatag_verification.install 499 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @file
  4. * Update scripts for the Metatag:Verification submodule.
  5. */
  6. /**
  7. * Implementations of hook_update_N().
  8. */
  9. /**
  10. * Remove the Alexa verification tag.
  11. */
  12. function metatag_verification_update_7100() {
  13. module_load_include('install', 'metatag');
  14. metatag_update_delete_config('alexaVerifyID');
  15. }
  16. /**
  17. * Remove the Yahoo verification tag.
  18. */
  19. function metatag_verification_update_7101() {
  20. module_load_include('install', 'metatag');
  21. metatag_update_delete_config('y_key');
  22. }