about summary refs log tree commit diff stats
path: root/series/trunk/admin/mansub.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-09-14 15:49:20 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-09-14 15:49:20 +0000
commitabb2d3c67ddc132c4cc7ea435e13731527c32634 (patch)
tree65aa76b08708397dd79cee29f4bc09826825a1bb /series/trunk/admin/mansub.php
parent7bb63b11cd21e97ddece876d46d9e06e81b95a55 (diff)
downloadinstadisc-abb2d3c67ddc132c4cc7ea435e13731527c32634.tar.gz
instadisc-abb2d3c67ddc132c4cc7ea435e13731527c32634.tar.bz2
instadisc-abb2d3c67ddc132c4cc7ea435e13731527c32634.zip
Series: Worked on ACP
Refs #53
Diffstat (limited to 'series/trunk/admin/mansub.php')
-rw-r--r--series/trunk/admin/mansub.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/series/trunk/admin/mansub.php b/series/trunk/admin/mansub.php new file mode 100644 index 0000000..358365f --- /dev/null +++ b/series/trunk/admin/mansub.php
@@ -0,0 +1,39 @@
1<?php
2
3/* InstaDisc Series - A Four Island Project */
4
5/**
6 * require_once() is used to ensure
7 * the ACP files are being called by
8 * admin.php instead of their actual
9 * locations admin/.
10 * The _once() part ensures no problem
11 * arises as includes/instadisc.php has
12 * already been included from admin.php
13 */
14require_once('includes/instadisc.php');
15
16if (!isset($_SESSION['username']))
17{
18 header('Location: index.php');
19}
20
21$template = new FITemplate('mansub');
22$template->add('SITENAME', instaDisc_getConfig('siteName'));
23
24if (instaDisc_isAdmin($_SESSION['username']))
25{
26 $subs = instaDisc_getAllSubscriptions();
27} else {
28 $subs = instaDisc_listSubscriptions($_SESSION['username']);
29}
30$i=0;
31for ($i=0;isset($subs[$i]);$i++)
32{
33 $template->adds_block('SUBSCRIPTION', array( 'IDENTITY' => $subs['identity'],
34 'ID' => $subs['id']));
35}
36
37$template->display();
38
39?>