PHP Trait Xpressengine\Plugin\ComponentTrait

ファイルを表示 Open project: xpressengine/xpressengine

Public Methods

Method Description
boot ( ) : void boot
getComponentInfo ( string $key = null ) : mixed information을 검색한다.
getId ( ) : string component의 id를 반환한다.
getSettingsURI ( ) : null | string return settings manage uri
setComponentInfo ( string $key, mixed $value = null ) : void information을 추가하거나 수정한다.
setId ( string $id ) : void component의 id를 지정한다.

Method Details

boot() public static method

boot
public static boot ( ) : void
return void

getComponentInfo() public static method

information을 검색한다.
public static getComponentInfo ( string $key = null ) : mixed
$key string 검색할 information의 키
return mixed 검색된 information를 반환함.

getId() public static method

component의 id를 반환한다.
public static getId ( ) : string
return string

getSettingsURI() public static method

return settings manage uri
public static getSettingsURI ( ) : null | string
return null | string

setComponentInfo() public static method

information을 추가하거나 수정한다.
public static setComponentInfo ( string $key, mixed $value = null ) : void
$key string 추가하거나 수정할 information의 key
$value mixed 추가하거나 수정할 information의 value
return void

setId() public static method

component의 id를 지정한다.
public static setId ( string $id ) : void
$id string 지정할 id
return void