]> Raphaƫl G. Git Repositories - airbundle/blob - DependencyInjection/Configuration.php
Skip flattening of rapsys_air.locales
[airbundle] / DependencyInjection / Configuration.php
1 <?php
2
3 namespace Rapsys\AirBundle\DependencyInjection;
4
5 use Symfony\Component\Config\Definition\Builder\TreeBuilder;
6 use Symfony\Component\Config\Definition\ConfigurationInterface;
7
8 /**
9 * This is the class that validates and merges configuration from your app/config files.
10 *
11 * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/configuration.html}
12 */
13 class Configuration implements ConfigurationInterface {
14 /**
15 * {@inheritdoc}
16 */
17 public function getConfigTreeBuilder() {
18 $treeBuilder = new TreeBuilder('rapsys_air');
19
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.
23 //Set defaults
24 $defaults = [
25 'site' => [
26 'ico' => '@RapsysAir/ico/icon.ico',
27 'logo' => '@RapsysAir/png/logo.png',
28 //The png icon array
29 //XXX: see https://www.emergeinteractive.com/insights/detail/the-essentials-of-favicons/
30 //XXX: see https://caniuse.com/#feat=link-icon-svg
31 'png' => [
32 //Default
33 256 => '@RapsysAir/png/icon.256.png',
34
35 //For google
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',
42
43 //Fallback
44 32 => '@RapsysAir/png/icon.32.png',
45
46 //For apple
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
50 //iPhone Retina
51 180 => '@RapsysAir/png/icon.180.png',
52 //iPad Retina touch icon
53 167 => '@RapsysAir/png/icon.167.png',
54 //iPad touch icon
55 152 => '@RapsysAir/png/icon.152.png',
56
57 //For windows
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'
62 ],
63 'svg' => '@RapsysAir/svg/icon.svg',
64 'title' => 'Open Air',
65 'url' => 'rapsys_air'
66 ],
67 'copy' => [
68 'long' => 'John Doe all rights reserved',
69 'short' => 'Copyright 2019'
70 ],
71 'contact' => [
72 'name' => 'John Doe',
73 'mail' => 'contact@example.com'
74 ]
75 ];
76
77 //Here we define the parameters that are allowed to configure the bundle.
78 //TODO: see https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php for default value and description
79 //TODO: see http://symfony.com/doc/current/components/config/definition.html
80 //XXX: use bin/console config:dump-reference to dump class infos
81
82 //Here we define the parameters that are allowed to configure the bundle.
83 $treeBuilder
84 //Parameters
85 ->getRootNode()
86 ->addDefaultsIfNotSet()
87 ->children()
88 ->arrayNode('site')
89 ->addDefaultsIfNotSet()
90 ->children()
91 ->scalarNode('ico')->cannotBeEmpty()->defaultValue($defaults['site']['ico'])->end()
92 ->scalarNode('logo')->cannotBeEmpty()->defaultValue($defaults['site']['logo'])->end()
93 ->arrayNode('png')
94 ->treatNullLike([])
95 ->defaultValue($defaults['site']['png'])
96 ->scalarPrototype()->end()
97 ->end()
98 ->scalarNode('svg')->cannotBeEmpty()->defaultValue($defaults['site']['svg'])->end()
99 ->scalarNode('title')->cannotBeEmpty()->defaultValue($defaults['site']['title'])->end()
100 ->scalarNode('url')->cannotBeEmpty()->defaultValue($defaults['site']['url'])->end()
101 ->end()
102 ->end()
103 ->arrayNode('copy')
104 ->addDefaultsIfNotSet()
105 ->children()
106 ->scalarNode('long')->defaultValue($defaults['copy']['long'])->end()
107 ->scalarNode('short')->defaultValue($defaults['copy']['short'])->end()
108 ->end()
109 ->end()
110 ->arrayNode('contact')
111 ->addDefaultsIfNotSet()
112 ->children()
113 ->scalarNode('name')->cannotBeEmpty()->defaultValue($defaults['contact']['name'])->end()
114 ->scalarNode('mail')->cannotBeEmpty()->defaultValue($defaults['contact']['mail'])->end()
115 ->end()
116 ->end()
117 ->end()
118 ->end();
119
120 return $treeBuilder;
121 }
122 }