Skip to content

Commit

Permalink
Merge pull request #195 from creative-commoners/pulls/4/non-inline-ed…
Browse files Browse the repository at this point in the history
…itable-block

Fix RequiredFields validation
  • Loading branch information
GuySartorelli authored Jan 31, 2024
2 parents ce8524d + 09f637c commit ee002f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Form/LinkField.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
use SilverStripe\LinkField\Models\Link;
use SilverStripe\LinkField\Form\Traits\AllowedLinkClassesTrait;
use SilverStripe\LinkField\Form\Traits\LinkFieldGetOwnerTrait;
use SilverStripe\Forms\HasOneRelationFieldInterface;

/**
* Allows CMS users to edit a Link object.
*/
class LinkField extends FormField
class LinkField extends FormField implements HasOneRelationFieldInterface
{
use AllowedLinkClassesTrait;
use LinkFieldGetOwnerTrait;
Expand Down
6 changes: 5 additions & 1 deletion src/Form/Traits/LinkFieldGetOwnerTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ private function getOwnerFields(): array
$relation = $this->getName();
// Elemental content block
if (class_exists(BaseElement::class) && is_a($owner, BaseElement::class)) {
// Remove namespaces from inline editable blocks
// This will return an empty array for non-inline editable blocks (e.g. blocks in a gridfield)
$arr = ElementalAreaController::removeNamespacesFromFields([$relation => ''], $owner->ID);
$relation = array_keys($arr)[0];
if (!empty($arr)) {
$relation = array_key_first($arr);
}
}
return [
'ID' => $owner->ID,
Expand Down

0 comments on commit ee002f4

Please sign in to comment.