You are here

metatag_dc.install in Metatag 7

Installation and update scripts for metatag_dc.

File

metatag_dc/metatag_dc.install
View source
<?php

/**
 * @file
 * Installation and update scripts for metatag_dc.
 */

/**
 * The Dublic Core Additional Tags meta tags are now in a new submodule.
 */
function metatag_dc_update_7100() {
  drupal_set_message(t('The Dublin Core Additional Tags meta tags have been moved into the new "Metatag: Dublin Core Advanced" submodule.'));
}

/**
 * Implements hook_uninstall().
 */
function metatag_dc_uninstall() {

  // Remove all of the maxlength variables.
  variable_del('metatag_maxlength_dcterms.subject');
  variable_del('metatag_maxlength_dcterms.description');
}

Functions

Namesort descending Description
metatag_dc_uninstall Implements hook_uninstall().
metatag_dc_update_7100 The Dublic Core Additional Tags meta tags are now in a new submodule.