PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
wordpress-social-login
/
hybridauth
/
Hybrid
<?php /** * HybridAuth * http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth * (c) 2009-2014, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html */ /** * HybridAuth storage manager */ class Hybrid_Storage { /** * Constructor */ function __construct() { if ( ! session_id() ){ if( ! session_start() ){ throw new Exception( "Hybridauth requires the use of 'session_start()' at the start of your script, which appears to be disabled.", 1 ); } } $this->config( "version", Hybrid_Auth::$version ); } /** * Config * @param String $key * @param String $value */ public function config($key, $value = null) { $key = strtolower( $key ); if( $value ){ $_SESSION["HA::CONFIG"][$key] = serialize( $value ); } elseif( isset( $_SESSION["HA::CONFIG"][$key] ) ){ return unserialize( $_SESSION["HA::CONFIG"][$key] ); } return NULL; } /** * Get a key * @param String $key */ public function get($key) { $key = strtolower( $key ); if( isset( $_SESSION["HA::STORE"], $_SESSION["HA::STORE"][$key] ) ){ return unserialize( $_SESSION["HA::STORE"][$key] ); } return NULL; } /** * GEt a set of key and value * @param String $key * @param String $value */ public function set( $key, $value ) { $key = strtolower( $key ); $_SESSION["HA::STORE"][$key] = serialize( $value ); } /** * Clear session storage */ function clear() { $_SESSION["HA::STORE"] = ARRAY(); } /** * Delete a specific key * @param String $key */ function delete($key) { $key = strtolower( $key ); if( isset( $_SESSION["HA::STORE"], $_SESSION["HA::STORE"][$key] ) ){ $f = $_SESSION['HA::STORE']; unset($f[$key]); $_SESSION["HA::STORE"] = $f; } } /** * Delete a set * @param String $key */ function deleteMatch($key) { $key = strtolower( $key ); if( isset( $_SESSION["HA::STORE"] ) && count( $_SESSION["HA::STORE"] ) ) { $f = $_SESSION['HA::STORE']; foreach( $f as $k => $v ){ if( strstr( $k, $key ) ){ unset( $f[ $k ] ); } } $_SESSION["HA::STORE"] = $f; } } /** * Get the storage session data into an array * @return Array */ function getSessionData() { if( isset( $_SESSION["HA::STORE"] ) ){ return serialize( $_SESSION["HA::STORE"] ); } return NULL; } /** * Restore the storage back into session from an array * @param Array $sessiondata */ function restoreSessionData( $sessiondata = NULL ) { $_SESSION["HA::STORE"] = unserialize( $sessiondata ); } }
[+]
..
[+]
resources
[-] User_Activity.php
[edit]
[+]
thirdparty
[-] Storage.php
[edit]
[-] Endpoint.php
[edit]
[-] index.html
[edit]
[-] Provider_Model_OAuth1.php
[edit]
[-] Provider_Model_OAuth2.php
[edit]
[-] User.php
[edit]
[-] Error.php
[edit]
[-] User_Contact.php
[edit]
[-] User_Profile.php
[edit]
[-] Auth.php
[edit]
[+]
Providers
[-] Exception.php
[edit]
[-] Provider_Model_OpenID.php
[edit]
[-] Provider_Model.php
[edit]
[-] Provider_Adapter.php
[edit]