‪TYPO3CMS  9.5
TsDebugModule.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 
23 
28 {
32  public function ‪getIdentifier(): string
33  {
34  return 'tsdebug';
35  }
36 
40  public function ‪getIconIdentifier(): string
41  {
42  return 'mimetypes-x-content-template-static';
43  }
44 
48  public function ‪getLabel(): string
49  {
50  return $this->‪getLanguageService()->‪sL(
51  'LLL:EXT:adminpanel/Resources/Private/Language/locallang_tsdebug.xlf:module.label'
52  );
53  }
54 
58  public function ‪getShortInfo(): string
59  {
60  $messageCount = 0;
61  foreach ($this->‪getTimeTracker()->tsStackLog as $log) {
62  $messageCount += count($log['message'] ?? []);
63  }
64  return sprintf(
65  $this->‪getLanguageService()->sL(
66  'LLL:EXT:adminpanel/Resources/Private/Language/locallang_tsdebug.xlf:module.shortinfo'
67  ),
68  $messageCount
69  );
70  }
71 
75  protected function ‪getTimeTracker(): ‪TimeTracker
76  {
77  return GeneralUtility::makeInstance(TimeTracker::class);
78  }
79 }
‪TYPO3\CMS\Adminpanel\Modules\TsDebugModule\getIconIdentifier
‪getIconIdentifier()
Definition: TsDebugModule.php:40
‪TYPO3\CMS\Adminpanel\ModuleApi\AbstractModule
Definition: AbstractModule.php:30
‪TYPO3\CMS\Core\Localization\LanguageService\sL
‪string sL($input)
Definition: LanguageService.php:158
‪TYPO3\CMS\Adminpanel\Modules\TsDebugModule
Definition: TsDebugModule.php:28
‪TYPO3\CMS\Adminpanel\ModuleApi\ShortInfoProviderInterface
Definition: ShortInfoProviderInterface.php:29
‪TYPO3\CMS\Adminpanel\Modules\TsDebugModule\getTimeTracker
‪TimeTracker getTimeTracker()
Definition: TsDebugModule.php:75
‪TYPO3\CMS\Adminpanel\Modules\TsDebugModule\getShortInfo
‪getShortInfo()
Definition: TsDebugModule.php:58
‪TYPO3\CMS\Adminpanel\Modules
Definition: CacheModule.php:4
‪TYPO3\CMS\Adminpanel\ModuleApi\AbstractModule\getLanguageService
‪LanguageService getLanguageService()
Definition: AbstractModule.php:120
‪TYPO3\CMS\Adminpanel\Modules\TsDebugModule\getLabel
‪getLabel()
Definition: TsDebugModule.php:48
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Core\TimeTracker\TimeTracker
Definition: TimeTracker.php:27
‪TYPO3\CMS\Adminpanel\Modules\TsDebugModule\getIdentifier
‪getIdentifier()
Definition: TsDebugModule.php:32