This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/core/App.php

48 lines
1.2 KiB
PHP
Raw Normal View History

2022-01-15 10:26:02 +00:00
<?php
2022-01-19 18:50:54 +00:00
class App
2022-01-15 10:26:02 +00:00
{
2022-01-20 21:23:21 +00:00
public array $config;
public object $database;
public object $session;
2022-01-19 18:50:54 +00:00
public function __construct()
{
2022-01-20 21:23:21 +00:00
// Require configuration file
$this->config = require __DIR__ . '/../config.php';
// Connect to database
$this->database = new Database($this->config['database']);
// Instantiate new session
$this->session = new Session;
2022-01-19 18:50:54 +00:00
}
2022-01-19 19:16:09 +00:00
// Grab model
2022-01-15 10:26:02 +00:00
public function model(string $model): object
{
// Require model file
require __DIR__ . '/../model/' . $model . '.php';
// Instantiate model
return new $model();
}
2022-01-19 19:16:09 +00:00
// Render given view
2022-01-15 10:26:02 +00:00
public function view(string $view, array $data = []): void
{
// Import variables into the current symbol table from an array
extract($data);
// Require view file
require __DIR__ . '/../view/' . $view . '.php';
}
2022-01-19 19:16:09 +00:00
// Turn data array into JSON response
public function api(array $data, int $status_code = 200): void
{
// Set headers
http_response_code($status_code);
header('Content-type: application/json');
// Convert and respond with data
echo json_encode($data);
}
2022-01-15 10:26:02 +00:00
}