designtopack/public/site/plugins/classes/location/PageDetails.php
2025-01-15 16:27:08 +01:00

23 lines
No EOL
485 B
PHP

<?php
namespace adrienpayet\D2P\data\location;
use Kirby\Cms\Page;
class PageDetails
{
protected Page $page;
public function __construct(Page $page)
{
$this->page = $page;
}
public function toArray() {
return [
"uuid" => (string) $this->page->uuid(),
"template" => (string) $this->page->template(),
"uri" => (string) $this->page->uri(),
"title" => (string) $this->page->title(),
];
}
}