Home
last modified time | relevance | path

Searched refs:justLocalized (Results 1 – 8 of 8) sorted by relevance

/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/10.0/
H A DBreaking-88724-RemoveSuperfluousMethodsOfLocalizationRedirect.rst19 Calling the routes `web_layout` or `web_list` with parameter `justLocalized` will not redirect to t…
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Documentation/Changelog/10.0/
H A DBreaking-88724-RemoveSuperfluousMethodsOfLocalizationRedirect.rst19 Calling the routes `web_layout` or `web_list` with parameter `justLocalized` will not redirect to t…
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/recordlist/Classes/RecordList/
H A DAbstractDatabaseRecordList.php1295 * @param string $justLocalized String with table, orig uid and language separated by ":
1298 public function localizationRedirect($justLocalized) argument
1300 list($table, $orig_uid, $language) = explode(':', $justLocalized);
H A DDatabaseRecordList.php3948 * @param string $justLocalized String with table, orig uid and language separated by ":
3950 public function localizationRedirect($justLocalized) argument
3952 [$table, $orig_uid, $language] = explode(':', $justLocalized);
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/Controller/
H A DEditDocumentController.php2397 $justLocalized = $request;
2401 $justLocalized = $request->getQueryParams()['justLocalized'];
2404 if (empty($justLocalized)) {
2408 list($table, $origUid, $language) = explode(':', $justLocalized);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Controller/
H A DEditDocumentController.php2209 $justLocalized = $request->getQueryParams()['justLocalized'];
2211 if (empty($justLocalized)) {
2215 [$table, $origUid, $language] = explode(':', $justLocalized);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Controller/
H A DEditDocumentController.php2267 $justLocalized = $request->getQueryParams()['justLocalized'] ?? null;
2269 if (empty($justLocalized)) {
2273 [$table, $origUid, $language] = explode(':', $justLocalized);
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/View/
H A DPageLayoutView.php3886 * @param string $justLocalized String with table, orig uid and language separated by ":
3888 public function localizationRedirect($justLocalized) argument
3890 list($table, $orig_uid, $language) = explode(':', $justLocalized);