mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-10 01:36:09 +01:00
[BUGFIX] Better check for existing be zuser
This commit is contained in:
parent
5b7ddfc366
commit
76200bfb40
1 changed files with 15 additions and 13 deletions
|
@ -37,9 +37,10 @@ class StdWrapEditPanelHook implements ContentObjectStdWrapHookInterface
|
|||
|
||||
public function stdWrapPostProcess($content, array $configuration, ContentObjectRenderer &$parentObject)
|
||||
{
|
||||
$configurationService = GeneralUtility::makeInstance(ConfigurationService::class);
|
||||
$user = $this->getFrontendBackendUser();
|
||||
if ($user && ($configuration['editPanel'] ?? false) && StateUtility::isOpen() && $configurationService->getConfigurationOption('edit', 'displayIcons')) {
|
||||
if ($user) {
|
||||
$configurationService = GeneralUtility::makeInstance(ConfigurationService::class);
|
||||
if (($configuration['editPanel'] ?? false) && StateUtility::isOpen() && $configurationService->getConfigurationOption('edit', 'displayIcons')) {
|
||||
[$table, $uid] = explode(':', $parentObject->currentRecord);
|
||||
$allowedActions = $user->getAllowedEditActions($table, $configuration['editPanel.'] ?? [], $parentObject->data['pid']);
|
||||
$frontendEditPanel = GeneralUtility::makeInstance(FrontendEditPanel::class, $parentObject);
|
||||
|
@ -52,6 +53,7 @@ class StdWrapEditPanelHook implements ContentObjectStdWrapHookInterface
|
|||
$allowedActions
|
||||
);
|
||||
}
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue