blob: 7d3916cc26058550abf3674873e9a51ec06de054 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/* InstaDisc Series - A Four Island Project */
include('includes/instadisc.php');
$template = new FITemplate('index');
$subs = instaDisc_getAllSubscriptions();
foreach ($subs as $name => $value)
{
if ($value['personal'] == 'false')
{
$template->adds_block('SUBSCRIPTION', array( 'IDENTITY' => $name,
'TITLE' => $value['title'],
'CATEGORY' => $value['category']));
}
}
$template->display();
?>
|