]> Raphaƫl G. Git Repositories - airbundle/blob - DependencyInjection/Configuration.php
Add various logo and icon image files
[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' => 'Air Libre'
65 ],
66 'copy' => [
67 'long' => 'John Doe all rights reserved',
68 'short' => 'Copyright 2019'
69 ],
70 'contact' => [
71 'name' => 'John Doe',
72 'mail' => 'contact@example.com'
73 ]
74 ];
75
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
80
81 //Here we define the parameters that are allowed to configure the bundle.
82 $treeBuilder
83 //Parameters
84 ->getRootNode()
85 ->addDefaultsIfNotSet()
86 ->children()
87 ->arrayNode('site')
88 ->addDefaultsIfNotSet()
89 ->children()
90 ->scalarNode('ico')->cannotBeEmpty()->defaultValue($defaults['site']['ico'])->end()
91 ->scalarNode('logo')->cannotBeEmpty()->defaultValue($defaults['site']['logo'])->end()
92 ->arrayNode('png')
93 ->treatNullLike([])
94 ->defaultValue($defaults['site']['png'])
95 ->scalarPrototype()->end()
96 ->end()
97 ->scalarNode('svg')->cannotBeEmpty()->defaultValue($defaults['site']['svg'])->end()
98 ->scalarNode('title')->cannotBeEmpty()->defaultValue($defaults['site']['title'])->end()
99 ->end()
100 ->end()
101 ->arrayNode('copy')
102 ->addDefaultsIfNotSet()
103 ->children()
104 ->scalarNode('long')->defaultValue($defaults['copy']['long'])->end()
105 ->scalarNode('short')->defaultValue($defaults['copy']['short'])->end()
106 ->end()
107 ->end()
108 ->arrayNode('contact')
109 ->addDefaultsIfNotSet()
110 ->children()
111 ->scalarNode('name')->cannotBeEmpty()->defaultValue($defaults['contact']['name'])->end()
112 ->scalarNode('mail')->cannotBeEmpty()->defaultValue($defaults['contact']['mail'])->end()
113 ->end()
114 ->end()
115 ->end()
116 ->end();
117
118 return $treeBuilder;
119 }
120 }