[TYPO3-mvc] get repository in eID and respect mapping?

Philipp Wrann philippwrann at gmail.com
Tue Feb 25 16:26:22 CET 2014


Because no typoscript will be loaded, you need to bootstrap a complete frontend for typo3. Most people simply use a pagetype because eID does not have any performance benefits in that context.

If you still want to use the eID mechanism:

1) request the current window.location, that way you will allways be able to boot a frontend setup with the current (correct) typoscript settings
2) Load all dependencies you need (search extbase eid in google)

btw: frameworkconfiguration should not be in your ext_typoscript, include your framework config like this in your ext_localconf.php

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScriptSetup(
	'<INCLUDE_TYPOSCRIPT: source="FILE:EXT:path/to/FrameworkConfiguration.ts">'
);


More information about the TYPO3-project-typo3v4mvc mailing list