api_get_path(WEB_CODE_PATH).'group/group.php?'.api_get_cidreq(), 'name' => get_lang('Groups'), ); $interbreadcrumb[] = array( 'url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?gidReq='.$group_id, 'name' => get_lang('GroupSpace').' '.$group_properties['name'] ); } $interbreadcrumb[] = array( 'url' => api_get_path(WEB_CODE_PATH).'work/work.php?'.api_get_cidreq(), 'name' => get_lang('StudentPublications') ); $interbreadcrumb[] = array( 'url' => api_get_path(WEB_CODE_PATH).'work/work_list_all.php?'.api_get_cidreq().'&id='.$workId, 'name' => $my_folder_data['title'] ); if (isset($_GET['list']) && $_GET['list'] == 'with') { $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('UsersWithTask')); } else { $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('UsersWithoutTask')); } Display::display_header(null); echo '
'; echo ''. Display::return_icon('back.png', get_lang('BackToWorksList'), '', ICON_SIZE_MEDIUM).''; $output = ''; if (!empty($workId)) { if (empty($_GET['list']) or Security::remove_XSS($_GET['list']) == 'with') { $output .= ''. Display::return_icon('exercice_uncheck.png', get_lang('ViewUsersWithoutTask'), '', ICON_SIZE_MEDIUM).""; } else { if (!isset($_GET['action']) || (isset($_GET['action']) && $_GET['action'] != 'send_mail')) { $output .= ''. Display::return_icon('mail_send.png', get_lang('ReminderMessage'), '', ICON_SIZE_MEDIUM).""; } else { $output .= Display::return_icon('mail_send_na.png', get_lang('ReminderMessage'), '', ICON_SIZE_MEDIUM); } } } echo $output; echo '
'; display_list_users_without_publication($workId);