Project

General

Profile

Actions

Feature #16181

closed

Redirect at BE Login

Added by Jean-Baptiste Rio almost 18 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2006-05-25
Due date:
% Done:

0%

Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:

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)

Actions #1

Updated by Christian Trabold over 17 years ago

Idea: There is already a quite similar option:

auth.BE.redirectToURL =

Maybe we could use this option to keep TSconfig straightforward?

Actions #2

Updated by Christian Kuhn over 15 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.

Actions #3

Updated by Steffen Kamper over 15 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
Actions #4

Updated by Felix Kopp over 9 years ago

  • Description updated (diff)
  • Status changed from New to Resolved
  • Target version deleted (0)
  • PHP Version deleted (4)
Actions #5

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF