* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * sfSecurityConfigHandler allows you to configure action security. * * @package symfony * @subpackage config * @author Fabien Potencier * @version SVN: $Id: sfSecurityConfigHandler.class.php 9085 2008-05-20 01:53:23Z Carl.Vondrick $ */ class sfSecurityConfigHandler extends sfYamlConfigHandler { /** * Executes this configuration handler. * * @param array $configFiles An array of absolute filesystem path to a configuration file * * @return string Data to be written to a cache file * * @throws sfConfigurationException If a requested configuration file does not exist or is not readable * @throws sfParseException If a requested configuration file is improperly formatted * @throws sfInitializationException If a view.yml key check fails */ public function execute($configFiles) { // parse the yaml $config = self::getConfiguration($configFiles); // compile data $retval = sprintf("security = %s;\n", date('Y/m/d H:i:s'), var_export($config, true)); return $retval; } /** * @see sfConfigHandler */ static public function getConfiguration(array $configFiles) { $config = self::flattenConfiguration(self::parseYamls($configFiles)); // change all of the keys to lowercase $config = array_change_key_case($config); return $config; } }