21 lines
378 B
PHP
21 lines
378 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace adrienpayet\notifications\location;
|
||
|
|
use Kirby\Cms\Page;
|
||
|
|
|
||
|
|
class PageDetails
|
||
|
|
{
|
||
|
|
protected Page $page;
|
||
|
|
|
||
|
|
public function __construct(Page $page)
|
||
|
|
{
|
||
|
|
$this->page = $page;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function toArray() {
|
||
|
|
return [
|
||
|
|
"uri" => (string) $this->page->uri(),
|
||
|
|
"title" => (string) $this->page->title(),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|