Project

General

Profile

Actions

Feature #16181

closed

Redirect at BE Login

Added by Jean-Baptiste Rio about 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

Also available in: Atom PDF