sfFilterConfigHandler allows you to register filters with the system.
Method Summary
-
string
addFilter($category, $class, $parameters)
Adds a filter statement to the data.
-
string
addSecurityFilter($category, $class, $parameters)
Adds a security filter statement to the data.
-
string
execute($configFiles)
Executes this configuration handler
-
getConfiguration()
@see sfConfigHandler
flattenConfiguration , flattenConfigurationWithEnvironment , getConfigValue , mergeConfigValue , parseYaml , parseYamls
execute , getConfiguration , getParameterHolder , initialize , replaceConstants , replacePath , __construct
Method Details
-
(string) addFilter ($category, $class, $parameters)
Browse code
| $category |
The category name |
| $class |
The filter class name |
| $parameters |
Filter default parameters |
Adds a filter statement to the data.
returns The PHP statement
-
(string) addSecurityFilter ($category, $class, $parameters)
Browse code
| $category |
The category name |
| $class |
The filter class name |
| $parameters |
Filter default parameters |
Adds a security filter statement to the data.
returns The PHP statement
-
(string) execute ($configFiles)
Browse code
| $configFiles |
An array of absolute filesystem path to a configuration file |
Executes this configuration handler
returns Data to be written to a cache file
throws sfConfigurationException If a requested configuration file does not exist or is not readable
-
@see sfConfigHandler
|