Skip to content

Commit

Permalink
[TASK] remove unused code and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
achimfritz committed Aug 15, 2024
1 parent b164645 commit 71a2eb0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
10 changes: 0 additions & 10 deletions Classes/Domain/Model/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,6 @@ public function getChildRecords(): array
return $childRecords;
}

public function getChildRecordsUids(): array
{
$uids = [];
$childRecords = $this->getChildRecords();
foreach ($childRecords as $childRecord) {
$uids[] = $childRecord['uid'];
}
return $uids;
}

/**
* @param int $colPos
* @return array
Expand Down
8 changes: 1 addition & 7 deletions Configuration/Services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,9 @@ services:
public: true
B13\Container\Updates\ContainerDeleteChildrenWithWrongPid:
public: true
B13\Container\Hooks\TableConfigurationPostProcessing:
public: true
B13\Container\Tca\ItemProcFunc:
public: true

B13\Container\View\ContainerLayoutView:
shared: false
public: true

B13\Container\Listener\RecordSummaryForLocalization:
tags:
- name: event.listener
Expand Down Expand Up @@ -111,4 +105,4 @@ services:
- name: 'console.command'
command: 'container:sorting-in-page'
schedulable: false
description: Resort Content Elements
description: Resort Content Elements

0 comments on commit 71a2eb0

Please sign in to comment.