Home
last modified time | relevance | path

Searched refs:LanguageService (Results 1 – 25 of 673) sorted by relevance

12345678910>>...27

/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/11.3/
H A DDeprecation-94414-DeprecateLanguageServiceContainerEntry.rst4 Deprecation: #94414 - LanguageService container entry
12 Instances of :php:`TYPO3\CMS\Core\Localization\LanguageService` require
17 :php:`TYPO3\CMS\Core\Localization\LanguageService::create()` or
18 :php:`GeneralUtility::makeInstance(LanguageService::class)`.
24 Injecting :php:`TYPO3\CMS\Core\Localization\LanguageService` or creating
25 instances via :php:`GeneralUtility::makeInstance(LanguageService::class)`,
26 :php:`LanguageService::create()`, :php:`LanguageService::createFromUserPreferences()`
27 or :php:`LanguageService::createFromSiteLanguage()` will trigger a
34 Extensions injecting :php:`TYPO3\CMS\Core\Localization\LanguageService`
36 or :php:`TYPO3\CMS\Core\Localization\LanguageService::create()`.
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/10.4/
H A DDeprecation-90964-LanguageServiceFunctionalityAndInternalProperties.rst4 Deprecation: #90964 - LanguageService functionality and internal properties
12 LanguageService - also known as :php:`$GLOBALS[LANG]` within TYPO3 Core
18 * :php:`LanguageService->LL_files_cache` - is now protected instead of public
19 * :php:`LanguageService->LL_labels_cache` - is now protected instead of public
20 * :php:`LanguageService->getLabelsWithPrefix()` - is deprecated as it is not needed
21 * :php:`LanguageService->getLLL()` - is now protected instead of public
22 * :php:`LanguageService->debugLL()` - is now protected instead of public
24 The method :php:`LanguageService->loadSingleTableDescription()` is marked as internal now.
36 …th extensions of custom logic using the internals of specifics of the :php:`LanguageService` class.
42 Use the Public API of the :php:`LanguageService` - namely :php:`sL()` and :php:`getLL()` directly.
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Documentation/Changelog/10.4/
H A DDeprecation-90964-LanguageServiceFunctionalityAndInternalProperties.rst4 Deprecation: #90964 - LanguageService functionality and internal properties
12 LanguageService - also known as :php:`$GLOBALS[LANG]` within TYPO3 Core
18 * :php:`LanguageService->LL_files_cache` - is now protected instead of public
19 * :php:`LanguageService->LL_labels_cache` - is now protected instead of public
20 * :php:`LanguageService->getLabelsWithPrefix()` - is deprecated as it is not needed
21 * :php:`LanguageService->getLLL()` - is now protected instead of public
22 * :php:`LanguageService->debugLL()` - is now protected instead of public
24 The method :php:`LanguageService->loadSingleTableDescription()` is marked as internal now.
36 …th extensions of custom logic using the internals of specifics of the :php:`LanguageService` class.
42 Use the Public API of the :php:`LanguageService` - namely :php:`sL()` and :php:`getLL()` directly.
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Documentation/Changelog/8.0/
H A DDeprecation-72340-MovedModuleLabelsFromLanguageServiceToModuleLoader.rst5 Deprecation: #72340 - Moved moduleLabels from LanguageService to ModuleLoader
13 Labels for registered modules were previously stored within the LanguageService class. The logic has
14 been moved to the ModuleLoader class. The method `LanguageService->addModuleLabels()` and the
15 property `LanguageService->moduleLabels` have been marked as deprecated.
21 Calling `LanguageService->addModuleLabels()` will trigger a deprecation log entry. The property
22 `LanguageService->moduleLabels` will no longer contain the expected values anymore.
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/8.0/
H A DDeprecation-72340-MovedModuleLabelsFromLanguageServiceToModuleLoader.rst5 Deprecation: #72340 - Moved moduleLabels from LanguageService to ModuleLoader
13 Labels for registered modules were previously stored within the LanguageService class. The logic has
14 been moved to the ModuleLoader class. The method `LanguageService->addModuleLabels()` and the
15 property `LanguageService->moduleLabels` have been marked as deprecated.
21 Calling `LanguageService->addModuleLabels()` will trigger a deprecation log entry. The property
22 `LanguageService->moduleLabels` will no longer contain the expected values anymore.
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Documentation/Changelog/8.0/
H A DDeprecation-72340-MovedModuleLabelsFromLanguageServiceToModuleLoader.rst5 Deprecation: #72340 - Moved moduleLabels from LanguageService to ModuleLoader
13 Labels for registered modules were previously stored within the LanguageService class. The logic has
14 been moved to the ModuleLoader class. The method `LanguageService->addModuleLabels()` and the
15 property `LanguageService->moduleLabels` have been marked as deprecated.
21 Calling `LanguageService->addModuleLabels()` will trigger a deprecation log entry. The property
22 `LanguageService->moduleLabels` will no longer contain the expected values anymore.
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Localization/
H A DLanguageServiceFactory.php44 * @return LanguageService
46 public function create(string $locale): LanguageService
48 $obj = new LanguageService($this->locales, $this->localizationFactory, $this->runtimeCache);
53 public function createFromUserPreferences(?AbstractUserAuthentication $user): LanguageService
61 public function createFromSiteLanguage(SiteLanguage $language): LanguageService
/dports/www/mediawiki137/mediawiki-1.37.1/skins/Vector/includes/
H A DVectorServices.php7 use Vector\Services\LanguageService; alias
32 * @return LanguageService
34 public static function getLanguageService(): LanguageService {
35 return new LanguageService();
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Localization/
H A DLanguageServiceFactory.php47 * @return LanguageService
49 public function create(string $locale): LanguageService
51 $obj = new LanguageService($this->locales, $this->localizationFactory);
56 public function createFromUserPreferences(?AbstractUserAuthentication $user): LanguageService
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/adminpanel/Classes/ModuleApi/
H A DAbstractSubModule.php19 use TYPO3\CMS\Core\Localization\LanguageService; alias
31 * @return LanguageService
33 protected function getLanguageService(): LanguageService
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmMaintenancePlugin/lib/formatValueStrategies/
H A DFormatWithLanguage.php37 * @return LanguageService
41 if (!($this->languageService instanceof LanguageService)) {
42 $this->languageService = new LanguageService();
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/10.0/
H A DDeprecation-88567-GLOBALS_LOCAL_LANG.rst14 scope, it is more feasible to have it scoped to the actual :php:`LanguageService`
19 but instead rely on :php:`LanguageService->includeLLfile()` which returns
22 Since an instance of :php:`TYPO3\CMS\Core\Localization\LanguageService` is usually available via `$…
25 Due to this change, the second and third arguments of :php:`LanguageService->includeLLFile()` have …
46 Use the return value of :php:`LanguageService->includeLLFile()` and remove
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Documentation/Changelog/10.0/
H A DDeprecation-88567-GLOBALS_LOCAL_LANG.rst14 scope, it is more feasible to have it scoped to the actual :php:`LanguageService`
19 but instead rely on :php:`LanguageService->includeLLfile()` which returns
22 Since an instance of :php:`TYPO3\CMS\Core\Localization\LanguageService` is usually available via `$…
25 Due to this change, the second and third arguments of :php:`LanguageService->includeLLFile()` have …
46 Use the return value of :php:`LanguageService->includeLLFile()` and remove
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/adminpanel/Classes/ModuleApi/
H A DAbstractSubModule.php21 use TYPO3\CMS\Core\Localization\LanguageService; alias
33 * @return LanguageService
35 protected function getLanguageService(): LanguageService
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/adminpanel/Classes/ModuleApi/
H A DAbstractSubModule.php21 use TYPO3\CMS\Core\Localization\LanguageService; alias
33 * @return LanguageService
35 protected function getLanguageService(): LanguageService
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/dashboard/Classes/
H A DWidgetGroup.php20 use TYPO3\CMS\Core\Localization\LanguageService; alias
60 * @return LanguageService
62 protected function getLanguageService(): LanguageService
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/Form/FieldInformation/
H A DTcaDescription.php20 use TYPO3\CMS\Core\Localization\LanguageService; alias
49 * @return LanguageService
51 protected function getLanguageService(): LanguageService
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Form/FieldInformation/
H A DTcaDescription.php21 use TYPO3\CMS\Core\Localization\LanguageService; alias
50 * @return LanguageService
52 protected function getLanguageService(): LanguageService
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Form/FieldInformation/
H A DTcaDescription.php21 use TYPO3\CMS\Core\Localization\LanguageService; alias
50 * @return LanguageService
52 protected function getLanguageService(): LanguageService
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/dashboard/Classes/
H A DWidgetGroup.php20 use TYPO3\CMS\Core\Localization\LanguageService; alias
60 * @return LanguageService
62 protected function getLanguageService(): LanguageService
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/rsaauth/Classes/Report/
H A DRsauthStatus.php19 use TYPO3\CMS\Core\Localization\LanguageService; alias
60 * @return LanguageService
62 protected function getLanguageService(): LanguageService
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/Configuration/TCA/
H A DUserFunctions.php18 use TYPO3\CMS\Core\Localization\LanguageService; alias
89 * @return LanguageService
91 protected function getLanguageService(): LanguageService
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Configuration/TCA/
H A DUserFunctions.php20 use TYPO3\CMS\Core\Localization\LanguageService; alias
92 * @return LanguageService
94 protected function getLanguageService(): LanguageService
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Form/FieldControl/
H A DInsertClipboard.php21 use TYPO3\CMS\Core\Localization\LanguageService; alias
84 * @return LanguageService
86 protected function getLanguageService(): LanguageService
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Form/FieldControl/
H A DInsertClipboard.php21 use TYPO3\CMS\Core\Localization\LanguageService; alias
84 * @return LanguageService
86 protected function getLanguageService(): LanguageService

12345678910>>...27