'.$return_information['message']);
display_addcategory_form($_POST['category_name'], $_POST['edit_id'], $postAction);
}
}
// Move a File
if (($action == 'movesent' OR $action == 'movereceived') AND isset($_GET['move_id'])) {
if (api_get_session_id() != 0 && !api_is_allowed_to_session_edit(false, true)) {
api_not_allowed();
}
display_move_form(
str_replace('move', '', $action),
$_GET['move_id'],
get_dropbox_categories(str_replace('move', '', $action)),
$sort_params,
$viewReceivedCategory,
$viewSentCategory,
$view
);
}
if (isset($_POST['do_move'])) {
Display :: display_confirmation_message(store_move($_POST['id'], $_POST['move_target'], $_POST['part']));
}
// Delete a file
if (($action == 'deletereceivedfile' OR $action == 'deletesentfile') AND isset($_GET['id']) AND is_numeric($_GET['id'])) {
if (api_get_session_id() != 0 && !api_is_allowed_to_session_edit(false, true)) {
api_not_allowed();
}
$dropboxfile = new Dropbox_Person(api_get_user_id(), $is_courseAdmin, $is_courseTutor);
if ($action == 'deletereceivedfile') {
$dropboxfile->deleteReceivedWork($_GET['id']);
$message = get_lang('ReceivedFileDeleted');
}
if ($action == 'deletesentfile') {
$dropboxfile->deleteSentWork($_GET['id']);
$message = get_lang('SentFileDeleted');
}
Display :: display_confirmation_message($message);
}
// Delete a category
if (($action == 'deletereceivedcategory' OR $action == 'deletesentcategory') AND isset($_GET['id']) AND is_numeric($_GET['id'])) {
if (api_get_session_id() != 0 && !api_is_allowed_to_session_edit(false, true)) {
api_not_allowed();
}
$message = delete_category($action, $_GET['id']);
Display :: display_confirmation_message($message);
}
// Do an action on multiple files
// only the download has is handled separately in dropbox_init_inc.php because this has to be done before the headers are sent
// (which also happens in dropbox_init.inc.php
if (!isset($_POST['feedback']) && (
strstr($postAction, 'move_received') OR
strstr($postAction, 'move_sent') OR
$postAction == 'delete_received' OR
$postAction == 'download_received' OR
$postAction == 'delete_sent' OR
$postAction == 'download_sent')
) {
$display_message = handle_multiple_actions();
Display :: display_normal_message($display_message);
}
// Store Feedback
if (isset($_POST['feedback'])) {
if (api_get_session_id() != 0 && !api_is_allowed_to_session_edit(false, true)) {
api_not_allowed();
}
$check = Security::check_token();
if ($check) {
$display_message = store_feedback();
Display :: display_normal_message($display_message);
Security::check_token();
}
}
// Error Message
if (isset($_GET['error']) AND !empty($_GET['error'])) {
Display :: display_normal_message(get_lang($_GET['error']));
}
$dropbox_data_sent = array();
$movelist = array();
$dropbox_data_recieved = array();
if ($action != 'add') {
// Getting all the categories in the dropbox for the given user
$dropbox_categories = get_dropbox_categories();
// Greating the arrays with the categories for the received files and for the sent files
foreach ($dropbox_categories as $category) {
if ($category['received'] == '1') {
$dropbox_received_category[] = $category;
}
if ($category['sent'] == '1') {
$dropbox_sent_category[] = $category;
}
}
// ACTIONS
if ($view == 'received' OR !$dropbox_cnf['sent_received_tabs']) {
//echo '
'.get_lang('ReceivedFiles').'
';
// This is for the categories
if (isset($viewReceivedCategory) AND $viewReceivedCategory != '') {
$view_dropbox_category_received = $viewReceivedCategory;
} else {
$view_dropbox_category_received = 0;
}
/* Menu Received */
if (api_get_session_id() == 0) {
echo '';
} else {
if (api_is_allowed_to_session_edit(false, true)) {
echo '';
}
}
}
if (!$view OR $view == 'sent' OR !$dropbox_cnf['sent_received_tabs']) {
// This is for the categories
if (isset($viewSentCategory) AND $viewSentCategory != '') {
$view_dropbox_category_sent = $viewSentCategory;
} else {
$view_dropbox_category_sent = 0;
}
/* Menu Sent */
if (api_get_session_id() == 0) {
echo '';
} else {
if (api_is_allowed_to_session_edit(false, true)) {
echo '';
}
}
}
/* THE MENU TABS */
if ($dropbox_cnf['sent_received_tabs']) {
?>
1: columns that we will show, 0:columns that will be hide
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
if (api_get_session_id() == 0) {
$column_show[] = 1;
} elseif (api_is_allowed_to_session_edit(false, true)) {
$column_show[] = 1;
}
$column_show[] = 0;
// Here we change the way how the colums are going to be sort
// in this case the the column of LastResent ( 4th element in $column_header) we will be order like the column RealDate
// because in the column RealDate we have the days in a correct format "2008-03-12 10:35:48"
$column_order[3] = 8;
$column_order[5] = 7;
// The content of the sortable table = the received files
foreach ($dropbox_person -> receivedWork as $dropbox_file) {
$dropbox_file_data = array();
if ($view_dropbox_category_received == $dropbox_file->category) {
// we only display the files that are in the category that we are in.
$dropbox_file_data[] = $dropbox_file->id;
if (!is_array($_SESSION['_seen'][$_course['id']][TOOL_DROPBOX])) {
$_SESSION['_seen'][$_course['id']][TOOL_DROPBOX] = array();
}
// New icon
$new_icon = '';
if ($dropbox_file->last_upload_date > $last_access AND !in_array($dropbox_file->id, $_SESSION['_seen'][$_course['id']][TOOL_DROPBOX])) {
$new_icon = ' '.Display::return_icon('new_dropbox_message.png', get_lang('New'),'',ICON_SIZE_SMALL);
}
$link_open = '';
$dropbox_file_data[] = $link_open.build_document_icon_tag('file', $dropbox_file->title).'';
$dropbox_file_data[] = ''.Display::return_icon('save.png', get_lang('Download'), array('style' => 'float:right;'),ICON_SIZE_SMALL).''.$link_open.$dropbox_file->title.''.$new_icon.'
'.$dropbox_file->description;
$file_size = $dropbox_file->filesize;
$dropbox_file_data[] = format_file_size($file_size);
$dropbox_file_data[] = $dropbox_file->author;
//$dropbox_file_data[] = $dropbox_file->description;
$last_upload_date = api_get_local_time($dropbox_file->last_upload_date);
$dropbox_file_data[] = date_to_str_ago($last_upload_date).'
'.api_format_date($last_upload_date).'';
$action_icons = check_number_feedback($dropbox_file->id, $number_feedback).' '.get_lang('Feedback').'
'.Display::return_icon('discuss.png', get_lang('Comment'),'',ICON_SIZE_SMALL).'
'.Display::return_icon('move.png', get_lang('Move'),'',ICON_SIZE_SMALL).'
'.
Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'';
// This is a hack to have an additional row in a sortable table
if ($action == 'viewfeedback' AND isset($_GET['id']) and is_numeric($_GET['id']) AND $dropbox_file->id == $_GET['id']) {
$action_icons .= ""; // Ending the normal row of the sortable table
$action_icons .= '".get_lang('CloseFeedback')." | ".feedback($dropbox_file->feedback2)." |
";
}
if (api_get_session_id() == 0) {
$dropbox_file_data[] = $action_icons;
} elseif (api_is_allowed_to_session_edit(false, true)) {
$dropbox_file_data[] = $action_icons;
}
$action_icons = '';
$dropbox_file_data[] = $last_upload_date;
$dropbox_file_data[] = $file_size;
$dropbox_data_recieved[] = $dropbox_file_data;
}
}
// The content of the sortable table = the categories (if we are not in the root)
if ($view_dropbox_category_received == 0) {
foreach ($dropbox_categories as $category) {
/* Note: This can probably be shortened since the categories
for the received files are already in the
$dropbox_received_category array;*/
$dropbox_category_data = array();
if ($category['received'] == '1') {
$movelist[$category['cat_id']] = $category['cat_name'];
// This is where the checkbox icon for the files appear
$dropbox_category_data[] = $category['cat_id'];
// The icon of the category
$link_open = '';
$dropbox_category_data[] = $link_open.build_document_icon_tag('folder', $category['cat_name']).'';
$dropbox_category_data[] = ''.Display::return_icon('save_pack.png', get_lang('Save'), array('style' => 'float:right;'),ICON_SIZE_SMALL).''.$link_open.$category['cat_name'].'';
$dropbox_category_data[] = '';
$dropbox_category_data[] = '';
$dropbox_category_data[] = '';
$dropbox_category_data[] = ''.Display::return_icon('edit.png',get_lang('Edit'),'',ICON_SIZE_SMALL).'
'.Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'';
}
if (is_array($dropbox_category_data) && count($dropbox_category_data) > 0) {
$dropbox_data_recieved[] = $dropbox_category_data;
}
}
}
// Displaying the table
$additional_get_parameters = array('view' => $view, 'view_received_category' => $viewReceivedCategory, 'view_sent_category' => $viewSentCategory);
$selectlist = array(
'delete_received' => get_lang('Delete'),
'download_received' => get_lang('Download')
);
if (is_array($movelist)) {
foreach ($movelist as $catid => $catname){
$selectlist['move_received_'.$catid] = get_lang('Move') . '->'. Security::remove_XSS($catname);
}
}
if (api_get_session_id() != 0 && !api_is_allowed_to_session_edit(false, true)) {
$selectlist = array();
}
Display::display_sortable_config_table(
'dropbox',
$column_header,
$dropbox_data_recieved,
$sorting_options,
$paging_options,
$additional_get_parameters,
$column_show,
$column_order,
$selectlist
);
}
/* SENT FILES */
if (!$view OR $view == 'sent' OR !$dropbox_cnf['sent_received_tabs']) {
// This is for the categories
if (isset($viewSentCategory) AND $viewSentCategory != '') {
$view_dropbox_category_sent = $viewSentCategory;
} else {
$view_dropbox_category_sent = 0;
}
// Object initialisation
$dropbox_person = new Dropbox_Person(api_get_user_id(), $is_courseAdmin, $is_courseTutor);
// Constructing the array that contains the total number of feedback messages per document.
$number_feedback = get_total_number_feedback();
// Sorting and paging options
$sorting_options = array();
$paging_options = array();
// The headers of the sortable tables
$column_header = array();
$column_header[] = array('', false, '');
$column_header[] = array(get_lang('Type'), true, 'style="width:40px"', 'style="text-align:center"');
$column_header[] = array(get_lang('SentTitle'), true, '');
$column_header[] = array(get_lang('Size'), true, '');
$column_header[] = array(get_lang('SentTo'), true, '');
$column_header[] = array(get_lang('LastResent'), true, '');
if (api_get_session_id() == 0) {
$column_header[] = array(get_lang('Modify'), false, '', 'nowrap style="text-align: right"');
} elseif (api_is_allowed_to_session_edit(false, true)) {
$column_header[] = array(get_lang('Modify'), false, '', 'nowrap style="text-align: right"');
}
$column_header[] = array('RealDate', true);
$column_header[] = array('RealSize', true);
$column_show = array();
$column_order = array();
// An array with the setting of the columns -> 1: columns that we will show, 0:columns that will be hide
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
$column_show[] = 1;
if (api_get_session_id() == 0) {
$column_show[] = 1;
} elseif (api_is_allowed_to_session_edit(false, true)) {
$column_show[] = 1;
}
$column_show[] = 0;
// Here we change the way how the colums are going to be sort
// in this case the the column of LastResent ( 4th element in $column_header) we will be order like the column RealDate
// because in the column RealDate we have the days in a correct format "2008-03-12 10:35:48"
$column_order[3] = 8;
$column_order[5] = 7;
// The content of the sortable table = the received files
foreach ($dropbox_person->sentWork as $dropbox_file) {
$dropbox_file_data = array();
if ($view_dropbox_category_sent == $dropbox_file->category) {
$dropbox_file_data[] = $dropbox_file->id;
$link_open = '';
$dropbox_file_data[] = $link_open.build_document_icon_tag('file', $dropbox_file->title).'';
$dropbox_file_data[] = ''.Display::return_icon('save.png', get_lang('Save'), array('style' => 'float:right;'),ICON_SIZE_SMALL).''.$link_open.$dropbox_file->title.'
'.$dropbox_file->description;
$file_size = $dropbox_file->filesize;
$dropbox_file_data[] = format_file_size($file_size);
$receivers_celldata = null;
foreach ($dropbox_file->recipients as $recipient) {
$receivers_celldata = display_user_link_work($recipient['user_id'], $recipient['name']).', '.$receivers_celldata;
}
$receivers_celldata = trim(trim($receivers_celldata), ','); // Removing the trailing comma.
$dropbox_file_data[] = $receivers_celldata;
$last_upload_date = api_get_local_time($dropbox_file->last_upload_date);
$dropbox_file_data[] = date_to_str_ago($last_upload_date).'
'.api_format_date($last_upload_date).'';
//$dropbox_file_data[] = $dropbox_file->author;
$receivers_celldata = '';
$action_icons = check_number_feedback($dropbox_file->id, $number_feedback).' '.get_lang('Feedback').'
'.Display::return_icon('discuss.png', get_lang('Comment'),'',ICON_SIZE_SMALL).'
'.Display::return_icon('move.png', get_lang('Move'),'',ICON_SIZE_SMALL).'
'.Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'';
// This is a hack to have an additional row in a sortable table
if ($action == 'viewfeedback' && isset($_GET['id']) && is_numeric($_GET['id']) && $dropbox_file->id == $_GET['id']) {
$action_icons .= "\n"; // ending the normal row of the sortable table
$action_icons .= "";
$action_icons .= "".get_lang('CloseFeedback')."";
$action_icons .= " | ".feedback($dropbox_file->feedback2)." |
";
}
$dropbox_file_data[] = $action_icons;
$dropbox_file_data[] = $last_upload_date;
$dropbox_file_data[] = $file_size;
$action_icons = '';
$dropbox_data_sent[] = $dropbox_file_data;
}
}
$moveList = array();
// The content of the sortable table = the categories (if we are not in the root)
if ($view_dropbox_category_sent == 0) {
foreach ($dropbox_categories as $category) {
$dropbox_category_data = array();
if ($category['sent'] == '1') {
$moveList[$category['cat_id']] = $category['cat_name'];
$dropbox_category_data[] = $category['cat_id']; // This is where the checkbox icon for the files appear.
$link_open = '';
$dropbox_category_data[] = $link_open.build_document_icon_tag('folder', Security::remove_XSS($category['cat_name'])).'';
$dropbox_category_data[] = ''.Display::return_icon('save_pack.png', get_lang('Save'), array('style' => 'float:right;'),ICON_SIZE_SMALL).''.$link_open.Security::remove_XSS($category['cat_name']).'';
//$dropbox_category_data[] = '';
$dropbox_category_data[] = '';
//$dropbox_category_data[] = '';
$dropbox_category_data[] = '';
$dropbox_category_data[] = '';
$dropbox_category_data[] = ''.
Display::return_icon('edit.png', get_lang('Edit'),'',ICON_SIZE_SMALL).'
'.
Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'';
}
if (is_array($dropbox_category_data) && count($dropbox_category_data) > 0) {
$dropbox_data_sent[] = $dropbox_category_data;
}
}
}
// Displaying the table
$additional_get_parameters = array(
'view' => $view,
'view_received_category' => $viewReceivedCategory,
'view_sent_category' => $viewSentCategory
);
$selectlist = array(
'delete_received' => get_lang('Delete'),
'download_received' => get_lang('Download')
);
if (!empty($moveList)) {
foreach ($moveList as $catid => $catname) {
$selectlist['move_sent_'.$catid] = get_lang('Move') . '->'. Security::remove_XSS($catname);
}
}
if (api_get_session_id() != 0 && !api_is_allowed_to_session_edit(false, true)) {
$selectlist = array('download_received' => get_lang('Download'));
}
Display::display_sortable_config_table(
'dropbox',
$column_header,
$dropbox_data_sent,
$sorting_options,
$paging_options,
$additional_get_parameters,
$column_show,
$column_order,
$selectlist
);
}
}
Display::display_footer();