2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Login-screen of TYPO3.
30 * Revised for TYPO3 3.6 December/2003 by Kasper Skårhøj
33 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
36 * [CLASS/FUNCTION INDEX of SCRIPT]
41 * 120: function init()
42 * 159: function main()
43 * 268: function printContent()
45 * SECTION: Various functions
46 * 292: function makeLoginForm()
47 * 337: function makeLogoutForm()
48 * 379: function wrapLoginForm($content)
49 * 438: function checkRedirect()
50 * 495: function makeInterfaceSelectorBox()
51 * 549: function makeCopyrightNotice()
52 * 582: function makeLoginBoxImage()
53 * 622: function makeLoginNews()
56 * (This index is automatically created/updated by the extension "extdeveval")
61 define('TYPO3_PROCEED_IF_NO_USER', 1);
63 require('template.php');
80 * Script Class for rendering the login form
82 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
89 var $redirect_url; // GPvar: redirect_url; The URL to redirect to after login.
90 var $GPinterface; // GPvar: Defines which interface to load (from interface selector)
91 var $u; // GPvar: preset username
92 var $p; // GPvar: preset password
93 var $L; // GPvar: If "L" is "OUT", then any logged in used is logged out. If redirect_url is given, we redirect to it
94 var $loginRefresh; // Login-refresh boolean; The backend will call this script with this value set when the login is close to being expired and the form needs to be redrawn.
95 var $commandLI; // Value of forms submit button for login.
98 var $redirectToURL; // Set to the redirect URL of the form (may be redirect_url or "backend.php")
100 // Internal, dynamic:
101 var $content; // Content accumulation
103 var $interfaceSelector; // A selector box for selecting value for "interface" may be rendered into this variable
104 var $interfaceSelector_jump; // A selector box for selecting value for "interface" may be rendered into this variable - this will have an onchange action which will redirect the user to the selected interface right away
105 var $interfaceSelector_hidden; // A hidden field, if the interface is not set.
106 var $addFields_hidden = ''; // Additional hidden fields to be placed at the login form
108 // sets the level of security. *'normal' = clear-text. 'challenged' = hashed password/username from form in $formfield_uident. 'superchallenged' = hashed password hashed again with username.
109 var $loginSecurityLevel = 'superchallenged';
115 * Initialize the login box. Will also react on a &L=OUT flag and exit.
120 // We need a PHP session session for most login levels
123 $this->redirect_url
= t3lib_div
::sanitizeLocalUrl(t3lib_div
::_GP('redirect_url'));
124 $this->GPinterface
= t3lib_div
::_GP('interface');
126 // Grabbing preset username and password, for security reasons this feature only works if SSL is used
127 if (t3lib_div
::getIndpEnv('TYPO3_SSL')) {
128 $this->u
= t3lib_div
::_GP('u');
129 $this->p
= t3lib_div
::_GP('p');
132 // If "L" is "OUT", then any logged in is logged out. If redirect_url is given, we redirect to it
133 $this->L
= t3lib_div
::_GP('L');
136 $this->loginRefresh
= t3lib_div
::_GP('loginRefresh');
138 // Value of "Login" button. If set, the login button was pressed.
139 $this->commandLI
= t3lib_div
::_GP('commandLI');
141 // sets the level of security from conf vars
142 if ($GLOBALS['TYPO3_CONF_VARS']['BE']['loginSecurityLevel']) {
143 $this->loginSecurityLevel
= $GLOBALS['TYPO3_CONF_VARS']['BE']['loginSecurityLevel'];
146 // try to get the preferred browser language
147 $preferredBrowserLanguage = $GLOBALS['LANG']->csConvObj
->getPreferredClientLanguage(t3lib_div
::getIndpEnv('HTTP_ACCEPT_LANGUAGE'));
148 // if we found a $preferredBrowserLanguage and it is not the default language and no be_user is logged in
149 // initialize $GLOBALS['LANG'] again with $preferredBrowserLanguage
150 if ($preferredBrowserLanguage != 'default' && !$GLOBALS['BE_USER']->user
['uid']) {
151 $GLOBALS['LANG']->init($preferredBrowserLanguage);
153 $GLOBALS['LANG']->includeLLFile('EXT:lang/locallang_login.xml');
155 // check if labels from $GLOBALS['TYPO3_CONF_VARS']['BE']['loginLabels'] were changed,
156 // and merge them to $GLOBALS['LOCAL_LANG'] if needed
157 $this->mergeOldLoginLabels();
159 // Setting the redirect URL to "backend.php" if no alternative input is given
160 $this->redirectToURL
= ($this->redirect_url ?
$this->redirect_url
: 'backend.php');
163 // Do a logout if the command is set
164 if ($this->L
== 'OUT' && is_object($GLOBALS['BE_USER'])) {
165 $GLOBALS['BE_USER']->logoff();
166 if ($this->redirect_url
) {
167 t3lib_utility_Http
::redirect($this->redirect_url
);
175 * Main function - creating the login/logout form
180 global $TBE_TEMPLATE;
182 // Initialize template object:
183 $TBE_TEMPLATE->bodyTagAdditions
= ' onload="startUp();"';
184 $TBE_TEMPLATE->moduleTemplate
= $TBE_TEMPLATE->getHtmlTemplate('templates/login.html');
186 $TBE_TEMPLATE->getPageRenderer()->loadExtJS();
187 $TBE_TEMPLATE->getPageRenderer()->loadPrototype();
188 $TBE_TEMPLATE->getPageRenderer()->loadScriptaculous();
190 // Set JavaScript for creating a MD5 hash of the password:
191 $TBE_TEMPLATE->JScode
.= $this->getJScode();
193 // Checking, if we should make a redirect.
194 // Might set JavaScript in the header to close window.
195 $this->checkRedirect();
197 // Initialize interface selectors:
198 $this->makeInterfaceSelectorBox();
200 // Creating form based on whether there is a login or not:
201 if (!$GLOBALS['BE_USER']->user
['uid']) {
202 $TBE_TEMPLATE->form
= $this->startForm();
203 $loginForm = $this->makeLoginForm();
205 $TBE_TEMPLATE->form
= '
206 <form action="index.php" method="post" name="loginform">
207 <input type="hidden" name="login_status" value="logout" />
209 $loginForm = $this->makeLogoutForm();
213 $this->content
.= $TBE_TEMPLATE->startPage('TYPO3 Login: ' . htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']), FALSE
);
216 $this->content
.=$this->wrapLoginForm($loginForm);
218 $this->content
.= $TBE_TEMPLATE->endPage();
222 * Outputting the accumulated content to screen
226 function printContent() {
230 /*****************************
234 ******************************/
237 * Creates the login form
238 * This is drawn when NO login exists.
240 * @return string HTML output
242 function makeLoginForm() {
243 $content = t3lib_parsehtml
::getSubpart($GLOBALS['TBE_TEMPLATE']->moduleTemplate
, '###LOGIN_FORM###');
245 'VALUE_USERNAME' => htmlspecialchars($this->u
),
246 'VALUE_PASSWORD' => htmlspecialchars($this->p
),
247 'VALUE_SUBMIT' => $GLOBALS['LANG']->getLL('labels.submitLogin', TRUE
),
250 // show an error message if the login command was successful already, otherwise remove the subpart
251 if (!$this->commandLI
) {
252 $content = t3lib_parsehtml
::substituteSubpart($content, '###LOGIN_ERROR###', '');
254 $markers['ERROR_MESSAGE'] = $GLOBALS['LANG']->getLL('error.login', TRUE
);
255 $markers['ERROR_LOGIN_TITLE'] = $GLOBALS['LANG']->getLL('error.login.title', TRUE
);
256 $markers['ERROR_LOGIN_DESCRIPTION'] = $GLOBALS['LANG']->getLL('error.login.description', TRUE
);
260 // remove the interface selector markers if it's not available
261 if (!($this->interfaceSelector
&& !$this->loginRefresh
)) {
262 $content = t3lib_parsehtml
::substituteSubpart($content, '###INTERFACE_SELECTOR###', '');
264 $markers['LABEL_INTERFACE'] = $GLOBALS['LANG']->getLL('labels.interface', TRUE
);
265 $markers['VALUE_INTERFACE'] = $this->interfaceSelector
;
268 return t3lib_parsehtml
::substituteMarkerArray($content, $markers, '###|###');
273 * Creates the logout form
274 * This is drawn if a user login already exists.
276 * @return string HTML output
278 function makeLogoutForm() {
279 $content = t3lib_parsehtml
::getSubpart($GLOBALS['TBE_TEMPLATE']->moduleTemplate
, '###LOGOUT_FORM###');
281 'LABEL_USERNAME' => $GLOBALS['LANG']->getLL('labels.username', TRUE
),
282 'VALUE_USERNAME' => htmlspecialchars($GLOBALS['BE_USER']->user
['username']),
283 'VALUE_SUBMIT' => $GLOBALS['LANG']->getLL('labels.submitLogout', TRUE
),
286 // remove the interface selector markers if it's not available
287 if (!$this->interfaceSelector_jump
) {
288 $content = t3lib_parsehtml
::substituteSubpart($content, '###INTERFACE_SELECTOR###', '');
290 $markers['LABEL_INTERFACE'] = $GLOBALS['LANG']->getLL('labels.interface', TRUE
);
291 $markers['VALUE_INTERFACE'] = $this->interfaceSelector_jump
;
294 return t3lib_parsehtml
::substituteMarkerArray($content, $markers, '###|###');
299 * Wrapping the login form table in another set of tables etc:
301 * @param string HTML content for the login form
302 * @return string The HTML for the page.
304 function wrapLoginForm($content) {
305 $mainContent = t3lib_parsehtml
::getSubpart($GLOBALS['TBE_TEMPLATE']->moduleTemplate
, '###PAGE###');
307 if ($GLOBALS['TBE_STYLES']['logo_login']) {
308 $logo = '<img src="'.htmlspecialchars($GLOBALS['BACK_PATH'] . $GLOBALS['TBE_STYLES']['logo_login']) . '" alt="" />';
310 $logo = '<img'.t3lib_iconWorks
::skinImg($GLOBALS['BACK_PATH'],'gfx/typo3logo.gif','width="123" height="34"').' alt="" />';
315 'LOGINBOX_IMAGE' => $this->makeLoginBoxImage(),
317 'NEWS' => $this->makeLoginNews(),
318 'COPYRIGHT' => $this->makeCopyrightNotice(),
319 'CSS_ERRORCLASS' => ($this->commandLI ?
' class="error"' : ''),
320 'CSS_OPENIDCLASS' => 't3-login-openid-' . (t3lib_extMgm
::isLoaded('openid') ?
'enabled' : 'disabled'),
322 // the labels will be replaced later on, thus the other parts above
323 // can use these markers as well and it will be replaced
324 'HEADLINE' => $GLOBALS['LANG']->getLL('headline', TRUE
),
325 'INFO_ABOUT' => $GLOBALS['LANG']->getLL('info.about', TRUE
),
326 'INFO_RELOAD' => $GLOBALS['LANG']->getLL('info.reset', TRUE
),
327 'INFO' => $GLOBALS['LANG']->getLL('info.cookies_and_js', TRUE
),
328 'ERROR_JAVASCRIPT' => $GLOBALS['LANG']->getLL('error.javascript', TRUE
),
329 'ERROR_COOKIES' => $GLOBALS['LANG']->getLL('error.cookies', TRUE
),
330 'ERROR_COOKIES_IGNORE' => $GLOBALS['LANG']->getLL('error.cookies_ignore', TRUE
),
331 'ERROR_CAPSLOCK' => $GLOBALS['LANG']->getLL('error.capslock', TRUE
),
332 'ERROR_FURTHERHELP' => $GLOBALS['LANG']->getLL('error.furtherInformation', TRUE
),
333 'LABEL_DONATELINK' => $GLOBALS['LANG']->getLL('labels.donate', TRUE
),
334 'LABEL_USERNAME' => $GLOBALS['LANG']->getLL('labels.username', TRUE
),
335 'LABEL_OPENID' => $GLOBALS['LANG']->getLL('labels.openId', TRUE
),
336 'LABEL_PASSWORD' => $GLOBALS['LANG']->getLL('labels.password', TRUE
),
337 'LABEL_WHATISOPENID' => $GLOBALS['LANG']->getLL('labels.whatIsOpenId', TRUE
),
338 'LABEL_SWITCHOPENID' => $GLOBALS['LANG']->getLL('labels.switchToOpenId', TRUE
),
339 'LABEL_SWITCHDEFAULT' => $GLOBALS['LANG']->getLL('labels.switchToDefault', TRUE
),
340 'CLEAR' => $GLOBALS['LANG']->getLL('clear', TRUE
),
341 'LOGIN_PROCESS' => $GLOBALS['LANG']->getLL('login_process', TRUE
),
342 'SITELINK' => '<a href="/">###SITENAME###</a>',
344 // global variables will now be replaced (at last)
345 'SITENAME' => htmlspecialchars($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'])
347 return t3lib_parsehtml
::substituteMarkerArray($mainContent, $markers, '###|###');
352 * Checking, if we should perform some sort of redirection OR closing of windows.
356 function checkRedirect() {
357 global $TBE_TEMPLATE;
360 // If a user is logged in AND a) if either the login is just done (commandLI) or b) a loginRefresh is done or c) the interface-selector is NOT enabled (If it is on the other hand, it should not just load an interface, because people has to choose then...)
361 if ($GLOBALS['BE_USER']->user
['uid'] && ($this->commandLI ||
$this->loginRefresh ||
!$this->interfaceSelector
)) {
363 // If no cookie has been set previously we tell people that this is a problem. This assumes that a cookie-setting script (like this one) has been hit at least once prior to this instance.
364 if (!$_COOKIE[$GLOBALS['BE_USER']->name
]) {
365 if ($this->commandLI
=='setCookie') {
366 // we tried it a second time but still no cookie
367 // 26/4 2005: This does not work anymore, because the saving of challenge values in $_SESSION means the system will act as if the password was wrong.
368 throw new RuntimeException('Login-error: Yeah, that\'s a classic. No cookies, no TYPO3.<br /><br />Please accept cookies from TYPO3 - otherwise you\'ll not be able to use the system.', 1294586846);
370 // try it once again - that might be needed for auto login
371 $this->redirectToURL
= 'index.php?commandLI=setCookie';
375 if (($redirectToURL = (string)$GLOBALS['BE_USER']->getTSConfigVal('auth.BE.redirectToURL'))) {
376 $this->redirectToURL
= $redirectToURL;
377 $this->GPinterface
= '';
381 $GLOBALS['BE_USER']->uc
['interfaceSetup'] = $this->GPinterface
;
382 $GLOBALS['BE_USER']->writeUC();
384 // Based on specific setting of interface we set the redirect script:
385 switch ($this->GPinterface
) {
388 $this->redirectToURL
= 'backend.php';
391 $this->redirectToURL
= '../';
395 $formProtection = t3lib_formprotection_Factory
::get();
396 // If there is a redirect URL AND if loginRefresh is not set...
397 if (!$this->loginRefresh
) {
398 $formProtection->storeSessionTokenInRegistry();
399 t3lib_utility_Http
::redirect($this->redirectToURL
);
401 $formProtection->setSessionTokenFromRegistry();
402 $formProtection->persistSessionToken();
403 $TBE_TEMPLATE->JScode
.=$TBE_TEMPLATE->wrapScriptTags('
404 if (parent.opener && (parent.opener.busy || parent.opener.TYPO3.loginRefresh)) {
405 if (parent.opener.TYPO3.loginRefresh) {
406 parent.opener.TYPO3.loginRefresh.startTimer();
408 parent.opener.busy.loginRefreshed();
414 } elseif (!$GLOBALS['BE_USER']->user
['uid'] && $this->commandLI
) {
415 sleep(5); // Wrong password, wait for 5 seconds
420 * Making interface selector:
424 function makeInterfaceSelectorBox() {
425 global $TYPO3_CONF_VARS;
428 $this->interfaceSelector
= '';
429 $this->interfaceSelector_hidden
='';
430 $this->interfaceSelector_jump
= '';
432 // If interfaces are defined AND no input redirect URL in GET vars:
433 if ($TYPO3_CONF_VARS['BE']['interfaces'] && ($this->commandLI ||
!$this->redirect_url
)) {
434 $parts = t3lib_div
::trimExplode(',',$TYPO3_CONF_VARS['BE']['interfaces']);
435 if (count($parts)>1) { // Only if more than one interface is defined will we show the selector:
440 $labels['backend'] = $GLOBALS['LANG']->getLL('interface.backend');
441 $labels['backend_old'] = $GLOBALS['LANG']->getLL('interface.backend_old');
442 $labels['frontend'] = $GLOBALS['LANG']->getLL('interface.frontend');
445 $jumpScript['backend'] = 'backend.php';
446 $jumpScript['backend_old'] = 'backend.php';
447 $jumpScript['frontend'] = '../';
449 // Traverse the interface keys:
450 foreach($parts as $valueStr) {
451 $this->interfaceSelector
.='
452 <option value="'.htmlspecialchars($valueStr).'"'.(t3lib_div
::_GP('interface')==htmlspecialchars($valueStr) ?
' selected="selected"' : '').'>'.htmlspecialchars($labels[$valueStr]).'</option>';
453 $this->interfaceSelector_jump
.='
454 <option value="'.htmlspecialchars($jumpScript[$valueStr]).'">'.htmlspecialchars($labels[$valueStr]).'</option>';
456 $this->interfaceSelector
='
457 <select id="t3-interfaceselector" name="interface" class="c-interfaceselector" tabindex="3">'.$this->interfaceSelector
.'
459 $this->interfaceSelector_jump
='
460 <select id="t3-interfaceselector" name="interface" class="c-interfaceselector" tabindex="3" onchange="window.location.href=this.options[this.selectedIndex].value;">'.$this->interfaceSelector_jump
.'
463 } elseif (!$this->redirect_url
) {
464 // If there is only ONE interface value set and no redirect_url is present:
465 $this->interfaceSelector_hidden
='<input type="hidden" name="interface" value="'.trim($TYPO3_CONF_VARS['BE']['interfaces']).'" />';
474 * DO NOT prevent this notice from being shown in ANY WAY.
475 * According to the GPL license an interactive application must show such a notice on start-up ('If the program is interactive, make it output a short notice... ' - see GPL.txt)
476 * Therefore preventing this notice from being properly shown is a violation of the license, regardless of whether you remove it or use a stylesheet to obstruct the display.
478 * @return string Text/Image (HTML) for copyright notice.
480 function makeCopyrightNotice() {
482 // Get values from TYPO3_CONF_VARS:
483 $loginCopyrightWarrantyProvider = strip_tags(trim($GLOBALS['TYPO3_CONF_VARS']['SYS']['loginCopyrightWarrantyProvider']));
484 $loginCopyrightWarrantyURL = strip_tags(trim($GLOBALS['TYPO3_CONF_VARS']['SYS']['loginCopyrightWarrantyURL']));
485 $loginImageSmall = (trim($GLOBALS['TBE_STYLES']['loginBoxImageSmall'])) ?
trim($GLOBALS['TBE_STYLES']['loginBoxImageSmall']) : 'gfx/loginlogo_transp.gif';
487 // Make warranty note:
488 if (strlen($loginCopyrightWarrantyProvider)>=2 && strlen($loginCopyrightWarrantyURL)>=10) {
489 $warrantyNote = sprintf($GLOBALS['LANG']->getLL('warranty.by'), htmlspecialchars($loginCopyrightWarrantyProvider), '<a href="' . htmlspecialchars($loginCopyrightWarrantyURL) . '" target="_blank">', '</a>');
491 $warrantyNote = sprintf($GLOBALS['LANG']->getLL('no.warranty'), '<a href="' . TYPO3_URL_LICENSE
. '" target="_blank">', '</a>');
494 // Compile full copyright notice:
495 $copyrightNotice = '<a href="' . TYPO3_URL_GENERAL
. '" target="_blank">'.
496 '<img src="' . $loginImageSmall . '" alt="' . $GLOBALS['LANG']->getLL('typo3.logo') . '" align="left" />' .
497 $GLOBALS['LANG']->getLL('typo3.cms') . ($GLOBALS['TYPO3_CONF_VARS']['SYS']['loginCopyrightShowVersion']?
' ' . $GLOBALS['LANG']->getLL('version.short') . ' ' . htmlspecialchars($GLOBALS['TYPO_VERSION']):'') .
499 $GLOBALS['LANG']->getLL('copyright') . ' © ' . TYPO3_copyright_year
. ' Kasper Skårhøj. ' . $GLOBALS['LANG']->getLL('extension.copyright') . ' ' .
500 sprintf($GLOBALS['LANG']->getLL('details.link'), '<a href="' . TYPO3_URL_GENERAL
. '" target="_blank">' . TYPO3_URL_GENERAL
. '</a>') . '<br /> ' .
501 $warrantyNote . ' ' .
502 sprintf($GLOBALS['LANG']->getLL('free.software'), '<a href="' . TYPO3_URL_LICENSE
. '" target="_blank">', '</a> ') .
503 $GLOBALS['LANG']->getLL('keep.notice');
506 return $copyrightNotice;
510 * Returns the login box image, whether the default or an image from the rotation folder.
512 * @return string HTML image tag.
514 function makeLoginBoxImage() {
516 if ($GLOBALS['TBE_STYLES']['loginBoxImage_rotationFolder']) { // Look for rotation image folder:
517 $absPath = t3lib_div
::resolveBackPath(PATH_typo3
.$GLOBALS['TBE_STYLES']['loginBoxImage_rotationFolder']);
519 // Get rotation folder:
520 $dir = t3lib_div
::getFileAbsFileName($absPath);
521 if ($dir && @is_dir
($dir)) {
523 // Get files for rotation into array:
524 $files = t3lib_div
::getFilesInDir($dir,'png,jpg,gif');
527 $randImg = array_rand($files, 1);
529 // Get size of random file:
530 $imgSize = @getimagesize
($dir.$files[$randImg]);
532 $imgAuthor = is_array($GLOBALS['TBE_STYLES']['loginBoxImage_author'])&&$GLOBALS['TBE_STYLES']['loginBoxImage_author'][$files[$randImg]] ?
htmlspecialchars($GLOBALS['TBE_STYLES']['loginBoxImage_author'][$files[$randImg]]) : '';
535 if (is_array($imgSize)) {
536 $loginboxImage = '<img src="'.htmlspecialchars($GLOBALS['TBE_STYLES']['loginBoxImage_rotationFolder'].$files[$randImg]).'" '.$imgSize[3].' id="loginbox-image" alt="'.$imgAuthor.'" title="'.$imgAuthor.'" />';
539 } else { // If no rotation folder configured, print default image:
541 if (strstr(TYPO3_version
,'-dev')) { // development version
542 $loginImage = 'loginbox_image_dev.png';
543 $imagecopy = 'You are running a development version of TYPO3 '.TYPO3_branch
;
545 $loginImage = 'loginbox_image.jpg';
546 $imagecopy = 'Photo by J.C. Franca (www.digitalphoto.com.br)';
548 $loginboxImage = '<img'.t3lib_iconWorks
::skinImg($GLOBALS['BACK_PATH'],'gfx/'.$loginImage,'width="200" height="133"').' id="loginbox-image" alt="'.$imagecopy.'" title="'.$imagecopy.'" />';
552 return $loginboxImage;
556 * Make login news - renders the HTML content for a list of news shown under
557 * the login form. News data is added through $TYPO3_CONF_VARS
559 * @return string HTML content
560 * @credits Idea by Jan-Hendrik Heuing
561 * @deprecated $GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'] is deprecated since 4.5. Use system news records instead.
563 function makeLoginNews() {
566 $systemNews = $this->getSystemNews();
567 if (count($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'])) {
568 t3lib_div
::logDeprecatedFunction();
570 $GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'] = array_merge(
572 $GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews']
575 $GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'] = $systemNews;
578 // Traverse news array IF there are records in it:
579 if (is_array($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews']) && count($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews']) && !t3lib_div
::_GP('loginRefresh')) {
580 $htmlParser = t3lib_div
::makeInstance('t3lib_parsehtml_proc');
581 // get the main news template, and replace the subpart after looped through
582 $newsContent = t3lib_parsehtml
::getSubpart($GLOBALS['TBE_TEMPLATE']->moduleTemplate
, '###LOGIN_NEWS###');
583 $newsItemTemplate = t3lib_parsehtml
::getSubpart($newsContent, '###NEWS_ITEM###');
587 foreach ($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'] as $newsItemData) {
588 $additionalClass = '';
590 $additionalClass = ' first-item';
591 } elseif($count == count($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'])) {
592 $additionalClass = ' last-item';
595 $newsItemContent = $htmlParser->TS_transform_rte($htmlParser->TS_links_rte($newsItemData['content']));
596 $newsItemMarker = array(
597 '###HEADER###' => htmlspecialchars($newsItemData['header']),
598 '###DATE###' => htmlspecialchars($newsItemData['date']),
599 '###CONTENT###' => $newsItemContent,
600 '###CLASS###' => $additionalClass
604 $newsItem .= t3lib_parsehtml
::substituteMarkerArray($newsItemTemplate, $newsItemMarker);
607 $title = ($GLOBALS['TYPO3_CONF_VARS']['BE']['loginNewsTitle'] ?
$GLOBALS['TYPO3_CONF_VARS']['BE']['loginNewsTitle'] : $GLOBALS['LANG']->getLL('newsheadline'));
609 $newsContent = t3lib_parsehtml
::substituteMarker($newsContent, '###NEWS_HEADLINE###', htmlspecialchars($title));
610 $newsContent = t3lib_parsehtml
::substituteSubpart($newsContent, '###NEWS_ITEM###', $newsItem);
617 * Gets news from sys_news and converts them into a format suitable for
618 * showing them at the login screen.
620 * @return array An array of login news.
622 protected function getSystemNews() {
623 $systemNewsTable = 'sys_news';
624 $systemNews = array();
626 $systemNewsRecords = $GLOBALS['TYPO3_DB']->exec_SELECTgetRows(
627 'title, content, crdate',
630 t3lib_BEfunc
::BEenableFields($systemNewsTable) .
631 t3lib_BEfunc
::deleteClause($systemNewsTable),
636 foreach ($systemNewsRecords as $systemNewsRecord) {
637 $systemNews[] = array(
639 $GLOBALS['TYPO3_CONF_VARS']['SYS']['ddmmyy'],
640 $systemNewsRecord['crdate']
642 'header' => $systemNewsRecord['title'],
643 'content' => $systemNewsRecord['content']
651 * Returns the form tag
653 * @return string Opening form tag string
655 function startForm() {
658 // The form defaults to 'no login'. This prevents plain
659 // text logins to the Backend. The 'sv' extension changes the form to
660 // use superchallenged method and rsaauth extension makes rsa authetication.
661 $form = '<form action="index.php" method="post" name="loginform" ' .
662 'onsubmit="alert(\'No authentication methods available. Please, ' .
663 'contact your TYPO3 administrator.\');return false">';
665 // Call hooks. If they do not return anything, we fail to login
666 if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/index.php']['loginFormHook'])) {
667 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/index.php']['loginFormHook'] as $function) {
669 $formCode = t3lib_div
::callUserFunction($function, $params, $this);
678 '<input type="hidden" name="login_status" value="login" />' .
679 '<input type="hidden" name="userident" value="" />' .
680 '<input type="hidden" name="redirect_url" value="'.htmlspecialchars($this->redirectToURL
).'" />' .
681 '<input type="hidden" name="loginRefresh" value="'.htmlspecialchars($this->loginRefresh
).'" />' .
682 $this->interfaceSelector_hidden
. $this->addFields_hidden
;
688 * Creates JavaScript for the login form
690 * @return string JavaScript code
692 function getJScode() {
694 if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/index.php']['loginScriptHook'])) {
695 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/index.php']['loginScriptHook'] as $function) {
697 $JSCode = t3lib_div
::callUserFunction($function, $params, $this);
703 $JSCode .= $GLOBALS['TBE_TEMPLATE']->wrapScriptTags('
705 // If the login screen is shown in the login_frameset window for re-login, then try to get the username of the current/former login from opening windows main frame:
707 if (parent.opener && parent.opener.TS && parent.opener.TS.username && document.loginform && document.loginform.username) {
708 document.loginform.username.value = parent.opener.TS.username;
715 // Wait a few millisecons before calling checkFocus(). This might be necessary because some browsers need some time to auto-fill in the form fields
716 window.setTimeout("checkFocus()", 50);
719 // This moves focus to the right input field:
720 function checkFocus() {
721 // If for some reason there already is a username in the username form field, move focus to the password field:
722 if (document.loginform.username && document.loginform.username.value == "") {
723 document.loginform.username.focus();
724 } else if (document.loginform.p_field && document.loginform.p_field.type!="hidden") {
725 document.loginform.p_field.focus();
729 // This function shows a warning, if user has capslock enabled
730 // parameter showWarning: shows warning if TRUE and capslock active, otherwise only hides warning, if capslock gets inactive
731 function checkCapslock(e, showWarning) {
732 if (!isCapslock(e)) {
733 document.getElementById(\'t3-capslock\').style.display = \'none\';
734 } else if (showWarning) {
735 document.getElementById(\'t3-capslock\').style.display = \'block\';
739 // Checks weather capslock is enabled (returns TRUE if enabled, false otherwise)
740 // thanks to http://24ways.org/2007/capturing-caps-lock
742 function isCapslock(e) {
743 var ev = e ? e : window.event;
747 var targ = ev.target ? ev.target : ev.srcElement;
752 } else if (ev.keyCode) {
756 var shift_status = false;
758 shift_status = ev.shiftKey;
759 } else if (ev.modifiers) {
760 shift_status = !!(ev.modifiers & 4);
762 return (((which >= 65 && which <= 90) && !shift_status) ||
763 ((which >= 97 && which <= 122) && shift_status));
766 // prevent opening the login form in the backend frameset
767 if (top.location.href != self.location.href) {
768 top.location.href = self.location.href;
778 * Checks if labels from $GLOBALS['TYPO3_CONF_VARS']['BE']['loginLabels'] were changed, and merge them to $GLOBALS['LOCAL_LANG'] if needed
780 * This method keeps backwards compatibility, if you modified your
781 * labels with the install tool, we recommend to transfer this labels to a locallang.xml file
782 * using the llxml extension
786 protected function mergeOldLoginLabels() {
787 // Getting login labels
788 $oldLoginLabels = trim($GLOBALS['TYPO3_CONF_VARS']['BE']['loginLabels']);
789 if ($oldLoginLabels != '') {
790 // md5 hash of the default loginLabels string
791 $defaultOldLoginLabelsHash = 'bcf0d32e58c6454ea50c6c956f1f18f0';
792 // compare loginLabels from TYPO3_CONF_VARS to default value
793 if (md5($oldLoginLabels) != $defaultOldLoginLabelsHash) {
794 $lang = $GLOBALS['LANG']->lang
;
795 $oldLoginLabelArray = explode('|',$oldLoginLabels);
796 $overrideLabelKeys = array(
797 'labels.username' => $oldLoginLabelArray[0],
798 'labels.password' => $oldLoginLabelArray[1],
799 'labels.interface' => $oldLoginLabelArray[2],
800 'labels.submitLogin' => $oldLoginLabelArray[3],
801 'labels.submitLogout' => $oldLoginLabelArray[4],
802 'availableInterfaces' => $oldLoginLabelArray[5],
803 'headline' => $oldLoginLabelArray[6],
804 'info.jscookies' => $oldLoginLabelArray[7],
805 'newsheadline' => $oldLoginLabelArray[8],
806 'error.login' => $oldLoginLabelArray[9],
808 if (!is_array($GLOBALS['LOCAL_LANG'][$lang])) {
809 $GLOBALS['LOCAL_LANG'][$lang] = array();
811 // now override the labels from the LOCAL_LANG with the TYPO3_CONF_VARS
812 foreach ($overrideLabelKeys as $labelKey => $label) {
813 $GLOBALS['LOCAL_LANG'][$lang][$labelKey] = $GLOBALS['LOCAL_LANG']['default'][$labelKey] = $label;
821 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['typo3/index.php'])) {
822 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['typo3/index.php']);
828 $SOBE = t3lib_div
::makeInstance('SC_index');
831 $SOBE->printContent();