fuel-stats/core/View.php
Filip Rojek 3d86f1ae2e
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 12s
Fixed: data validation in offline refuel create form
2025-02-03 19:54:58 +01:00

31 lines
719 B
PHP

<?php
class View
{
private $data = [];
public function render($view, $data = [], $layout = 'base') {
// Store the data
$this->data = $data;
// check for status code in data
if(isset($this->data['status'])){
http_response_code($this->data['status']);
}
// Capture the view content
ob_start();
require_once views . $view . '.php';
$content = ob_get_clean();
// Include the base layout and inject the view content
require_once views . "layouts/$layout.php";
}
/**
* Safely get a value from the data array
*/
public function get($key) {
return $this->data[$key] ?? null;
}
}