PHP 클래스 yii\authclient\SessionStateStorage

또한 보기: StateStorageInterface
또한 보기: Session
부터: 2.1
저자: Paul Klimov ([email protected])
상속: extends yii\base\Component, implements yii\authclient\StateStorageInterface
파일 보기 프로젝트 열기: yiisoft/yii2-authclient

공개 프로퍼티들

프로퍼티 타입 설명
$session session object or the application component ID of the session object to be used. After the SessionStateStorage object is created, if you want to change this property, you should only assign it with a session object. If not set - application 'session' component will be used, but only, if it is available (e.g. in web application), otherwise - no session will be used and no data saving will be performed.

공개 메소드들

메소드 설명
get ( $key )
init ( )
remove ( $key )
set ( $key, $value )

메소드 상세

get() 공개 메소드

public get ( $key )

init() 공개 메소드

public init ( )

remove() 공개 메소드

public remove ( $key )

set() 공개 메소드

public set ( $key, $value )

프로퍼티 상세

$session 공개적으로 프로퍼티

session object or the application component ID of the session object to be used. After the SessionStateStorage object is created, if you want to change this property, you should only assign it with a session object. If not set - application 'session' component will be used, but only, if it is available (e.g. in web application), otherwise - no session will be used and no data saving will be performed.
public $session