about summary refs log tree commit diff stats
path: root/series/trunk/index.php
blob: 76eb9ff31dbc1a148a47d4fa7dd34333b8f2c4cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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)
{
	$template->adds_block('SUBSCRIPTIONS', array(	'IDENTITY' => $value['identity'],
							'TITLE' => $value['title'],
							'CATEGORY' => $value['category']));
}

$template->display();

?>