/[drupal]/contributions/modules/role_login/role_login.install
ViewVC logotype

Contents of /contributions/modules/role_login/role_login.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Wed Aug 27 15:46:20 2008 UTC (15 months ago) by gestaltware
Branch: MAIN
CVS Tags: DRUPAL-5--1-0, HEAD
File MIME type: text/x-php
Initial Release for Drupal 5.10.
1 <?php
2 // $Id$
3
4 /**
5 * Implementation of hook_install().
6 */
7 function role_login_install() {
8 }
9
10 /**
11 * Implementation of hook_uninstall().
12 */
13 function role_login_uninstall() {
14 $vars = array(
15 'role_login_roles',
16 'role_login_link',
17 );
18 foreach ($vars as $var) {
19 variable_del($var);
20 }
21 drupal_set_message(t('Role Login variables removed.'));
22 }

  ViewVC Help
Powered by ViewVC 1.1.2