Project

General

Profile

Feature #16181

Updated by Felix Kopp over 9 years ago

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)

Back