From 3e70578ca69e2ca4f654a05936cc1c2c7e266da8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 7 Jul 2021 17:20:26 +0200 Subject: [PATCH] Add calendar default config --- DependencyInjection/Configuration.php | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index da04209..1dd3019 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -66,6 +66,18 @@ class Configuration implements ConfigurationInterface { 'title' => 'Libre Air', 'url' => 'rapsys_air' ], + 'cache' => [ + 'namespace' => 'airlibre', + 'lifetime' => 0, + 'directory' => '%kernel.project_dir%/var/cache' + ], + 'calendar' => [ + 'calendar' => 'rmg68hd51sploubp5qffdthiak@group.calendar.google.com', + 'prefix' => 'airlibre', + 'project' => 'calendar-317315', + 'client' => '635317121880-usqucmne71jnmprl8br9khh2om4n8cmh.apps.googleusercontent.com', + 'secret' => 'HRsKd4FIc9gxQHM4IoBWnlbD' + ], 'copy' => [ 'by' => 'Created by Raphaël', 'link' => 'https://rapsys.eu', @@ -108,6 +120,24 @@ class Configuration implements ConfigurationInterface { ->scalarNode('url')->cannotBeEmpty()->defaultValue($defaults['site']['url'])->end() ->end() ->end() + ->arrayNode('cache') + ->addDefaultsIfNotSet() + ->children() + ->scalarNode('namespace')->defaultValue($defaults['cache']['namespace'])->end() + ->integerNode('lifetime')->min(0)->defaultValue($defaults['cache']['lifetime'])->end() + ->scalarNode('directory')->defaultValue($defaults['cache']['directory'])->end() + ->end() + ->end() + ->arrayNode('calendar') + ->addDefaultsIfNotSet() + ->children() + ->scalarNode('calendar')->defaultValue($defaults['calendar']['calendar'])->end() + ->scalarNode('prefix')->defaultValue($defaults['calendar']['prefix'])->end() + ->scalarNode('project')->defaultValue($defaults['calendar']['project'])->end() + ->scalarNode('client')->defaultValue($defaults['calendar']['client'])->end() + ->scalarNode('secret')->defaultValue($defaults['calendar']['secret'])->end() + ->end() + ->end() ->arrayNode('copy') ->addDefaultsIfNotSet() ->children() -- 2.41.0