Search code examples
typo3typo3-6.2.xtypo3-tca

TYPO3: how to show the field in BE only for its owner?


TCA offers the possibility for conditional displaying fields using displayCond. for an instance HIDE_FOR_NON_ADMINS allows to display field only for admin, but is there a way to display given field only for its creator, determined by cruser_id field?


Solution

  • Not out of the box. You can hook into TCEMAIN (DataHandler) or TCEFORM (FormEngine) to archive this.

    You can however use access rights and set the rights to show the page (storage folder) only the the given backend user. Check out the access module.