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