wishthis/includes/classes/page.php

161 lines
5.3 KiB
PHP
Raw Normal View History

2021-11-12 15:23:48 +00:00
<?php
/**
* page.php
*/
namespace wishthis;
2022-01-14 07:34:55 +00:00
use wishthis\User;
2021-11-12 15:23:48 +00:00
class Page
{
private string $language = 'en';
/**
* __construct
*
* @param string $filepath The filepath (__FILE__) of the page.
* @param string $title The HTML title of the page.
*/
public function __construct(string $filepath, public string $title = 'wishthis')
{
$this->name = pathinfo($filepath, PATHINFO_FILENAME);
2022-01-14 07:24:08 +00:00
/**
* Session
*/
if (!isset($_SESSION['user']) && isset($_GET['page']) && 'login' !== $_GET['page']) {
header('Location: /?page=login');
}
2021-11-12 15:23:48 +00:00
}
public function header(): void
{
?>
<!DOCTYPE html>
<html lang="<?= $this->language ?>">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<?php
/**
* Stylesheets
*/
2022-01-13 13:00:31 +00:00
/** Fomantic UI */
$stylesheetFomantic = 'semantic/dist/semantic.min.css';
$stylesheetFomanticModified = filemtime($stylesheetFomantic);
echo '<link rel="stylesheet" href="' . $stylesheetFomantic . '?m=' . $stylesheetFomanticModified . '" />';
2021-11-12 15:23:48 +00:00
/** Default */
$stylesheetDefault = 'includes/assets/css/default.css';
$stylesheetDefaultModified = filemtime($stylesheetDefault);
echo '<link rel="stylesheet" href="' . $stylesheetDefault . '?m=' . $stylesheetDefaultModified . '" />';
/** Page */
$stylesheetPage = 'includes/assets/css/' . $this->name . '.css';
if (file_exists($stylesheetPage)) {
$stylesheetPageModified = filemtime($stylesheetPage);
echo '<link rel="stylesheet" href="' . $stylesheetPage . '?m=' . $stylesheetPageModified . '" />';
}
/**
* Scripts
*/
/** jQuery */
$scriptjQuery = 'node_modules/jquery/dist/jquery.min.js';
$scriptjQueryModified = filemtime($scriptjQuery);
echo '<script defer src="' . $scriptjQuery . '?m=' . $scriptjQueryModified . '"></script>';
/** Fomantic */
$scriptFomantic = 'semantic/dist/semantic.min.js';
$scriptFomanticModified = filemtime($scriptFomantic);
echo '<script defer src="' . $scriptFomantic . '?m=' . $scriptFomanticModified . '"></script>';
/** Default */
$scriptDefault = 'includes/assets/js/default.js';
$scriptDefaultModified = filemtime($scriptDefault);
echo '<script defer src="' . $scriptDefault . '?m=' . $scriptDefaultModified . '"></script>';
?>
2022-01-13 13:00:31 +00:00
2021-11-15 11:20:55 +00:00
<title><?= $this->title ?> - wishthis</title>
2021-11-12 15:23:48 +00:00
</head>
<body>
<?php
}
public function navigation(): void
{
2022-01-13 13:15:43 +00:00
?>
<div class="ui attached stackable menu">
<div class="ui container">
2022-01-14 07:34:55 +00:00
<a class="item" href="/?page=home">
<i class="home icon"></i> Home
2022-01-13 13:15:43 +00:00
</a>
<div class="ui simple dropdown item">
2022-01-14 07:34:55 +00:00
Wishlist
<i class="dropdown icon"></i>
<div class="menu">
<a class="item" href="/?page=wishlist-create">
<i class="list icon"></i>
Create
</a>
<a class="item" href="/?page=wishlist-product-add">
<i class="plus square icon"></i>
Add product
</a>
</div>
2022-01-13 13:15:43 +00:00
</div>
2022-01-14 07:34:55 +00:00
<div class="ui simple dropdown item">
Account
<i class="dropdown icon"></i>
<div class="menu">
<?php
$user = new User();
if ($user->isLoggedIn()) {
?>
<a class="item" href="/?page=logout">
<i class="sign out alternate icon"></i>
Logout
</a>
<?php
} else {
?>
<a class="item" href="/?page=login">
<i class="sign in alternate icon"></i>
Login
</a>
<a class="item" href="/?page=register">
<i class="user plus icon"></i>
Register
</a>
<?php
}
?>
</div>
2022-01-13 13:15:43 +00:00
</div>
<div class="right item">
2022-01-14 07:34:55 +00:00
<div class="ui input"><input type="text" placeholder="Search..."></div>
2022-01-13 13:15:43 +00:00
</div>
</div>
</div>
<div class="ui hidden divider"></div>
<?php
}
2021-11-12 15:23:48 +00:00
public function footer(): void
{
?>
</body>
</html>
<?php
}
}