diff options
Diffstat (limited to 'mod/dashboard/start.php')
-rw-r--r-- | mod/dashboard/start.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mod/dashboard/start.php b/mod/dashboard/start.php index 9de1ee4af..69572bd32 100644 --- a/mod/dashboard/start.php +++ b/mod/dashboard/start.php @@ -17,6 +17,8 @@ function dashboard_init() { 'priority' => 450, 'section' => 'alt', )); + + elgg_register_plugin_hook_handler('get_list', 'default_widgets', 'dashboard_default_widgets'); } function dashboard_page_handler() { @@ -42,3 +44,27 @@ function dashboard_page_handler() { echo elgg_view_page($title, $body); } + + +/** + * Register user dashboard with default widgets + * + * @param unknown_type $hook + * @param unknown_type $type + * @param unknown_type $return + * @param unknown_type $params + * @return array + */ +function dashboard_default_widgets($hook, $type, $return, $params) { + $return[] = array( + 'name' => elgg_echo('dashboard'), + 'widget_context' => 'dashboard', + 'widget_columns' => 3, + + 'event' => 'create', + 'entity_type' => 'user', + 'entity_subtype' => ELGG_ENTITIES_ANY_VALUE, + ); + + return $return; +}
\ No newline at end of file |