Skip to content

Commit

Permalink
[REMOVAL] Remove deprecated inline form field methods replaced by ove…
Browse files Browse the repository at this point in the history
…rrideChildTca
  • Loading branch information
NamelessCoder committed Aug 13, 2023
1 parent 6862bbe commit cf383fb
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions Classes/Form/AbstractInlineFormField.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,34 +417,6 @@ public function getLevelLinksPosition()
return $this->levelLinksPosition;
}

/**
* @param array $foreignSelectorFieldTcaOverride
* @return RelationFieldInterface
* @deprecated Please switch to overrideChildTca
* @codeCoverageIgnore
*/
public function setForeignSelectorFieldTcaOverride($foreignSelectorFieldTcaOverride)
{
$this->overrideChildTca = [
'columns' => [
'uid_local' => $foreignSelectorFieldTcaOverride
]
];
return $this;
}

/**
* @return array
* @deprecated Please switch to overrideChildTca
* @codeCoverageIgnore
*/
public function getForeignSelectorFieldTcaOverride()
{
return isset($this->overrideChildTca['columns']['uid_local'])
? $this->overrideChildTca['columns']['uid_local']
: null;
}

/**
* @param array $overrideChildTca
* @return RelationFieldInterface
Expand Down

0 comments on commit cf383fb

Please sign in to comment.