ESP32
ESP32

Reputation: 8718

TYPO3: User Permissions: Allow to hide Plugin Content Element

Is it possible to allow a backend user to show/hide a type of plugin (e.g. News) - but not to edit/delete it?

enter image description here

Upvotes: 0

Views: 214

Answers (1)

Bernd Wilke πφ
Bernd Wilke πφ

Reputation: 10791

I don't think that it's possible as the hiding is no separate right.
visibility is handled as a field like many others.

Additionally: plugins are a very special kind of content. in general all plugins are one kind of content element with further specification which plugin it is.

trying to remove the option to edit all fields except hidden and only for one kind of plugin you first need a selection for this plugin:
cType = 'list' && list_type = 'my_plugin'

Then you could remove access to all fields except hidden, but how would you identify the plugin? 'no access' means: you don't see it.
'It is the content element where you only see the existence' ?


Maybe there are other options for your intention, but that would need further information.

e.g.:
BE-module to switch visibility,
global flag for this plugin,
switch pages with/without plugin,
:

Upvotes: 1

Related Questions