You are here

function colorbox_enable in Colorbox 7.2

Implements hook_enable().

File

./colorbox.install, line 11
Install, update and uninstall functions for the colorbox module.

Code

function colorbox_enable() {
  drupal_set_message(t('Thanks for installing Colorbox'));
  drupal_set_message(t('You may configure Colorbox by visiting <a href="@url_settings">@url_settings</a>', array(
    '@url_settings' => url('admin/config/media/colorbox'),
  )));
}