oxopenidsession.php

Go to the documentation of this file.
00001 <?php
00002 
00010 class oxOpenIdSession extends oxSession
00011 {
00012 
00016     protected static $_instance = null;
00017 
00023     public static function getInstance()
00024     {
00025         if (!isset(self::$_instance)) {
00026             self::$_instance  = oxNew( 'oxOpenIdSession' );
00027         }
00028         return self::$_instance;
00029     }
00030 
00039     public function set( $name, $value)
00040     {
00041         parent::setVar( $name, $value);
00042     }
00043 
00051     public function get( $name )
00052     {
00053         return parent::getVar( $name );
00054     }
00055 
00063     public function del( $name )
00064     {
00065         parent::deleteVar( $name );
00066     }
00067 
00068 }

Generated on Thu Feb 19 15:02:22 2009 for OXID eShop CE by  doxygen 1.5.5