PHP 인터페이스 WDS_WP_REST_API\Storage\Store_Interface

파일 보기 프로젝트 열기: webdevstudios/wds-wp-rest-api-connect 0 사용 예제들

공개 메소드들

메소드 설명
delete ( string $option = '' ) : boolean Handles deleting the stored data for a connection
get ( string $option, string $key = '', boolean $force = false ) : mixed Retrieve stored option
get_key ( ) Get option key
set ( $options = null ) : Result Update the stored value
set_key ( $key ) Set option key
update ( mixed $value, string $option = '', string $key = '', $set = true ) : Original Update the options array

메소드 상세

delete() 공개 메소드

Handles deleting the stored data for a connection
public delete ( string $option = '' ) : boolean
$option string Specific option key to unset. If empty, entire object is deleted.
리턴 boolean Result of deletion from DB

get() 공개 메소드

Retrieve stored option
public get ( string $option, string $key = '', boolean $force = false ) : mixed
$option string Option array key
$key string Key for secondary array
$force boolean Force a new call to get_option
리턴 mixed Value of option requested

get_key() 공개 메소드

Get option key
public get_key ( )

set() 공개 메소드

Update the stored value
public set ( $options = null ) : Result
리턴 Result of storage update/add

set_key() 공개 메소드

Set option key
public set_key ( $key )

update() 공개 메소드

Update the options array
부터: 0.1.0
public update ( mixed $value, string $option = '', string $key = '', $set = true ) : Original
$value mixed Value to be updated
$option string Option array key
$key string Key for secondary array
리턴 Original $value if successful