ezini
Summary
Provides read access to settings in the configuration files.Usage
ezini( section, variable [, ini file] )
Parameters
Name | Type | Description | Required |
---|---|---|---|
section | string | Section to read value from. | Yes. |
variable | string | The name of the directive that should be accessed. | Yes. |
ini file | string | The target configuration file (default is "site.ini"). | No. |
Returns
A string containing the value of a configuration setting.Description
This operator makes it possible to access the settings in the configuration ("*.ini") files.
Examples
Example 1
{if eq(ezini( 'SomeSettings', 'Test', 'example.ini' ), 'hello' )} [...display something...] {else} [...display something else...] {/if}
Conditional branching based on an configuration setting.
Balazs Halasy (05/02/2004 10:32 am)
Balazs Halasy (04/05/2005 1:46 pm)
Comments
There are no comments.