blob: af486d52ec196fb7464e117342041ce1328f4af6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php
if(!defined('ROOT')) die('Don\'t call this directly.');
header('Content-Type: text/html; charset=utf-8');
$id = (!empty(path(0))) ? (int) path(0) : 0;
$action = 'display';
if(mb_strtolower(path(1)) == 'delete') $action = 'delete';
if(mb_strtolower(path(1)) == 'edit') $action = 'edit';
$error = false;
if($config['logged_in']) {
// delete post
if(!empty($_POST['action']) && $_POST['action'] == 'delete') {
$result = db_delete((int) $_POST['id']);
if(!$result) {
$error = 'Post could not be deleted!';
} else {
rebuild_feeds();
header('Location: '.$config['url']);
die();
}
}
// edit post
if(!empty($_POST['action']) && $_POST['action'] == 'edit') {
$result = db_update((int) $_POST['id'], $_POST['content']);
if(!$result) {
$error = 'Post could not be updated!';
} else {
rebuild_feeds();
header('Location: '.$config['url'].'/'.$_POST['id']);
die();
}
}
}
// load the actual post
$post = db_select_post($id);
$title_suffix = 'entry #' . $id;
require(ROOT.DS.'snippets'.DS.'header.snippet.php');
?><body>
<div class="wrap">
<?php require(ROOT.DS.'snippets'.DS.'nav.snippet.php'); ?>
<ul class="posts">
<?php if(!empty($post)): ?>
<li class="single-post" data-post-id="<?= $post['id'] ?>">
<?php if($action == 'edit'): ?>
<form action="" method="post" class="edit">
<textarea name="content" maxlength="<?= $config['max_characters'] ?>"><?= $post['post_content'] ?></textarea>
<p id="count"><?= $config['max_characters'] ?></p>
<input type="hidden" name="action" value="edit" />
<input type="hidden" name="id" value="<?= $post['id'] ?>" />
<input type="submit" class="button" value="Update this post" />
</form>
<?php else: ?>
<?php
$date = date_create();
date_timestamp_set($date, $post['post_timestamp']);
$datetime = date_format($date, 'Y-m-d H:i:s');
$formatted_time = date_format($date, 'M d Y H:i');
?>
<span class="post-timestamp"><time datetime="<?= $datetime ?>" data-unix-time="<?= $post['post_timestamp'] ?>"><?= $formatted_time ?></time></span>
<nav class="post-meta">
<?php if($config['logged_in']): ?><ul>
<li><a href="<?= $config['url'] ?>/<?= $post['id'] ?>/edit">Edit</a></li>
<li><a href="<?= $config['url'] ?>/<?= $post['id'] ?>/delete">Delete</a></li>
</ul><?php endif; ?>
</nav>
<p class="post-content"><?= nl2br(autolink($post['post_content'])) ?></p>
<?php if($action == 'delete'): ?>
<form action="" method="post" class="delete">
<input type="hidden" name="action" value="delete" />
<input type="hidden" name="id" value="<?= $post['id'] ?>" />
<input type="submit" class="button alert" value="Delete this post" />
</form>
<?php if($error !== false): ?>
<p class="message error"><?= $error ?></p>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>
</li>
<?php else: ?>
<p>No post with this ID.</p>
<?php endif; ?>
</ul>
</div>
<?php require(ROOT.DS.'snippets'.DS.'footer.snippet.php'); ?>
</body>
</html>
|