You are here

commons_profile_base.install in Drupal Commons 7.3

File

modules/commons/commons_profile_base/commons_profile_base.install
View source
<?php

/**
 * Revert strongarm varibles related to realname recursion error.
 */
function commons_profile_base_update_7000() {
  $revert = array(
    'commons_profile_base' => array(
      'variable',
    ),
  );
  features_revert($revert);
  return array();
}

/**
 * Replace tokens with their raw equivalents in user registration emails.
 */
function commons_profile_base_update_7001() {
  $revert = array(
    'commons_profile_base' => array(
      'variable',
    ),
  );
  features_revert($revert);
  return array();
}

Functions

Namesort descending Description
commons_profile_base_update_7000 Revert strongarm varibles related to realname recursion error.
commons_profile_base_update_7001 Replace tokens with their raw equivalents in user registration emails.