summaryrefslogtreecommitdiff
path: root/utils/modules.php
blob: 6983d6b27ecc1a6e17fc7fd5f9356f913a50060d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

// Module includes
include_once($UTIL_DIR . "/news.php");
include_once($UTIL_DIR . "/events.php");

$modules = array();

$newsmodule = new News($DATA_DIR . "/news.xml");
$eventsmodule = new Events($DATA_DIR . "/events.xml");

$modules["news"] = $newsmodule;
$modules["events_coming"] = $eventsmodule;
$modules["events_old"] = $eventsmodule;

?>