Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of External Link Page (ext_link_page) module. This module provides a custom page for all external links to go to in order to notify the user that they are leaving the site.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * The install logic for ext_link_page module |
| 7 | * |
| 8 | * The install logic for ext_link_page module |
| 9 | */ |
| 10 | |
| 11 | |
| 12 | /** |
| 13 | * Install tasks |
| 14 | * Implementation of hook_install() |
| 15 | * |
| 16 | * @return none |
| 17 | */ |
| 18 | function ext_link_page_install() { |
| 19 | |
| 20 | drupal_set_message(t("External Link Page has been installed. Settings are available under !link", array('!link' => l('Administer > Site configuration > External Link Page ', 'admin/settings/ext_link_page')))); |
| 21 | } // function ext_link_page_install |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |