Configuring Moduls access for Redactors
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Configuring Moduls access for Redactors
how can i configure the available moduls for usergroups or redactors.
For example i wanna disable the Language or Expertmodul from the admin (they dont have to apear in the sidebar-menu).
For example i wanna disable the Language or Expertmodul from the admin (they dont have to apear in the sidebar-menu).
Re: Configuring Moduls access for Redactors
Here you can see the configuration for the sidebar navigation including the permissions:
https://github.com/aimeos/ai-admin-jqad ... /admin.php
You can change both via TypoScript and you need TYPO3 backend user groups named like the groups in the config to restrict the panels to certain user groups. You can even create more user groups (e.g. limited editor, dashboard viewer) and configure them the same way.
https://github.com/aimeos/ai-admin-jqad ... /admin.php
You can change both via TypoScript and you need TYPO3 backend user groups named like the groups in the config to restrict the panels to certain user groups. You can even create more user groups (e.g. limited editor, dashboard viewer) and configure them the same way.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Configuring Moduls access for Redactors
You can find additional configuration like the list of shown columns for each panel here:
https://aimeos.org/docs/Configuration/Core/admin/jqadm
https://aimeos.org/docs/Configuration/Core/admin/jqadm
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Configuring Moduls access for Redactors
im sorry i dont get it.
i've now do that:
i've a typo3-BE-grop with the name Shop.
when i loigin then i got: Not allowed to access JQAdm "dashboard" client
i've now do that:
Code: Select all
plugin.tx_aimeos.settings.admin.jqadm {
resource{
dashboard {
groups = Shop
}
}
}
when i loigin then i got: Not allowed to access JQAdm "dashboard" client
Re: Configuring Moduls access for Redactors
The permitted groups have to be a list of entries and the TYPO3 configuration of plugins for the backend starts with "module":
Code: Select all
module.tx_aimeos.settings.admin.jqadm {
resource {
dashboard {
groups {
0 = Shop
}
}
}
}
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Configuring Moduls access for Redactors
still the same message.
is this in he extension typoscript or in ts config?
is this in he extension typoscript or in ts config?
Re: Configuring Moduls access for Redactors
It's in the Web -> Template -> Root page -> Info/Modify -> Setup TypoScript but you can also move it to a file so it can be versioned.
The full config for allowing a user from the "admin" and "Shop" group to access the dashboard is:
The full config for allowing a user from the "admin" and "Shop" group to access the dashboard is:
Code: Select all
module.tx_aimeos.settings.admin {
jqadm {
resource {
dashboard {
groups {
0 = admin
1 = Shop
}
}
}
}
jsonadm {
resource {
locale {
currency {
groups {
0 = admin
1 = Shop
}
}
}
order {
groups {
0 = admin
1 = Shop
}
}
}
}
}
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Configuring Moduls access for Redactors
After i put my extension template on typo3 root it works.
thnx
thnx