3 namespace Rapsys\AirBundle\DependencyInjection
;
5 use Symfony\Component\Config\Definition\Builder\TreeBuilder
;
6 use Symfony\Component\Config\Definition\ConfigurationInterface
;
9 * This is the class that validates and merges configuration from your app/config files.
11 * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/configuration.html}
13 class Configuration
implements ConfigurationInterface
{
17 public function getConfigTreeBuilder() {
18 $treeBuilder = new TreeBuilder('rapsys_air');
20 // Here you should define the parameters that are allowed to
21 // configure your bundle. See the documentation linked above for
22 // more information on that topic.
26 'ico' => '@RapsysAir/ico/icon.ico',
27 'logo' => '@RapsysAir/png/logo.png',
29 //XXX: see https://www.emergeinteractive.com/insights/detail/the-essentials-of-favicons/
30 //XXX: see https://caniuse.com/#feat=link-icon-svg
33 256 => '@RapsysAir/png/icon.256.png',
36 //Chrome for Android home screen icon
37 196 => '@RapsysAir/png/icon.196.png',
38 //Google Developer Web App Manifest Recommendation
39 192 => '@RapsysAir/png/icon.192.png',
40 //Chrome Web Store icon
41 128 => '@RapsysAir/png/icon.128.png',
44 32 => '@RapsysAir/png/icon.32.png',
47 //XXX: old obsolete format: [57, 72, 76, 114, 120, 144]
48 //XXX: see https://webhint.io/docs/user-guide/hints/hint-apple-touch-icons/
49 //XXX: see https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html
51 180 => '@RapsysAir/png/icon.180.png',
52 //iPad Retina touch icon
53 167 => '@RapsysAir/png/icon.167.png',
55 152 => '@RapsysAir/png/icon.152.png',
58 //XXX: see https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/dn255024(v=vs.85)
59 310 => '@RapsysAir/png/icon.310.png',
60 150 => '@RapsysAir/png/icon.150.png',
61 70 => '@RapsysAir/png/icon.70.png'
63 'svg' => '@RapsysAir/svg/icon.svg',
64 'title' => 'Air Libre'
67 'long' => 'John Doe all rights reserved',
68 'short' => 'Copyright 2019'
72 'mail' => 'contact@example.com'
76 //Here we define the parameters that are allowed to configure the bundle.
77 //TODO: see https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php for default value and description
78 //TODO: see http://symfony.com/doc/current/components/config/definition.html
79 //XXX: use bin/console config:dump-reference to dump class infos
81 //Here we define the parameters that are allowed to configure the bundle.
85 ->addDefaultsIfNotSet()
88 ->addDefaultsIfNotSet()
90 ->scalarNode('ico')->cannotBeEmpty()->defaultValue($defaults['site']['ico'])->end()
91 ->scalarNode('logo')->cannotBeEmpty()->defaultValue($defaults['site']['logo'])->end()
94 ->defaultValue($defaults['site']['png'])
95 ->scalarPrototype()->end()
97 ->scalarNode('svg')->cannotBeEmpty()->defaultValue($defaults['site']['svg'])->end()
98 ->scalarNode('title')->cannotBeEmpty()->defaultValue($defaults['site']['title'])->end()
102 ->addDefaultsIfNotSet()
104 ->scalarNode('long')->defaultValue($defaults['copy']['long'])->end()
105 ->scalarNode('short')->defaultValue($defaults['copy']['short'])->end()
108 ->arrayNode('contact')
109 ->addDefaultsIfNotSet()
111 ->scalarNode('name')->cannotBeEmpty()->defaultValue($defaults['contact']['name'])->end()
112 ->scalarNode('mail')->cannotBeEmpty()->defaultValue($defaults['contact']['mail'])->end()