5.3 버전 내용 적용
This commit is contained in:
29
plugin/social/Hybrid/StorageInterface.php
Normal file
29
plugin/social/Hybrid/StorageInterface.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* HybridAuth
|
||||
* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
|
||||
* (c) 2009-2015, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
|
||||
*/
|
||||
|
||||
/**
|
||||
* HybridAuth storage manager interface
|
||||
*/
|
||||
interface Hybrid_Storage_Interface {
|
||||
|
||||
public function config($key, $value = null);
|
||||
|
||||
public function get($key);
|
||||
|
||||
public function set($key, $value);
|
||||
|
||||
function clear();
|
||||
|
||||
function delete($key);
|
||||
|
||||
function deleteMatch($key);
|
||||
|
||||
function getSessionData();
|
||||
|
||||
function restoreSessionData($sessiondata = null);
|
||||
}
|
||||
Reference in New Issue
Block a user