IPBWI
[ class tree: IPBWI ] [ index: IPBWI ] [ all elements ]

Source for file ips_public_core_global_login.inc.php

Documentation is available at ips_public_core_global_login.inc.php

  1. <?php
  2.  
  3. require_once(ipbwi_BOARD_PATH 'admin/applications/core/modules_public/global/login.php' );
  4. class ipbwi_ips_public_core_global_login extends public_core_global_login {
  5.  
  6.     // load login handler. these functions are the base for login and logout
  7.     public function initHanLogin($core=false)
  8.     {
  9.         /* Make object */
  10.         $this->registry   $core;
  11.         $this->DB         $this->registry->DB();
  12.         $this->settings   $this->registry->fetchSettings();
  13.         $this->request    $this->registry->fetchRequest();
  14.         $this->lang       $this->registry->getClass('class_localization');
  15.         $this->member     $this->registry->member();
  16.         $this->memberData $this->registry->member()->fetchMemberData();
  17.         $this->cache      $this->registry->cache();
  18.         $this->caches     $this->registry->cache()->fetchCaches();
  19.     
  20.         require_onceIPS_ROOT_PATH 'sources/handlers/han_login.php' );
  21.         $this->han_login =  new han_login($this->registry);
  22.         $this->han_login->init();
  23.     }
  24.     
  25.     public function doLogin()
  26.     {
  27.         return @$this->han_login->verifyLogin()// @ todo: check notices from ip.board
  28.     }
  29. }
  30.  
  31. ?>

Documentation generated on Sat, 23 Oct 2010 23:35:54 +0200 by phpDocumentor 1.4.3