Skip to content

Commit

Permalink
Merge branch '4' into 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 1, 2023
2 parents 73ed9a3 + 9073dae commit c868a30
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/Models/BaseElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -629,21 +629,28 @@ public function getSimpleClassName()

/**
* Despite the name of the method, getPage can return any type of DataObject
*
* @return null|DataObject
* @throws \Psr\Container\NotFoundExceptionInterface
* @throws \SilverStripe\ORM\ValidationException
*/
public function getPage()
{
// Allow for repeated calls to be cached
if (isset($this->cacheData['page'])) {
return $this->cacheData['page'];
if (isset($this->cacheData['parent_id']) && $this->cacheData['parent_id'] === $this->ParentID) {
return $this->cacheData['page'];
}
}

$class = DataObject::getSchema()->hasOneComponent($this, 'Parent');
$area = ($this->ParentID) ? DataObject::get_by_id($class, $this->ParentID) : null;

if ($area instanceof ElementalArea && $area->exists()) {
$this->cacheData['page'] = $area->getOwnerPage();
$page = $area->getOwnerPage();

$this->cacheData['page'] = $page;
$this->cacheData['parent_id'] = $this->ParentID;

return $this->cacheData['page'];
}

Expand Down
12 changes: 12 additions & 0 deletions tests/BaseElementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -503,4 +503,16 @@ public function testPreviewLink(string $class, string $elementIdentifier, ?strin
$this->assertEmpty(rtrim($previewLink ?? '', '/'));
}
}

public function testGetPage()
{
$element = $this->objFromFixture(ElementContent::class, 'content1');

$this->assertStringContainsString($element->getPage()->Title, 'Test Elemental');

$newArea = $this->objFromFixture(ElementalArea::class, 'area52');
$element->ParentID = $newArea->ID;

$this->assertStringContainsString($element->getPage()->Title, 'Page with one elements');
}
}

0 comments on commit c868a30

Please sign in to comment.