1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<?php
// src/model/entities/Page.php
declare(strict_types=1);
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection;
#[ORM\Entity]
#[ORM\Table(name: TABLE_PREFIX . "page")]
class Page
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: "integer")]
private int $id_page;
#[ORM\Column(type: "string", length: 255)]
private string $name_page;
#[ORM\Column(type: "string", length: 255)]
private string $end_of_path; // morceau d'URL plus exactement
private string $page_path;
#[ORM\Column(type: "boolean")]
private bool $reachable;
#[ORM\Column(type: "boolean")]
private bool $in_menu;
#[ORM\Column(type: "integer", nullable: true)] // null si hors menu
private ?int $position;
#[ORM\ManyToOne(targetEntity: self::class)]
#[ORM\JoinColumn(name: "parent_id", referencedColumnName: "id_page", onDelete: "SET NULL", nullable: true)]
private ?self $parent = null;
#[ORM\OneToMany(targetEntity: self::class, mappedBy: 'parent')]
protected Collection $children;
/*#[ORM\Column(type: "json", nullable: true)]
private ?array $metadata = null;*/
public function __construct(string $name, string $eop, bool $reachable, bool $in_menu, ?int $position, ?Page $parent)
{
$this->name_page = $name;
$this->end_of_path = $eop;
$this->reachable = $reachable;
$this->in_menu = $in_menu;
$this->position = $position;
$this->parent = $parent;
$this->children = new ArrayCollection();
}
// getters
/*public function getId(): int
{
return $this->id_page;
}*/
public function getPageName(): string
{
return $this->name_page;
}
public function getPagePath(): string
{
return $this->page_path;
}
public function getEndOfPath(): string
{
return $this->end_of_path;
}
public function isReachable(): bool
{
return $this->reachable;
}
public function isInMenu(): bool
{
return $this->in_menu;
}
public function getPosition(): ?int
{
return $this->position;
}
public function getParent(): ?Page
{
return $this->parent;
}
public function getChildren(): Collection
{
return $this->children;
}
public function fillChildrenPagePath(string $parent_path = ''): void
{
$this->page_path = $parent_path != '' ? $parent_path . '/' . $this->end_of_path : $this->end_of_path;
foreach($this->getChildren() as $page){
$page->fillChildrenPagePath($this->page_path);
}
}
public function addChild(self $child): void
{
$this->children[] = $child;
$this->sortChildren();
}
// utiliser $position pour afficher les éléments dans l'ordre
private function sortChildren(): void
{
$iteration = count($this->children);
while($iteration > 1)
{
for($i = 0; $i < $iteration - 1; $i++)
{
if($this->children[$i]->getPosition() > $this->children[$i + 1]->getPosition())
{
$tmp = $this->children[$i];
$this->children[$i] = $this->children[$i + 1];
$this->children[$i + 1] = $tmp;
}
}
$iteration--;
}
}
}
|