You are here

function uif_install in User Import Framework 6

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

Implementation of hook_install().

File

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

Code

function uif_install() {
  drupal_set_message(st("User import framework module installed. You can now !link.", array(
    '!link' => l('import users', 'admin/user/uif'),
  )));
}