[server] Fix router

This commit is contained in:
Starbeamrainbowlabs 2019-01-14 20:17:36 +00:00
parent 9e347fdeb8
commit 4939238861
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 7 deletions

View File

@ -3,21 +3,16 @@
namespace AirQuality\Actions;
class Index {
class FetchData {
private $settings;
private $renderer;
public function __construct(
\SBRL\TomlConfig $in_settings) {
$this->settings = $in_settings;
$this->renderer = $in_renderer;
}
public function handle() {
echo($this->renderer->render_file(ROOT_DIR."templates/main.html", [
"title" => "Home",
"content" => file_get_contents(ROOT_DIR."templates/mockup.html"),
"footer_html" => ""
]));
echo("Testing");
}
}