aboutsummaryrefslogtreecommitdiff
path: root/src/view/AbstractBuilder.php
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2025-04-06 12:18:49 +0200
committerpolo <ordipolo@gmx.fr>2025-04-06 12:18:49 +0200
commit68b6058e2a27fc251c117c4efeb141392a0c9736 (patch)
tree5c029b2c147bd14f777765d41bc623582c81daa2 /src/view/AbstractBuilder.php
parente4a325c9d5c07f09bc18b7e366ffb82b82c43502 (diff)
downloadcms-68b6058e2a27fc251c117c4efeb141392a0c9736.zip
nouvel article, boutons dans les builders, makeArticleNode, JS MAJ page, tri quand déplacement ou suppression
Diffstat (limited to 'src/view/AbstractBuilder.php')
-rw-r--r--src/view/AbstractBuilder.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/view/AbstractBuilder.php b/src/view/AbstractBuilder.php
index cd2b361..285ebc3 100644
--- a/src/view/AbstractBuilder.php
+++ b/src/view/AbstractBuilder.php
@@ -7,6 +7,12 @@ abstract class AbstractBuilder
7{ 7{
8 protected const VIEWS_PATH = '../src/view/templates/'; 8 protected const VIEWS_PATH = '../src/view/templates/';
9 protected string $html = ''; 9 protected string $html = '';
10 protected int $id_node;
11
12 protected function __construct(Node $node)
13 {
14 $this->id_node = $node->getId();
15 }
10 16
11 protected function useChildrenBuilder(Node $node): void 17 protected function useChildrenBuilder(Node $node): void
12 { 18 {