Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
include_once 'TestAuthContainer.php';
4
include_once 'Auth/Container/POP3.php';
5
 
6
 
7
class POP3aContainer extends TestAuthContainer {
8
 
9
 
10
    function &getContainer() {
11
        static $container;
12
        if(!isset($container)){
13
            include 'auth_container_pop3a_options.php';
14
            $container = new Auth_Container_POP3($options);
15
        }
16
        return($container);
17
    }
18
 
19
    function &getExtraOptions() {
20
        include 'auth_container_pop3a_options.php';
21
        return($extra_options);
22
    }
23
}
24
 
25
 
26
 
27
 
28
?>