about summary refs log tree commit diff stats
path: root/series/core/trunk/index.php
blob: 9d8cb056738b29694a3b89f1550db047517ed543 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

/* InstaDisc Series - A Four Island Project */

include('includes/instadisc.php');

$template = new FITemplate('index');
$template->add('SITENAME', instaDisc_getConfig('siteName'));

$subs = instaDisc_getAllSubscriptions();
foreach ($subs as $name => $value)
{
	if ($value['personal'] == 'false')
	{
		$template->adds_block('SUBSCRIPTIONS', array(	'IDENTITY' => $value['identity'],
								'TITLE' => $value['title'],
								'CATEGORY' => $value['category']));
	}
}

$template->display();

?>