Project

General

Profile

Actions

Bug #66669

closed

Possibility to extend/override New login screen

Added by Benjamin Serfhos almost 9 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
Start date:
2015-05-16
Due date:
% Done:

100%

Estimated time:
(Total: 0.00 h)
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
easy
Is Regression:
No
Sprint Focus:
Stabilization Sprint

Description

Before the backend login screen template could be overriden with the following configuration:
$GLOBALS['TBE_STYLES']['htmlTemplates']['EXT:backend/Resources/Private/Templates/login.html']

This does not seem to work anymore cause of the Fluid rendering atm.

Please add signals for modifying the view object to make the login screen extendable again.


Files


Subtasks 1 (0 open1 closed)

Task #66997: Remove login security levels super-/challengedClosedMarkus Klein2015-05-16

Actions

Related issues 4 (0 open4 closed)

Related to TYPO3 Core - Feature #66431: New Login ScreenClosed2015-04-17

Actions
Related to TYPO3 Core - Bug #51308: Allow registration of different backend login formsClosed2013-08-23

Actions
Related to TYPO3 Core - Bug #67321: BE login form does not redirect if already authenticatedClosedFrank Nägler2015-06-05

Actions
Related to TYPO3 Core - Bug #67440: Correct typo in code example (ChangeLog files)Rejected2015-06-14

Actions
Actions #1

Updated by Frank Nägler almost 9 years ago

  • Status changed from New to Needs Feedback

Hello Benjmain,
thanks for your feedback. Please can you explain why you need this?

Actions #2

Updated by Benjamin Serfhos almost 9 years ago

So people can have their own option besides the regular option (LDAP or any other system).
For our internal colleagues we have our own generic SSO, but for external they can use the default TYPO3 environment.

See screenshot for our TYPO3 mainscreen (7.1).

Actions #3

Updated by Torben Hansen almost 9 years ago

The template must be overridable, so you can use other authentication services (e.g. two factor) with the TYPO3 backend login, which require extra fields (example: http://typo3.org/extensions/repository/view/sf_yubikey)

Before #65939, you could override the template by using:

$TBE_STYLES['htmlTemplates']['EXT:backend/Resources/Private/Templates/login.html'] = 'path/To/NewTemplate.html';

Now it is not possible any more.

This problem can easily be solved, if the new login controller respects the template set in TBE_STYLES. The main function could be extended as shown below.

$template = 'EXT:backend/Resources/Private/Templates/Login.html';
if (isset($GLOBALS['TBE_STYLES']['htmlTemplates']['EXT:backend/Resources/Private/Templates/login.html']) &&
    file_exists($GLOBALS['TBE_STYLES']['htmlTemplates']['EXT:backend/Resources/Private/Templates/login.html'])) {
    $template = $GLOBALS['TBE_STYLES']['htmlTemplates']['EXT:backend/Resources/Private/Templates/login.html'];
}
$view = $this->getFluidTemplateObject($template);

I'll create a patch for this change.

Actions #4

Updated by Gerrit Code Review almost 9 years ago

  • Status changed from Needs Feedback to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39192

Actions #5

Updated by Benjamin Serfhos almost 9 years ago

Hi Torben,

I would suggest to use signals instead of the globals template configuration.

If you can change the view object you can add own variables too.

Kind regards,

Benjamin

Actions #6

Updated by Torben Hansen almost 9 years ago

Hi Benjamin,

yes, that would indeed be an option / a better solution.

What I'm missing here is a note, that the TBE_STYLES have been deprecated for the loginController. The only thing I could find is was this note about the backend login form:

https://github.com/TYPO3/TYPO3.CMS/blob/cb7a7498566ab22266a4088bf009eabb5eb27372/typo3/sysext/core/Documentation/Changelog/7.2/Breaking-65939-BackendLoginRefactoring.rst

As not taking TBE_STYLES into respect is a breaking change, there should be a fallback / replacement for it. Also (if there is no fallback for TBE_STYLES), it should be noted as a breaking change, since I believe there are some extensions out there using TBE_STYLES to add a custom loginform.

Best regards
Torben

Actions #7

Updated by Gerrit Code Review almost 9 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #8

Updated by Gerrit Code Review almost 9 years ago

Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #9

Updated by Gerrit Code Review almost 9 years ago

Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #10

Updated by Gerrit Code Review almost 9 years ago

Patch set 5 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #11

Updated by Gerrit Code Review almost 9 years ago

Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #12

Updated by Gerrit Code Review almost 9 years ago

Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #13

Updated by Gerrit Code Review almost 9 years ago

Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #14

Updated by Gerrit Code Review almost 9 years ago

Patch set 9 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #15

Updated by Gerrit Code Review almost 9 years ago

Patch set 10 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #16

Updated by Gerrit Code Review almost 9 years ago

Patch set 11 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #17

Updated by Gerrit Code Review almost 9 years ago

Patch set 12 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #18

Updated by Gerrit Code Review almost 9 years ago

Patch set 13 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #19

Updated by Gerrit Code Review almost 9 years ago

Patch set 14 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #20

Updated by Gerrit Code Review almost 9 years ago

Patch set 15 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #21

Updated by Gerrit Code Review almost 9 years ago

Patch set 16 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #22

Updated by Gerrit Code Review almost 9 years ago

Patch set 17 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #23

Updated by Gerrit Code Review almost 9 years ago

Patch set 18 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #24

Updated by Gerrit Code Review almost 9 years ago

Patch set 19 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #25

Updated by Gerrit Code Review almost 9 years ago

Patch set 20 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #26

Updated by Gerrit Code Review almost 9 years ago

Patch set 21 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #27

Updated by Gerrit Code Review almost 9 years ago

Patch set 22 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #28

Updated by Gerrit Code Review almost 9 years ago

Patch set 23 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #29

Updated by Frank Nägler almost 9 years ago

  • Target version changed from 7.2 (Frontend) to 7.3 (Packages)
  • Sprint Focus set to Stabilization Sprint
Actions #30

Updated by Gerrit Code Review almost 9 years ago

Patch set 24 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #31

Updated by Gerrit Code Review almost 9 years ago

Patch set 25 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #32

Updated by Gerrit Code Review almost 9 years ago

Patch set 26 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #33

Updated by Gerrit Code Review almost 9 years ago

Patch set 27 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #34

Updated by Gerrit Code Review almost 9 years ago

Patch set 28 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39234

Actions #35

Updated by Frank Nägler almost 9 years ago

  • Status changed from Under Review to Resolved
Actions #36

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF