aboutsummaryrefslogtreecommitdiff
path: root/mod/river/start.php
blob: 5a7003e7bda94cea0d3bae6228277385462acccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
	/**
	 * Elgg river plugin.
	 * This function 
	 * 
	 * @package ElggRiver
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Marcus Povey
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.com/
	 */

	/**
	 * Initialise the river system and add a widget.
	 */
	function river_init() 
	{
		register_plugin_manifest_basic("Marcus Povey", elgg_echo('river:manifest:description'), "1.0", "http://www.elgg.org", "(C) Curverider 2008");
		
		add_widget_type('river_widget',elgg_echo('river:widget:title'), elgg_echo('river:widget:description'));
		add_widget_type('river_widget_friends',elgg_echo('river:widget:title:friends'), elgg_echo('river:widget:description:friends'));
	}

	register_elgg_event_handler('init','system','river_init');
?>