summaryrefslogtreecommitdiff
path: root/src/model
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2025-06-30 17:22:26 +0200
committerpolo <ordipolo@gmx.fr>2025-06-30 17:22:26 +0200
commitea3eaf84c6de3f96d6bb73e817147f8571fd6c1f (patch)
treea1a27445fd758c16bbb15baa1830118a4f01eca1 /src/model
parentef60a4bd581ec9fb85384c6a262b499373a37d67 (diff)
downloadcms-ea3eaf84c6de3f96d6bb73e817147f8571fd6c1f.zip
formulaire de contact 2
Diffstat (limited to 'src/model')
-rw-r--r--src/model/entities/Node.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/entities/Node.php b/src/model/entities/Node.php
index c4d0830..93363d3 100644
--- a/src/model/entities/Node.php
+++ b/src/model/entities/Node.php
@@ -56,7 +56,7 @@ class Node
56 56
57 private array $children = []; // tableau de Node 57 private array $children = []; // tableau de Node
58 private ?self $adopted = null; // = "new" est un enfant de "main" lorsque la page est "article" 58 private ?self $adopted = null; // = "new" est un enfant de "main" lorsque la page est "article"
59 static private array $default_attributes = ['css_array' => ['body', 'head', 'nav', 'foot', 'calendar'],'js_array' => ['main']]; 59 static private array $default_attributes = ['css_array' => ['body', 'head', 'nav', 'foot'],'js_array' => ['main']];
60 60
61 public function __construct(string $name = '', ?string $article_timestamp = null, array $attributes = [], int $position = 0, ?self $parent = null, ?Page $page = null, ?Article $article = null) 61 public function __construct(string $name = '', ?string $article_timestamp = null, array $attributes = [], int $position = 0, ?self $parent = null, ?Page $page = null, ?Article $article = null)
62 { 62 {