From 6f99c72bed432313f83d3d3fe3010cec554bdd98 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Mon, 17 May 2010 21:20:35 +0200 Subject: [PATCH] Minor - Adding YouShouldCreateAGroup get_lang message --- main/social/groups.php | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/main/social/groups.php b/main/social/groups.php index b5625ff9e5..b0f67d3171 100755 --- a/main/social/groups.php +++ b/main/social/groups.php @@ -142,7 +142,7 @@ if (isset($_GET['view']) && in_array($_GET['view'],$allowed_views)) { } } else { $interbreadcrumb[]= array ('url' =>'groups.php','name' => get_lang('Groups')); - $interbreadcrumb[]= array ('url' =>'#','name' => get_lang('MessageList')); + $interbreadcrumb[]= array ('url' =>'#','name' => get_lang('GroupList')); } Display :: display_header($tool_name, 'Groups'); @@ -431,31 +431,54 @@ if ($group_id != 0 ) { } } + + // display groups (newest, mygroups, pop) echo '
'; if (isset($_GET['view']) && in_array($_GET['view'],$allowed_views)) { $view_group = $_GET['view']; + switch ($view_group) { case 'mygroups' : if (count($grid_my_groups) > 0) { echo ''; - Display::display_sortable_grid('mygroups', array(), $grid_my_groups, array('hide_navigation'=>true, 'per_page' => 2), $query_vars, false, array(true, true, true,false)); + Display::display_sortable_grid('mygroups', array(), $grid_my_groups, array('hide_navigation'=>true, 'per_page' => 2), $query_vars, false, array(true, true, true,false)); } + + if (api_is_platform_admin() || api_get_setting('allow_students_to_create_groups_in_social') == 'true') { + if (empty($grid_my_groups)) { + echo ''.get_lang('YouShouldCreateAGroup').''; + } + } + break; case 'newest' : if (count($grid_newest_groups) > 0) { echo ''; Display::display_sortable_grid('newest', array(), $grid_newest_groups, array('hide_navigation'=>true, 'per_page' => 100), $query_vars, false, array(true, true, true,false)); } + + if (api_is_platform_admin() || api_get_setting('allow_students_to_create_groups_in_social') == 'true') { + if (empty($grid_newest_groups)) { + echo ''.get_lang('YouShouldCreateAGroup').''; + } + } break; default : if (count($grid_pop_groups) > 0) { echo ''; Display::display_sortable_grid('popular', array(), $grid_pop_groups, array('hide_navigation'=>true, 'per_page' => 100), $query_vars, false, array(true, true, true,true,true)); } + + if (api_is_platform_admin() || api_get_setting('allow_students_to_create_groups_in_social') == 'true') { + if (empty($grid_pop_groups)) { + echo ''.get_lang('YouShouldCreateAGroup').''; + } + } + break; } - } else { + } else { if (count($grid_my_groups) > 0) { echo ''; Display::display_sortable_grid('mygroups', array(), $grid_my_groups, array('hide_navigation'=>true, 'per_page' => 2), $query_vars, false, array(true, true, true,false)); @@ -468,6 +491,13 @@ if ($group_id != 0 ) { echo ''; Display::display_sortable_grid('popular', array(), $grid_pop_groups, array('hide_navigation'=>true, 'per_page' => 100), $query_vars, false, array(true, true, true,true,true)); } + + if (api_is_platform_admin() || api_get_setting('allow_students_to_create_groups_in_social') == 'true') { + if (empty($grid_my_groups) && empty($grid_newest_groups) && empty($grid_pop_groups) ) { + echo ''.get_lang('YouShouldCreateAGroup').''; + } + } + } echo '
';