[ Index ]
 

Code source de Horde 3.1.3

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/lib/Horde/Auth/ -> ipmap.php (source)

   1  <?php
   2  
   3  require_once dirname(__FILE__) . '/ipbasic.php';
   4  
   5  /**
   6   * The Auth_ipmap class provides access control based on CIDR masks.
   7   *
   8   * Parameters:
   9   *   NONE
  10   *
  11   * $Horde: framework/Auth/Auth/ipmap.php,v 1.14.10.6 2006/01/01 21:28:07 jan Exp $
  12   *
  13   * Copyright 1999-2006 Chuck Hagenbuch <chuck@horde.org>
  14   *
  15   * See the enclosed file COPYING for license information (LGPL). If you
  16   * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  17   *
  18   * @author  Chuck Hagenbuch <chuck@horde.org>
  19   * @since   Horde 1.3
  20   * @package Horde_Auth
  21   */
  22  class Auth_ipmap extends Auth_ipbasic {
  23  
  24      /**
  25       * An array of capabilities, so that the driver can report which
  26       * operations it supports and which it doesn't.
  27       *
  28       * @var array
  29       */
  30      var $capabilities = array('add'           => false,
  31                                'update'        => false,
  32                                'resetpassword' => false,
  33                                'remove'        => false,
  34                                'list'          => false,
  35                                'transparent'   => true);
  36  
  37      /**
  38       * Constructs a new IP-mapping authentication object.
  39       *
  40       * @param array $params  A hash containing parameters.
  41       */
  42      function Auth_ipmap($params = array())
  43      {
  44          $this->_setParams($params);
  45      }
  46  
  47  }


Généré le : Sun Feb 25 18:01:28 2007 par Balluche grâce à PHPXref 0.7