diff options
Diffstat (limited to 'mod/river/start.php')
-rw-r--r-- | mod/river/start.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mod/river/start.php b/mod/river/start.php new file mode 100644 index 000000000..a745bc699 --- /dev/null +++ b/mod/river/start.php @@ -0,0 +1,23 @@ +<?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() + { + add_widget_type('river_widget',sprintf(elgg_echo('river:widget:title'), 'Your'), elgg_echo('river:widget:description')); + add_widget_type('river_widget_friends',sprintf(elgg_echo('river:widget:title:friends'), 'Your'), elgg_echo('river:widget:description:friends')); + } + + register_elgg_event_handler('init','system','river_init'); +?>
\ No newline at end of file |