You are here

function flog_install in File logger 6

Same name and namespace in other branches
  1. 7 flog.install \flog_install()

Implementation of hook_install().

File

./flog.install, line 11
flog: Dump variables to a file.

Code

function flog_install() {
  drupal_set_message(st("File logger installed.  Configure and enable at !link", array(
    '!link' => l('Administer > Site configuration > File logging ', 'admin/settings/flog'),
  )));
}