Feature #16181
closedRedirect at BE Login
0%
Description
The goal is to be able to open automatically a page in the BE when people log in the BE.
I suppose it could be enhanced to open a module or an other subscript.
I introduce a new UserTS configuration :
options.jumpToPageAtLogin = "page id"
My modifications are the following :
File "alt_main.php" include line 374 :
function jumpToPage(id) { //
var theUrl = top.TS.PATH_typo3+"db_list.php?id="+id;
top.fsMod.currentBank = 0;
top.content.location.href=theUrl;
}
File "alt_intro.php" include at line 137 :
if ($BE_USER->getTSConfigVal('options.jumpToPageAtLogin')) {
$this->content .= '
<script>
top.jumpToPage('.$BE_USER->getTSConfigVal('options.jumpToPageAtLogin').');
</script>
';
}
else ...
(issue imported from #M3560)
Updated by Christian Trabold about 18 years ago
Idea: There is already a quite similar option:
auth.BE.redirectToURL =
Maybe we could use this option to keep TSconfig straightforward?
Updated by Christian Kuhn almost 16 years ago
Parts of this are solved in TYPO3 4.2.
The user settings allow to load a specific module on startup.
This logic might be extended with a parameter for a specific page id if a module of the web section is selected.
Updated by Steffen Kamper almost 16 years ago
it would be good to enhance this. Possible: store last view in session and start next login with exactly this view.
As frames are involved there are different parts which has to be used for storing:
- selected module
- status of pagetree if available
- url of content-frame
Updated by Felix Kopp about 10 years ago
- Description updated (diff)
- Status changed from New to Resolved
- Target version deleted (
0) - PHP Version deleted (
4)