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

  1. <?php
  2.  
  3. include_once('TestAuthContainer.php');
  4. include_once("Auth/Container/File.php");
  5.  
  6. class FileContaner extends TestAuthContainer {
  7.  
  8.     function FileContaner($name){
  9.         $this->TestAuthContainer($name);
  10.     }
  11.     
  12.     function &getContainer() {
  13.         static $container;
  14.         if(!isset($container)){
  15.             include('./auth_container_file_options.php');
  16.             $container = new Auth_Container_File($options);
  17.         }
  18.         return($container);
  19.     }
  20.     
  21.     function &getExtraOptions() {
  22.         include('./auth_container_file_options.php');
  23.         return($extra_options);
  24.     }
  25. }
  26.  
  27.  
  28.  
  29.  
  30. ?>