metatag_dc.install 568 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * Installation and update scripts for metatag_dc.
  5. */
  6. /**
  7. * The Dublic Core Additional Tags meta tags are now in a new submodule.
  8. */
  9. function metatag_dc_update_7100() {
  10. drupal_set_message(t('The Dublin Core Additional Tags meta tags have been moved into the new "Metatag: Dublin Core Advanced" submodule.'));
  11. }
  12. /**
  13. * Implements hook_uninstall().
  14. */
  15. function metatag_dc_uninstall() {
  16. // Remove all of the maxlength variables.
  17. variable_del('metatag_maxlength_dcterms.subject');
  18. variable_del('metatag_maxlength_dcterms.description');
  19. }