‪TYPO3CMS  9.5
Html5MetaTagManager.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
3 
5 
6 /*
7  * This file is part of the TYPO3 CMS project.
8  *
9  * It is free software; you can redistribute it and/or modify it under
10  * the terms of the GNU General Public License, either version 2
11  * of the License, or any later version.
12  *
13  * For the full copyright and license information, please read the
14  * LICENSE.txt file that was distributed with this source code.
15  *
16  * The TYPO3 project - inspiring people to share!
17  */
18 
20 {
26  protected ‪$handledProperties = [
27  'application-name' => [],
28  'author' => [],
29  'description' => [],
30  'generator' => [],
31  'keywords' => [],
32  'referrer' => [],
33  'content-language' => [
34  'nameAttribute' => 'http-equiv'
35  ],
36  'content-type' => [
37  'nameAttribute' => 'http-equiv'
38  ],
39  'default-style' => [
40  'nameAttribute' => 'http-equiv'
41  ],
42  'refresh' => [
43  'nameAttribute' => 'http-equiv'
44  ],
45  'set-cookie' => [
46  'nameAttribute' => 'http-equiv'
47  ],
48  'content-security-policy' => [
49  'nameAttribute' => 'http-equiv'
50  ],
51  'viewport' => [],
52  'robots' => [],
53  'expires' => [
54  'nameAttribute' => 'http-equiv'
55  ],
56  'cache-control' => [
57  'nameAttribute' => 'http-equiv'
58  ],
59  'pragma' => [
60  'nameAttribute' => 'http-equiv'
61  ]
62  ];
63 }
‪TYPO3\CMS\Core\MetaTag\Html5MetaTagManager
Definition: Html5MetaTagManager.php:20
‪TYPO3\CMS\Core\MetaTag
Definition: AbstractMetaTagManager.php:4
‪TYPO3\CMS\Core\MetaTag\AbstractMetaTagManager
Definition: AbstractMetaTagManager.php:20
‪TYPO3\CMS\Core\MetaTag\Html5MetaTagManager\$handledProperties
‪array $handledProperties
Definition: Html5MetaTagManager.php:25