You are here

function ac_update_install in Availability Calendars 7.2

Implements hook_install(). @link http://api.drupal.org/api/drupal/modules--system--system.api.php/functio...

File

ac_update/ac_update.install, line 13
Install, update and uninstall functions for the Availability Calendar Update module.

Code

function ac_update_install() {
  $t = get_t();
  $link = l($t('Update Availability Calendars'), 'admin/config/content/availability-calendars/update');
  drupal_set_message($t("You can visit the '!link' page to update Availability Calendars to the field based Availability Calendar.", array(
    '!link' => $link,
  )), 'status');
}