node_type_count.install in Node Type count 7
Enable functions for Node type count.
File
node_type_count.installView source
<?php
/**
* @file
* Enable functions for Node type count.
*/
/**
* Implements hook_enable().
*/
function node_type_count_enable() {
$t = get_t();
$config_link = url() . 'admin/reports/node-type-count';
drupal_set_message($t("Node Type Count Module settings are available under <a href='@link'>Reports > Node Type</a>", array(
'@link' => $config_link,
)));
}
Functions
Name | Description |
---|---|
node_type_count_enable | Implements hook_enable(). |