PHP Class Prado\Util\TParameterModule

TParameterModule enables loading application parameters from external storage other than the application configuration. To load parameters from an XML file, configure the module by setting its {@link setParameterFile ParameterFile} property. Note, the property only accepts a file path in namespace format with file extension being '.xml'. The file format is as follows, which is similar to the parameter portion in an application configuration, In addition, any content enclosed within the module tag is also treated as parameters, e.g., If a parameter is defined both in the external file and within the module tag, the former takes precedence.
Since: 3.0
Author: Qiang Xue ([email protected])
Author: Carl G. Mathisen ([email protected])
Inheritance: extends Prado\TModule
ファイルを表示 Open project: pradosoft/prado

Public Methods

Method Description
getParameterFile ( ) : string
init ( $config ) Initializes the module by loading parameters.
setParameterFile ( $value )

Protected Methods

Method Description
loadParameters ( $config ) Loads parameters into application.

Method Details

getParameterFile() public method

public getParameterFile ( ) : string
return string the parameter file path

init() public method

Initializes the module by loading parameters.
public init ( $config )

loadParameters() protected method

Loads parameters into application.
protected loadParameters ( $config )

setParameterFile() public method

public setParameterFile ( $value )