Skip to content

Commit

Permalink
[BUGFIX] remove backendTemplate from ContainerConfiguration
Browse files Browse the repository at this point in the history
Fixes: #495
  • Loading branch information
achimfritz-b13 authored and achimfritz committed Jun 3, 2024
1 parent a01479d commit e187b1a
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions Classes/Tca/ContainerConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,6 @@ class ContainerConfiguration
*/
protected $icon = 'EXT:container/Resources/Public/Icons/Extension.svg';

/**
* @var string
*/
protected $backendTemplate = 'EXT:container/Resources/Private/Templates/Container.html';

/**
* @var string
*/
Expand Down Expand Up @@ -110,16 +105,6 @@ public function setIcon(string $icon): ContainerConfiguration
return $this;
}

/**
* @param string $backendTemplate
* @return ContainerConfiguration
*/
public function setBackendTemplate(string $backendTemplate): ContainerConfiguration
{
$this->backendTemplate = $backendTemplate;
return $this;
}

/**
* @param string $gridTemplate
* @return ContainerConfiguration
Expand Down Expand Up @@ -262,7 +247,6 @@ public function toArray(): array
'icon' => $this->icon,
'label' => $this->label,
'description' => $this->description,
'backendTemplate' => $this->backendTemplate,
'grid' => $this->grid,
'gridTemplate' => $this->gridTemplate,
'gridPartialPaths' => $this->gridPartialPaths,
Expand Down

0 comments on commit e187b1a

Please sign in to comment.