[TYPO3-dev]  XCLASS of t3lib_userAuthGroup not working
    Georg Ringer 
    news at ringerge.org
       
    Fri Dec  4 12:10:12 CET 2009
    
    
  
Hi,
can somebody help me with a small problem.
I can't get it working to XCLASS t3lib_userAuthGroup.
ext_localconf.php
$TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_userauthgroup.php']
= t3lib_extMgm::extPath($_EXTKEY).'class.ux_t3lib_userauthgroup.php';
file class.ux_t3lib_userauthgroup.php
=======================================================
<?php
require_once(PATH_t3lib . 'class.t3lib_userauthgroup.php');
class ux_t3lib_userAuthGroup extends t3lib_userAuthGroup {
	function workspaceCheckStageForCurrent($stage)	{
		return true;
	}
}
?>
=======================================================
the overwritten function is just not loaded.
also tried ext_autoload (working with 4.3) and
return array(
	'ux_t3lib_userAuthGroup' => t3lib_extMgm::extPath('extkey',
'class.ux_t3lib_userauthgroup.php'),
);
thanks a lot
Georg
    
    
More information about the TYPO3-dev
mailing list