You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.0 KiB
122 lines
4.0 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
use Chamilo\CoreBundle\Component\Utils\ActionIcon;
|
|
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
$current_course_tool = TOOL_STUDENTPUBLICATION;
|
|
|
|
api_protect_course_script(true);
|
|
$this_section = SECTION_COURSES;
|
|
$workId = isset($_GET['id']) ? (int) ($_GET['id']) : null;
|
|
$group_id = api_get_group_id();
|
|
$user_id = api_get_user_id();
|
|
|
|
if (empty($workId)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$my_folder_data = get_work_data_by_id($workId);
|
|
if (empty($my_folder_data)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
if (!api_is_allowed_to_edit(null, true)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
// User with no works
|
|
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'list';
|
|
|
|
switch ($action) {
|
|
case 'send_mail':
|
|
$check = Security::check_token('get');
|
|
if ($check) {
|
|
$mails_sent_to = send_reminder_users_without_publication(
|
|
$my_folder_data
|
|
);
|
|
|
|
if (empty($mails_sent_to)) {
|
|
Display::addFlash(Display::return_message(get_lang('No results found'), 'warning'));
|
|
} else {
|
|
Display::addFlash(Display::return_message(
|
|
get_lang('Your message has been sent.').' '.implode(', ', $mails_sent_to),
|
|
'success'
|
|
));
|
|
}
|
|
Security::clear_token();
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
$token = Security::get_token();
|
|
|
|
if (!empty($group_id)) {
|
|
$group_properties = api_get_group_entity($group_id);
|
|
$show_work = false;
|
|
|
|
if (api_is_allowed_to_edit(false, true)) {
|
|
$show_work = true;
|
|
} else {
|
|
// you are not a teacher
|
|
$show_work = GroupManager::userHasAccess(
|
|
$user_id,
|
|
$group_properties,
|
|
GroupManager::GROUP_TOOL_WORK
|
|
);
|
|
}
|
|
|
|
if (!$show_work) {
|
|
api_not_allowed();
|
|
}
|
|
|
|
$interbreadcrumb[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'group/group.php?'.api_get_cidreq(),
|
|
'name' => get_lang('Groups'),
|
|
];
|
|
$interbreadcrumb[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?gid='.$group_id,
|
|
'name' => get_lang('Group area').' '.$group_properties->getTitle(),
|
|
];
|
|
}
|
|
|
|
$interbreadcrumb[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'work/work.php?'.api_get_cidreq(),
|
|
'name' => get_lang('Assignments'),
|
|
];
|
|
$interbreadcrumb[] = [
|
|
'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']) && 'with' === $_GET['list']) {
|
|
$interbreadcrumb[] = ['url' => '#', 'name' => get_lang('Learners who sent their work')];
|
|
} else {
|
|
$interbreadcrumb[] = ['url' => '#', 'name' => get_lang('Learners who didn\'t send their work')];
|
|
}
|
|
|
|
Display::display_header(null);
|
|
|
|
$actions = '<a href="'.api_get_path(WEB_CODE_PATH).'work/work_list_all.php?id='.$workId.'&'.api_get_cidreq().'">'.
|
|
Display::getMdiIcon(ActionIcon::BACK, 'ch-tool-icon', null, ICON_SIZE_MEDIUM, get_lang('Back to Assignments list')).'</a>';
|
|
if (!empty($workId)) {
|
|
if (empty($_GET['list']) or 'with' == Security::remove_XSS($_GET['list'])) {
|
|
$actions .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&id='.$workId.'&list=without">'.
|
|
Display::getMdiIcon(ActionIcon::GRADE, 'ch-tool-icon-disabled', null, ICON_SIZE_MEDIUM, get_lang('ViewLearners who didn\'t send their work')).
|
|
'</a>';
|
|
} else {
|
|
if (!isset($_GET['action']) || (isset($_GET['action']) && 'send_mail' != $_GET['action'])) {
|
|
$actions .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&id='.$workId.'&list=without&action=send_mail&sec_token='.$token.'">'.
|
|
Display::getMdiIcon(ActionIcon::SEND_MESSAGE, 'ch-tool-icon', null, ICON_SIZE_MEDIUM, get_lang('Send a reminder')).
|
|
'</a>';
|
|
} else {
|
|
$actions .= Display::getMdiIcon(ActionIcon::SEND_MESSAGE, 'ch-tool-icon-disabled', null, ICON_SIZE_MEDIUM, get_lang('Send a reminder'));
|
|
}
|
|
}
|
|
}
|
|
|
|
echo Display::toolbarAction('toolbar', [$actions]);
|
|
|
|
display_list_users_without_publication($workId);
|
|
|