project creation request notification working
This commit is contained in:
parent
c750001a2c
commit
c75c5e1d8a
7 changed files with 93 additions and 13 deletions
|
|
@ -5,16 +5,12 @@ namespace adrienpayet\D2P\data\location;
|
|||
class Location
|
||||
{
|
||||
protected PageDetails $page;
|
||||
// protected ?string $dialogUri = null;
|
||||
// protected ProjectDetails $project;
|
||||
protected ?FileDetails $file = null;
|
||||
protected ?array $parent = null;
|
||||
|
||||
public function __construct(array $data)
|
||||
{
|
||||
$this->page = new PageDetails($data["page"]);
|
||||
// $this->dialogUri = $data["dialogUri"];
|
||||
// $this->project = new ProjectDetails($data["project"]);
|
||||
|
||||
if (isset($data['file'])) {
|
||||
$this->file = new FileDetails($data["file"]);
|
||||
|
|
@ -33,13 +29,8 @@ class Location
|
|||
public function toArray() {
|
||||
$array = [
|
||||
"page" => $this->page->toArray(),
|
||||
// "project" => $this->project->toArray(),
|
||||
];
|
||||
|
||||
// if ($this->dialogUri) {
|
||||
// $array["dialogUri"] = $this->dialogUri;
|
||||
// }
|
||||
|
||||
if ($this->file) {
|
||||
$array["file"] = $this->file;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ class PageDetails
|
|||
return [
|
||||
"uuid" => (string) $this->page->uuid(),
|
||||
"template" => (string) $this->page->template(),
|
||||
"panelUrl" => (string) $this->page->panel()->url(),
|
||||
"uri" => (string) $this->page->uri(),
|
||||
"title" => (string) $this->page->title(),
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue