Completed
Branch master (d17104)
by Christian
21:20
created

SeoTitlePageTitleProvider::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types = 1);
3
4
namespace TYPO3\CMS\Seo\PageTitle;
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
19
use TYPO3\CMS\Core\PageTitle\AbstractPageTitleProvider;
20
21
/**
22
 * This class will take care of the seo title that can be set in the backend
23
 */
24
class SeoTitlePageTitleProvider extends AbstractPageTitleProvider
25
{
26
    public function __construct()
27
    {
28
        $this->title = (string)$GLOBALS['TSFE']->page['seo_title'];
29
    }
30
}
31