Now I am using TYPO3 6.2beta5 version and in that website I need to include an XClass for the extension sr_feuser_register. Its a "PI_Base" extension and I tried the following methods to include XClass, but not working anymore;
-> localconf.php
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects']['tx_srfeuserregister_display'] = array( 'className' => 'ux_tx_srfeuserregister_display');
-> ext_autoload.php
$extensionPath = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('extname');
return array( 'ux_tx_srfeuserregister_display' => $extensionPath.'class.ux_tx_srfeuserregister_display.php', );
Does anybody knows the solution?
Thanks