PHP Класс Xpressengine\Theme\ThemeEntity

XpressEngine에 등록된 테마들의 정보를 ThemeEntity로 생성하여 처리한다.
Автор: XE Developers ([email protected])
Наследование: implements Xpressengine\Theme\ThemeEntityInterface
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$class class name of theme
$config Xpressengine\Config\ConfigEntity
$id theme id
$object object of theme

Открытые методы

Метод Описание
__call ( string $method, array $arguments ) : mixed ThemeEntity에서 제공하지 않는 메소드일 경우 이 entity가 저장하고 있는 theme의 method를 호출한다.
__construct ( string $id, string $class ) ThemeEntity constructor.
getClass ( ) : string get class name of theme
getDescription ( ) : string get theme's description
getId ( ) : string get theme id
getObject ( ) : AbstractTheme get object of theme
getScreenshot ( ) : mixed get screenshot of theme
getSettingsURI ( ) : null | string get theme setting page url
getTitle ( ) : mixed get theme title
render ( ) : string Get the evaluated contents of the object.
renderSetting ( ConfigEntity $config = null ) : Illuminate\Contracts\View\View | void return editConfigView
resolveSetting ( array $config ) : array updateConfig
setting ( ConfigEntity $config = null ) : null get and set config
supportDesktop ( ) : boolean 테마가 desktop 버전을 지원하는지 조사한다.
supportMobile ( ) : boolean 테마가 mobile 버전을 지원하는지 조사한다.
toArray ( ) : array Get the instance as an array.
toJson ( integer $options ) : string Convert the object to its JSON representation.

Описание методов

__call() публичный Метод

ThemeEntity에서 제공하지 않는 메소드일 경우 이 entity가 저장하고 있는 theme의 method를 호출한다.
public __call ( string $method, array $arguments ) : mixed
$method string method name
$arguments array argument list
Результат mixed

__construct() публичный Метод

ThemeEntity constructor.
public __construct ( string $id, string $class )
$id string theme id
$class string theme class name

getClass() публичный Метод

get class name of theme
public getClass ( ) : string
Результат string

getDescription() публичный Метод

get theme's description
public getDescription ( ) : string
Результат string

getId() публичный Метод

get theme id
public getId ( ) : string
Результат string

getObject() публичный Метод

get object of theme
public getObject ( ) : AbstractTheme
Результат AbstractTheme

getScreenshot() публичный Метод

get screenshot of theme
public getScreenshot ( ) : mixed
Результат mixed

getSettingsURI() публичный Метод

get theme setting page url
public getSettingsURI ( ) : null | string
Результат null | string

getTitle() публичный Метод

get theme title
public getTitle ( ) : mixed
Результат mixed

render() публичный Метод

Get the evaluated contents of the object.
public render ( ) : string
Результат string

renderSetting() публичный Метод

return editConfigView
public renderSetting ( ConfigEntity $config = null ) : Illuminate\Contracts\View\View | void
$config Xpressengine\Config\ConfigEntity config data
Результат Illuminate\Contracts\View\View | void

resolveSetting() публичный Метод

updateConfig
public resolveSetting ( array $config ) : array
$config array pure config data
Результат array

setting() публичный Метод

get and set config
public setting ( ConfigEntity $config = null ) : null
$config Xpressengine\Config\ConfigEntity config data
Результат null

supportDesktop() публичный Метод

테마가 desktop 버전을 지원하는지 조사한다.
public supportDesktop ( ) : boolean
Результат boolean desktop 버전을 지원할 경우 true

supportMobile() публичный Метод

테마가 mobile 버전을 지원하는지 조사한다.
public supportMobile ( ) : boolean
Результат boolean mobile 버전을 지원할 경우 true

toArray() публичный Метод

Get the instance as an array.
public toArray ( ) : array
Результат array

toJson() публичный Метод

Convert the object to its JSON representation.
public toJson ( integer $options ) : string
$options integer json_encode option
Результат string

Описание свойств

$class защищенное свойство

class name of theme
protected $class

$config защищенное свойство

protected ConfigEntity,Xpressengine\Config $config
Результат Xpressengine\Config\ConfigEntity

$id защищенное свойство

theme id
protected $id

$object защищенное свойство

object of theme
protected $object