mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-29 18:59:21 +02:00
Updated changelog.php: If logged in to admin account you can update, delete and create changelogs directly from changelog page.
Changelogs are also cached now.
This commit is contained in:
parent
648d0ffaff
commit
f3efa41baf
@ -1,19 +1,105 @@
|
||||
<?php require_once 'engine/init.php'; include 'layout/overall/header.php'; ?>
|
||||
<?php require_once 'engine/init.php'; include 'layout/overall/header.php';
|
||||
$updateCache = false;
|
||||
if (user_logged_in()) {
|
||||
if (is_admin($user_data)) {
|
||||
// variables
|
||||
$status = true;
|
||||
if (isset($_POST['changelogId'])) $changelogId = (int)$_POST['changelogId'];
|
||||
else $status = false;
|
||||
if (isset($_POST['changelogText'])) $changelogText = getValue($_POST['changelogText']);
|
||||
else $status = false;
|
||||
|
||||
if (isset($_POST['action'])) $action = (int)$_POST['action'];
|
||||
else $action = 0;
|
||||
// POST delete
|
||||
if (isset($_POST['delete'])) {
|
||||
$delete = isset($_POST['delete']) ? (int)$_POST['delete'] : 0;
|
||||
if ($delete && $action == 1) {
|
||||
mysql_delete("DELETE FROM `znote_changelog` WHERE `id`='$delete' LIMIT 1;");
|
||||
echo "<h2>Changelog message deleted!</h2>";
|
||||
$updateCache = true;
|
||||
}
|
||||
} else {
|
||||
if ($status) {
|
||||
// POST update
|
||||
if ($changelogId > 0) {
|
||||
mysql_update("UPDATE `znote_changelog` SET `text`='$changelogText' WHERE `id`='$changelogId' LIMIT 1;");
|
||||
echo "<h2>Changelog message updated!</h2>";
|
||||
$updateCache = true;
|
||||
} else {
|
||||
// POST create
|
||||
$time = time();
|
||||
mysql_insert("INSERT INTO `znote_changelog` (`text`, `time`, `report_id`, `status`) VALUES ('$changelogText', '$time', '0', '35');");
|
||||
echo "<h2>Changelog message created!</h2>";
|
||||
$updateCache = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($action === 2) {
|
||||
$old = mysql_select_single("SELECT `text` FROM `znote_changelog` WHERE `id`='$changelogId' LIMIT 1;");
|
||||
}
|
||||
// HTML to create or update
|
||||
?>
|
||||
<h3>Add or update changelog</h3>
|
||||
<form action="" method="POST">
|
||||
<input name="changelogId" type="hidden" value="<?php echo ($action === 2) ? $changelogId : 0; ?>">
|
||||
<textarea rows="7" cols="40" maxlength="254" name="changelogText"><?php echo ($action === 2) ? $old['text'] : ''; ?></textarea><br>
|
||||
<input type="submit" value="Add or update changelog">
|
||||
</form>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<h1>Changelog</h1>
|
||||
<?php
|
||||
$changelogs = mysql_select_multi("SELECT `id`, `text`, `time`, `report_id`, `status` FROM `znote_changelog` ORDER BY `id` DESC;");
|
||||
if ($changelogs !== false) {
|
||||
$cache = new Cache('engine/cache/changelog');
|
||||
if ($cache->hasExpired() || $updateCache === true) {
|
||||
$changelogs = mysql_select_multi("SELECT `id`, `text`, `time`, `report_id`, `status` FROM `znote_changelog` ORDER BY `id` DESC;");
|
||||
|
||||
$cache->setContent($changelogs);
|
||||
$cache->save();
|
||||
} else {
|
||||
$changelogs = $cache->load();
|
||||
}
|
||||
if (isset($changelogs) && !empty($changelogs) && $changelogs !== false) {
|
||||
?>
|
||||
<table>
|
||||
<tr class="yellow">
|
||||
<td>Changelogs</td>
|
||||
<?php
|
||||
if (user_logged_in())
|
||||
if (is_admin($user_data)) {
|
||||
echo "<td>Delete</td><td>Update</td>";
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
<?php
|
||||
foreach ($changelogs as $changelog) {
|
||||
?>
|
||||
<tr>
|
||||
<td><b><?php echo getClock($changelog['time'], true, true); ?></b><br><?php echo $changelog['text']; ?></td>
|
||||
<?php
|
||||
if (user_logged_in())
|
||||
if (is_admin($user_data)) {
|
||||
?>
|
||||
<td>
|
||||
<form action="" method="POST">
|
||||
<input name="delete" type="hidden" value="<?php echo $changelog['id']; ?>">
|
||||
<input name="action" type="hidden" value="1">
|
||||
<input type="submit" value="DELETE">
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
<form action="" method="POST">
|
||||
<input name="changelogId" type="hidden" value="<?php echo $changelog['id']; ?>">
|
||||
<input name="action" type="hidden" value="2">
|
||||
<input type="submit" value="UPDATE">
|
||||
</form>
|
||||
</td>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
@ -22,7 +108,7 @@ if ($changelogs !== false) {
|
||||
<?php
|
||||
} else {
|
||||
?>
|
||||
|
||||
<h2>Currently no change logs submitted.</h2>
|
||||
<?php
|
||||
}
|
||||
include 'layout/overall/footer.php'; ?>
|
Loading…
x
Reference in New Issue
Block a user