This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Controllers/Controller.php
2016-08-03 19:47:46 +02:00

43 lines
988 B
PHP

<?php
/**
* Holds the base controller.
*
* @package Sakura
*/
namespace Sakura\Controllers;
/**
* Base controller (which other controllers should extend on).
*
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class Controller
{
// Middleware to execute upon creating this class
protected $middleware = [
'UpdateLastOnline',
];
// Used to except middleware in controllers that extend this one
protected $exceptMiddleware = [];
public function __construct()
{
// filter excepted middlewares
$middlewares = array_diff($this->middleware, $this->exceptMiddleware);
foreach ($middlewares as $middleware) {
$className = "Sakura\\Middleware\\{$middleware}";
(new $className)->run();
}
}
public function json($object, $operators = null)
{
header('Content-Type: application/json; charset=utf-8');
return json_encode($object, $operators);
}
}