You are here

function workflow_enable in Workflow 7.2

Implements hook_enable().

File

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

Code

function workflow_enable() {
  $message = t('Thanks for using Workflow. To maintain workflows, enable the
    <a href="!url_ui">Workflow UI module</a>. To add a Workflow Field to your
    entity, enable the <a href="!url_field">Workflow Field module</a>.', array(
    '!url_ui' => url('admin/config/modules'),
    '!url_field' => url('admin/config/modules'),
  ));
  drupal_set_message($message);
}