You are here

function uif_install in User Import Framework 7

Same name and namespace in other branches
  1. 6 uif.install \uif_install()

Implementation of hook_install().

File

./uif.install, line 11
Simple, extensible user import from a CSV file.

Code

function uif_install() {
  $args = array(
    '!url' => url('admin/people/uif'),
  );
  drupal_set_message(st('User import framework module installed. You can now <a href="!url">import users</a>.', $args));
}