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 POP3Container extends TestAuthContainer {
8
 
9
    function &getContainer() {
10
        static $container;
11
        if(!isset($container)){
12
            include 'auth_container_pop3_options.php';
13
            $container = new Auth_Container_POP3($options);
14
        }
15
        return($container);
16
    }
17
 
18
    function &getExtraOptions() {
19
        include 'auth_container_pop3_options.php';
20
        return($extra_options);
21
    }
22
}
23
 
24
 
25
 
26
 
27
?>