mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?
|
|
define('DEFAULT_LIMIT', 10);
|
|
|
|
$Limit = DEFAULT_LIMIT;
|
|
if (is_number($_GET['month'])) {
|
|
$Month = $_GET['month'];
|
|
$Limit = null;
|
|
}
|
|
if (is_number($_GET['year'])) {
|
|
$Year = $_GET['year'];
|
|
$Limit = null;
|
|
}
|
|
if (!empty($_GET['title'])) {
|
|
$Title = $_GET['title'];
|
|
$Limit = null;
|
|
}
|
|
if (!empty($_GET['category'])) {
|
|
$Category = $_GET['category'];
|
|
$Limit = null;
|
|
}
|
|
if (!empty($_GET['subcategory'])) {
|
|
$SubCategory = $_GET['subcategory'];
|
|
$Limit = null;
|
|
}
|
|
if (!empty($_GET['tags'])) {
|
|
$Tags = $_GET['tags'];
|
|
$Limit = null;
|
|
}
|
|
$Events = SiteHistory::get_events($Month, $Year, $Title, $Category, $SubCategory, $Tags, $Limit);
|
|
$Months = SiteHistory::get_months();
|
|
View::show_header("Site History");
|
|
?>
|
|
<div class="header">
|
|
<h2><a href="sitehistory.php">Site History</a> <?=$Month && $Year ? date("- F, Y", mktime(0, 0, 0, $Month, 1, $Year)) : '' ?></h2>
|
|
<?
|
|
SiteHistoryView::render_linkbox();
|
|
?>
|
|
</div>
|
|
<div class="sidebar">
|
|
<?
|
|
SiteHistoryView::render_search();
|
|
SiteHistoryView::render_months($Months);
|
|
?>
|
|
</div>
|
|
<div class="main_column">
|
|
<?
|
|
SiteHistoryView::render_events($Events);
|
|
?>
|
|
</div>
|
|
<?
|
|
View::show_footer();
|
|
|