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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
<?php
/*
444444444
4::::::::4
4:::::::::4
4::::44::::4
4::::4 4::::4 Four Island
4::::4 4::::4
4::::4 4::::4 Written and maintained by Starla Insigna
4::::444444::::444
4::::::::::::::::4 admin/quotes.php
4444444444:::::444
4::::4 Please do not use, reproduce or steal the
4::::4 contents of this file without explicit
4::::4 permission from Hatkirby.
44::::::44
4::::::::4
4444444444
*/
if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);}
require('headerproc.php');
require_once('Pager.php');
$category = 'quotes';
if (isset($_GET['flagged']))
{
$pageaid = 'flagged';
} else {
$pageaid = 'quotes';
}
if (isset($_GET['action']))
{
if ($_GET['action'] == 'delete')
{
if (is_numeric($_POST['id']))
{
$delpost = "DELETE FROM rash_quotes WHERE id = " . $_POST['id'];
$delpost2 = mysql_query($delpost);
$flashmsg = 'The selected quote has been deleted.';
}
} else if ($_GET['action'] == 'deletes')
{
$ids = explode(',', $_POST['ids']);
if (is_array($ids) && !empty($ids))
{
foreach ($ids as $id)
{
$delpost = "DELETE FROM rash_quotes WHERE id = " . $id;
$delpost2 = mysql_query($delpost);
}
$flashmsg = 'The selected quotes have been deleted.';
}
}
}
$template = new FITemplate('admin/quotes');
if (isset($_GET['flagged']))
{
$template->add('TITLE', 'Manage Flagged Quotes');
$template->add('FLAGGED', 'flagged=&');
$getposts = "SELECT * FROM rash_quotes WHERE flag = 1 ORDER BY id DESC";
} else {
$template->add('TITLE', 'Manage Quotes');
$template->add('FLAGGED', '');
$getposts = "SELECT * FROM rash_quotes ORDER BY id DESC";
}
$getposts2 = mysql_query($getposts);
$i=0;
while ($getposts3[$i] = mysql_fetch_array($getposts2))
{
$i++;
}
if ($i != 0)
{
$template->adds_block('AVAIL',array('exi'=>1));
} else {
$template->adds_block('NOTAVAIL',array('exi'=>1));
}
$pager = &Pager::factory(array( 'mode' => 'Sliding',
'perPage' => 20,
'delta' => 2,
'itemData' => $getposts3));
$j=0;
foreach ($pager->getPageData() as $post)
{
if (!empty($post))
{
$template->adds_block('QUOTE', array( 'EXCERPT' => htmlspecialchars(strpos($post['quote'],"\n") !== FALSE ? substr($post['quote'],0,strpos($post['quote'],"\n")) : $post['quote']),
'ID' => $post['id'],
'ODD' => ($j % 2 ? '' : ' class="odd"')));
}
$j++;
}
$template->add('PAGEID', $pager->getCurrentPageID());
$template->add('PAGINATION', $pager->links);
$template->display();
?>
|