form_placeholder.install 614 Bytes
<?php

/**
 * @file
 * Installation functions for Form Placeholder module.
 */

/**
 * Implements hook_enable().
 */
function form_placeholder_enable() {
  drupal_set_message(t(
    'Form Placeholder module is enabled, now You can go to the <a href="@module-config">module configuration page</a>.',
     array('@module-config' => url('admin/config/user-interface/form-placeholder'))));
}

/**
 * Implements hook_uninstall().
 */
function form_placeholder_uninstall() {
  variable_del('form_placeholder_include');
  variable_del('form_placeholder_exclude');
  variable_del('form_placeholder_required_indicator');
}