PHP Class Prado\Web\UI\TTheme

TTheme represents a particular theme. It is merely a collection of skins that are applicable to the corresponding controls. Each theme is stored as a directory and files under that directory. The theme name is the directory name. When TTheme is created, the files whose name has the extension ".skin" are parsed and saved as controls skins. A skin is essentially a list of initial property values that are to be applied to a control when the skin is applied. Each type of control can have multiple skins identified by the SkinID. If a skin does not have SkinID, it is the default skin that will be applied to controls that do not specify particular SkinID. Whenever possible, TTheme will try to make use of available cache to save the parsing time. To apply a theme to a particular control, call {@link applySkin}.
Since: 3.0
Author: Qiang Xue ([email protected])
Inheritance: extends Prado\TApplicationComponent, implements Prado\Web\UI\ITheme
Afficher le fichier Open project: pradosoft/prado

Méthodes publiques

Méthode Description
__construct ( $themePath, $themeUrl ) Constructor.
applySkin ( $control ) : boolean Applies the theme to a particular control.
getBasePath ( ) : string
getBaseUrl ( ) : string
getJavaScriptFiles ( ) : array
getName ( ) : string
getSkins ( ) : array
getStyleSheetFiles ( ) : array

Méthodes protégées

Méthode Description
setBasePath ( $value )
setBaseUrl ( $value )
setJavaScriptFiles ( $value )
setName ( $value )
setSkins ( $value )
setStyleSheetFiles ( $value )

Method Details

__construct() public méthode

Constructor.
public __construct ( $themePath, $themeUrl )

applySkin() public méthode

The control's class name and SkinID value will be used to identify which skin to be applied. If the control's SkinID is empty, the default skin will be applied.
public applySkin ( $control ) : boolean
Résultat boolean if a skin is successfully applied

getBasePath() public méthode

public getBasePath ( ) : string
Résultat string the file path to the theme folder

getBaseUrl() public méthode

public getBaseUrl ( ) : string
Résultat string the URL to the theme folder (without ending slash)

getJavaScriptFiles() public méthode

public getJavaScriptFiles ( ) : array
Résultat array list of Javascript files (URL) in the theme

getName() public méthode

public getName ( ) : string
Résultat string theme name

getSkins() public méthode

public getSkins ( ) : array
Résultat array list of skins for the theme

getStyleSheetFiles() public méthode

public getStyleSheetFiles ( ) : array
Résultat array list of CSS files (URL) in the theme

setBasePath() protected méthode

protected setBasePath ( $value )

setBaseUrl() protected méthode

protected setBaseUrl ( $value )

setJavaScriptFiles() protected méthode

protected setJavaScriptFiles ( $value )

setName() protected méthode

protected setName ( $value )

setSkins() protected méthode

protected setSkins ( $value )

setStyleSheetFiles() protected méthode

protected setStyleSheetFiles ( $value )