kopia lustrzana https://github.com/jprochazka/adsb-receiver
115 wiersze
5.0 KiB
PHP
115 wiersze
5.0 KiB
PHP
<?php
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
// ADS-B RECEIVER PORTAL //
|
|
// =============================================================================== //
|
|
// Copyright and Licensing Information: //
|
|
// //
|
|
// The MIT License (MIT) //
|
|
// //
|
|
// Copyright (c) 2015-2016 Joseph A. Prochazka //
|
|
// //
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy //
|
|
// of this software and associated documentation files (the "Software"), to deal //
|
|
// in the Software without restriction, including without limitation the rights //
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell //
|
|
// copies of the Software, and to permit persons to whom the Software is //
|
|
// furnished to do so, subject to the following conditions: //
|
|
// //
|
|
// The above copyright notice and this permission notice shall be included in all //
|
|
// copies or substantial portions of the Software. //
|
|
// //
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR //
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE //
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER //
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, //
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE //
|
|
// SOFTWARE. //
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
session_start();
|
|
|
|
// Load the require PHP classes.
|
|
require_once('../../classes/common.class.php');
|
|
require_once('../../classes/account.class.php');
|
|
require_once('../../classes/blog.class.php');
|
|
|
|
$common = new common();
|
|
$account = new account();
|
|
$blog = new blog();
|
|
|
|
// Check if the user is logged in.
|
|
if (!$account->isAuthenticated()) {
|
|
// The user is not logged in so forward them to the login page.
|
|
header ("Location: login.php");
|
|
}
|
|
|
|
// Get titles and dates for all blog posts.
|
|
$allPosts = $blog->getAllPosts();
|
|
|
|
// Pagination.
|
|
$itemsPerPage = 10;
|
|
$page = (isset($_GET['page']) ? $_GET['page'] : 1);
|
|
$posts = $common->paginateArray($allPosts, $page, $itemsPerPage - 1);
|
|
|
|
////////////////
|
|
// BEGIN HTML
|
|
|
|
require_once('../includes/header.inc.php');
|
|
?>
|
|
|
|
<h1>Blog Management</h1>
|
|
<hr />
|
|
<h2>Blog Posts</h2>
|
|
<a href="/admin/blog/add.php" class="btn btn-info" style="margin-bottom: 10px;" role="button">Add Post</a>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-condensed">
|
|
<tr>
|
|
<th></th>
|
|
<th>Title</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
<?php
|
|
foreach ($posts as $post) {
|
|
?>
|
|
<tr>
|
|
<td><a href="edit.php?title=<?php echo urlencode($post['title']); ?>">edit</a> <a href="delete.php?title=<?php echo urlencode($post['title']); ?>">delete</a></td>
|
|
<td><?php echo $post['title']; ?></td>
|
|
<td>
|
|
<?php
|
|
// Properly format the date and convert to slected time zone.
|
|
$date = new DateTime($post['date'], new DateTimeZone('UTC'));
|
|
$date->setTimezone(new DateTimeZone($common->getSetting('timeZone')));
|
|
echo $date->format($common->getSetting('dateFormat'));
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
</div>
|
|
<?php
|
|
$count = 0;
|
|
foreach ($allPosts as $post) {
|
|
$count++;
|
|
}
|
|
$pageLinks = $count / $itemsPerPage;
|
|
?>
|
|
<!-- This is a placeholder for pagination which is not implemented at this time. -->
|
|
<ul class="pagination">
|
|
<?php
|
|
$i = 1;
|
|
while ($i <= $pageLinks) {
|
|
?>
|
|
<li><a href="?page=<?php echo $i; ?>"><?php echo $i; ?></a></li>
|
|
<?php
|
|
$i++;
|
|
}
|
|
?>
|
|
</ul>
|
|
<?php
|
|
require_once('../includes/footer.inc.php');
|
|
?>
|