diff --git a/main/document/document.inc.php b/main/document/document.inc.php index 1e12b1d14c..9e34010e2e 100755 --- a/main/document/document.inc.php +++ b/main/document/document.inc.php @@ -173,7 +173,12 @@ function create_document_link($www, $title, $path, $filetype, $size, $visibility } else { $force_download_html = ($size==0)?'':''.Display::return_icon($forcedownload_icon, get_lang('Download'), array('height'=>'16', 'width' => '16')).''; } - return ''.$title.''.$force_download_html; + //copy files to users myfiles + $copy_myfiles_link = ($filetype == 'file') ? api_get_self().'?'.api_get_cidreq().'&action=copytomyfiles&id='.$url_path.$req_gid :api_get_self().'?'.api_get_cidreq(); + $copy_myfiles_icon = ($filetype == 'file') ? 'briefcase.png' : ''; + $copy_to_myfiles=''.Display::return_icon($copy_myfiles_icon, get_lang('CopyToMyFiles'), array('height'=>'16', 'width' => '16')).' '; + return ''.$title.''.$force_download_html.$copy_to_myfiles; + //end copy files to users myfiles } else { if(preg_match('/shared_folder/', urldecode($url)) && preg_match('/shared_folder$/', urldecode($url))==false && preg_match('/shared_folder_session_'.$current_session_id.'$/', urldecode($url))==false){ return ''.build_document_icon_tag($filetype, $tooltip_title).Display::return_icon('shared.png', get_lang('ResourceShared'), array('hspace' => '5', 'align' => 'middle', 'height' => 22, 'width' => 22)).''; diff --git a/main/document/document.php b/main/document/document.php index 60cd21e414..ab1253f033 100755 --- a/main/document/document.php +++ b/main/document/document.php @@ -317,6 +317,26 @@ if (isset($_GET['action']) && $_GET['action'] == 'downloadfolder' && (api_get_se } +// Copy a file to general my files user's +if (isset($_GET['action']) && $_GET['action'] == 'copytomyfiles' && (api_get_setting('students_copy_folders') == 'true')) { + + $clean_get_id = Security::remove_XSS($_GET['id']); + $user_folder = api_get_path(SYS_CODE_PATH).'upload/users/'.api_get_user_id().'/my_files/'; + if (!file_exists($user_folder)) { + @mkdir($user_folder, $permissions_for_new_directories, true); + } + + $file = $sys_course_path.$_course['path'].'/document'.$clean_get_id; + $copyfile = $user_folder.basename($clean_get_id); + if (file_exists($copyfile)) { + //Display::display_error_message(get_lang('Overwrite. Warning already copy'));//TODO: fix message and show acept or cancel + } + if (!copy($file, $copyfile)) { + //Display::display_error_message(get_lang('Copy Failled'));//TODO: fix message + } +} + + // Slideshow inititalisation $_SESSION['image_files_only'] = ''; $image_files_only = ''; diff --git a/main/img/briefcase.png b/main/img/briefcase.png new file mode 100644 index 0000000000..e620d5539d Binary files /dev/null and b/main/img/briefcase.png differ diff --git a/main/inc/lib/fckeditor/editor/plugins/ajaxfilemanager/ajaxfilemanager.php b/main/inc/lib/fckeditor/editor/plugins/ajaxfilemanager/ajaxfilemanager.php index 8cce7eb160..08595767d1 100755 --- a/main/inc/lib/fckeditor/editor/plugins/ajaxfilemanager/ajaxfilemanager.php +++ b/main/inc/lib/fckeditor/editor/plugins/ajaxfilemanager/ajaxfilemanager.php @@ -77,14 +77,18 @@ --> '; //jQuery +$htmlHeadXtra[] = ''; +$htmlHeadXtra[] = ''; + +$htmlHeadXtra[] = ' +'; +api_block_anonymous_users(); + +Display :: display_header($tool_name, 'Groups'); + +// easy links +if (is_array($_GET) && count($_GET)>0) { + foreach($_GET as $key => $value) { + switch ($key) { + case 'accept': + $user_role = GroupPortalManager::get_user_group_role(api_get_user_id(), $value); + if (in_array($user_role , array(GROUP_USER_PERMISSION_PENDING_INVITATION_SENT_BY_USER,GROUP_USER_PERMISSION_PENDING_INVITATION))) { + GroupPortalManager::update_user_role(api_get_user_id(), $value, GROUP_USER_PERMISSION_READER); + $show_message = get_lang('UserIsSubscribedToThisGroup'); + } elseif (in_array($user_role , array(GROUP_USER_PERMISSION_READER, GROUP_USER_PERMISSION_ADMIN, GROUP_USER_PERMISSION_MODERATOR))) { + $show_message = get_lang('UserIsAlreadySubscribedToThisGroup'); + } else { + $show_message = get_lang('UserIsNotSubscribedToThisGroup'); + } + break 2; + case 'deny': + // delete invitation + GroupPortalManager::delete_user_rel_group(api_get_user_id(), $value); + $show_message = get_lang('GroupInvitationWasDeny'); + break 2; + } + } +} + +$language_variable = get_lang('PendingInvitations'); +$language_comment = get_lang('SocialInvitesComment'); + +echo '
'; + + + +Display::display_footer(); +?>