oxopenidsession.php

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