[go: up one dir, main page]

File: null.php

package info (click to toggle)
sork-accounts 2.1.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 532 kB
  • ctags: 79
  • sloc: sh: 553; php: 360; makefile: 114; perl: 30; xml: 16
file content (40 lines) | stat: -rw-r--r-- 997 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/*
 * $Horde: accounts/lib/Driver/null.php,v 1.4.2.1 2003/01/19 06:53:21 ericr Exp $
 *
 * Copyright 2002-2003 Eric Jon Rostetter <eric.rostetter@physics.utexas.edu>
 *
 * See the enclosed file LICENSE for license information (BSD). If you
 * did not receive this file, see http://www.horde.org/bsdl.php.
 *
 * Implements a "null" Accounts API for servers that don't support any
 * way to retrieve user information.
 *
 * @author  Eric Rostetter <eric.rosttter@physics.utexas.edu>
 * @version $Revision: 1.4.2.1 $
 * @since   Accounts 2.1
 * @package accounts
 */

class Accounts_Driver_null extends Accounts_Driver {

    /**
     * Hash containing connection parameters.
     *
     * @var array $params
     */
    var $params = array();


    /**
     * Constructor
     *
     * @access public
     *
     * @param optional array $params  Hash containing connection parameters.
     */
    function Accounts_Driver_null($params = array())
    {
        $this->params = $params;
    }
}