home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / POP3Container.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  646 b   |  31 lines

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