<?php
/**
* @return bool
*/
function isAdmin(): bool
{
session_start();
return isset($_SESSION['admin']);
}