[TYPO3-mvc] Only show records of the logged in backend user in list module for extension

Jignesh Prajapati jignesh.prajapati at drcsystems.com
Fri Jun 27 14:35:49 CEST 2014


Is it not possible with single folder ?

As if there are many backend users then we will have to create that many folders for each be users.

Is there any settings available that we can made in ext_tables.php in below code

$TCA['tx_dekra_domain_model_categories'] = array(
	'ctrl' => array(
		'title'	=> 'LLL:EXT:dekra/Resources/Private/Language/locallang_db.xlf:tx_dekra_domain_model_categories',
		'label' => 'name',
		'tstamp' => 'tstamp',
		'crdate' => 'crdate',
		'cruser_id' => 'cruser_id',
		'dividers2tabs' => TRUE,
		'sortby' => 'sorting',
		'versioningWS' => 2,
		'versioning_followPages' => TRUE,
		'origUid' => 't3_origuid',
		'languageField' => 'sys_language_uid',
		'transOrigPointerField' => 'l10n_parent',
		'transOrigDiffSourceField' => 'l10n_diffsource',
		'delete' => 'deleted',
		'enablecolumns' => array(
			'disabled' => 'hidden',
			'starttime' => 'starttime',
			'endtime' => 'endtime',
		),
		'searchFields' => 'name,isactive,image,parent,',
		'dynamicConfigFile' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Configuration/TCA/Categories.php',
		'iconfile' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extRelPath($_EXTKEY) . 'Resources/Public/Icons/tx_dekra_domain_model_categories.gif'
	),
);

or is there any other idea ?


More information about the TYPO3-project-typo3v4mvc mailing list