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

Contents of /contributions/modules/pam_auth/pam_auth.install

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Nov 12 18:39:22 2007 UTC (2 years ago) by nschelly
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
Initial commit of PAM Authentication module, which allows Drupal logins to authenticate against PAM.
1 <?php
2
3 /**
4 * Implementation of hook_install().
5 */
6 function pam_auth_install() {
7 require_once(dirname(__FILE__) .'/pam_auth.module');
8 _pam_auth_install_check();
9 }
10
11 /**
12 * Implementation of hook_uninstall().
13 */
14 function pam_auth_uninstall() {
15 variable_del('pam_auth_enabled');
16 variable_del('pam_auth_disable_password_changes');
17 }

  ViewVC Help
Powered by ViewVC 1.1.2