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

DebugModule::getShortInfo()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 8
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types = 1);
3
4
namespace TYPO3\CMS\Adminpanel\Modules;
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\Adminpanel\Log\InMemoryLogWriter;
20
use TYPO3\CMS\Adminpanel\ModuleApi\AbstractModule;
21
use TYPO3\CMS\Adminpanel\ModuleApi\ShortInfoProviderInterface;
22
use TYPO3\CMS\Core\Log\LogRecord;
23
24
/**
25
 * Debug Module of the AdminPanel
26
 */
27
class DebugModule extends AbstractModule implements ShortInfoProviderInterface
28
{
29
30
    /**
31
     * @inheritdoc
32
     */
33
    public function getIdentifier(): string
34
    {
35
        return 'debug';
36
    }
37
38
    /**
39
     * @inheritdoc
40
     */
41
    public function getIconIdentifier(): string
42
    {
43
        return 'actions-debug';
44
    }
45
46
    /**
47
     * @inheritdoc
48
     */
49
    public function getLabel(): string
50
    {
51
        return $this->getLanguageService()->sL(
52
            'LLL:EXT:adminpanel/Resources/Private/Language/locallang_debug.xlf:module.label'
53
        );
54
    }
55
56
    public function getShortInfo(): string
57
    {
58
        $errorsAndWarnings = array_filter(InMemoryLogWriter::$log, function (LogRecord $entry) {
59
            return $entry->getLevel() <= 4;
60
        });
61
        return sprintf($this->getLanguageService()->sL(
62
                'LLL:EXT:adminpanel/Resources/Private/Language/locallang_debug.xlf:module.shortinfo'
63
            ), count($errorsAndWarnings));
64
    }
65
}
66