commit cffc40a19ed501d33413a5dae657e2ce9d40d944
parent ce7473743f9cf6964384e47749dac1dccf614c25
Author: MoiBaguette <[email protected]>
Date: Tue, 6 Jun 2023 14:05:16 +0200
some tests
Diffstat:
3 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/Model/Key.php b/Model/Key.php
@@ -1,6 +1,8 @@
<?php
Class Key{
- function myfunction($key){
-
+ function myfunction($key):string{
+ $t = new Lollipop\Template();
+ $data = ["var" => "<p> foo </p>"];
+ return $t->template("views/panda.html", $data);
}
}
\ No newline at end of file
diff --git a/index.php b/index.php
@@ -17,7 +17,7 @@ $router->addRoute(["POST"], "/", function($vars){
$router->addRoute(["GET"], "/dashboard", "views/dashboard.php");
$router->addRoute(["GET"], "/api/:data", function($vars) {
$key = new Key;
- $key->myfunction($vars);
+ echo $key->myfunction($vars);
});
$router->route();
\ No newline at end of file
diff --git a/views/panda.html b/views/panda.html
@@ -81,6 +81,7 @@
<div class="bar" style="height: 80px; left: 190px;"></div>
<div class="bar" style="height: 160px; left: 260px;"></div>
</div>
+ {{var}}
</div>
</body>