1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8//this script may only be included - so its better to die if called directly.
9if (strpos($_SERVER["SCRIPT_NAME"], basename(__FILE__)) !== false) {
10	header("location: index.php");
11	exit;
12}
13
14/**
15 * @return array
16 */
17function module_rsslist_info()
18{
19	return [
20		'name' => tra('News Feeds'),
21		'description' => tra('List of feeds available on this site.'),
22		'prefs' => [],
23	];
24}
25
26/**
27 * @param $mod_reference
28 * @param $module_params
29 */
30function module_rsslist($mod_reference, $module_params)
31{
32}
33