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.
		
		
		
		
		
			
		
			
				
					
					
						
							293 lines
						
					
					
						
							8.8 KiB
						
					
					
				
			
		
		
	
	
							293 lines
						
					
					
						
							8.8 KiB
						
					
					
				<?php
 | 
						|
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
 | 
						|
use Chamilo\CourseBundle\Entity\CStudentPublication;
 | 
						|
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;
 | 
						|
$courseInfo = api_get_course_info();
 | 
						|
if (empty($workId) || empty($courseInfo)) {
 | 
						|
    api_not_allowed(true);
 | 
						|
}
 | 
						|
$course = api_get_course_entity();
 | 
						|
 | 
						|
// Student publications are saved with the iid in a LP
 | 
						|
$origin = api_get_origin();
 | 
						|
if ('learnpath' === $origin) {
 | 
						|
    $em = Database::getManager();
 | 
						|
    /** @var CStudentPublication $work */
 | 
						|
    $work = $em->getRepository(CStudentPublication::class)->find($workId);
 | 
						|
    if ($work) {
 | 
						|
        $workId = $work->getIid();
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
protectWork($courseInfo, $workId);
 | 
						|
 | 
						|
$my_folder_data = get_work_data_by_id($workId);
 | 
						|
$work_data = get_work_assignment_by_id($workId);
 | 
						|
$tool_name = get_lang('Assignments');
 | 
						|
 | 
						|
$group_id = api_get_group_id();
 | 
						|
 | 
						|
$htmlHeadXtra[] = api_get_jqgrid_js();
 | 
						|
$url_dir = api_get_path(WEB_CODE_PATH).'work/work.php?'.api_get_cidreq();
 | 
						|
 | 
						|
if (!empty($group_id)) {
 | 
						|
    $group = api_get_group_entity($group_id);
 | 
						|
    $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?'.api_get_cidreq(),
 | 
						|
        'name' => get_lang('Group area').' '.$group->getName(),
 | 
						|
    ];
 | 
						|
}
 | 
						|
 | 
						|
$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.php?'.api_get_cidreq().'&id='.$workId,
 | 
						|
    'name' => $my_folder_data['title'],
 | 
						|
];
 | 
						|
 | 
						|
$documentsAddedInWork = getAllDocumentsFromWorkToString($workId, $courseInfo);
 | 
						|
 | 
						|
$actionsLeft = '<a href="'.api_get_path(WEB_CODE_PATH).'work/work.php?'.api_get_cidreq().'">'.
 | 
						|
    Display::getMdiIcon(ActionIcon::BACK, 'ch-tool-icon', null, ICON_SIZE_MEDIUM, get_lang('Back to Assignments list')).'</a>';
 | 
						|
 | 
						|
$actionsRight = '';
 | 
						|
$onlyOnePublication = ('true' === api_get_setting('work.allow_only_one_student_publication_per_user'));
 | 
						|
if (api_is_allowed_to_session_edit(false, true) && !empty($workId) && !api_is_invitee()) {
 | 
						|
    $url = api_get_path(WEB_CODE_PATH).'work/upload.php?'.api_get_cidreq().'&id='.$workId;
 | 
						|
    $actionsRight = Display::url(
 | 
						|
        Display::getMdiIcon(
 | 
						|
            ' file-upload'
 | 
						|
        ).
 | 
						|
        get_lang('Upload my assignment'),
 | 
						|
        $url,
 | 
						|
        ['class' => 'btn btn--primary', 'id' => 'upload_button']
 | 
						|
    );
 | 
						|
}
 | 
						|
 | 
						|
if ($onlyOnePublication) {
 | 
						|
    $count = get_work_count_by_student(
 | 
						|
        api_get_user_id(),
 | 
						|
        $my_folder_data['id']
 | 
						|
    );
 | 
						|
 | 
						|
    if (!empty($count) && $count >= 1) {
 | 
						|
        $actionsRight = '';
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$tpl = new Template('');
 | 
						|
 | 
						|
$content = Display::toolbarAction('toolbar-work', [$actionsLeft, $actionsRight]);
 | 
						|
if (!empty($my_folder_data['title'])) {
 | 
						|
    $content .= Display::page_subheader($my_folder_data['title']);
 | 
						|
}
 | 
						|
 | 
						|
if (!empty($my_folder_data['description'])) {
 | 
						|
    $contentWork = Security::remove_XSS($my_folder_data['description']);
 | 
						|
    $content .= Display::panel($contentWork, get_lang('Description'));
 | 
						|
}
 | 
						|
 | 
						|
$extraFieldWorkData = workGetExtraFieldData($workId);
 | 
						|
 | 
						|
if (!empty($extraFieldWorkData)) {
 | 
						|
    $forceDownload = ('true' === api_get_setting('work.force_download_doc_before_upload_work'));
 | 
						|
    if ($forceDownload) {
 | 
						|
        // Force to download documents first.
 | 
						|
        $downloadDocumentsFirst = addslashes(get_lang('DownloadDocumentsFirst'));
 | 
						|
        $content .= "<script>
 | 
						|
            $(function() {
 | 
						|
                var clicked = 0;
 | 
						|
                $('#upload_button').on('click', function(e) {
 | 
						|
                    if (clicked == 0) {
 | 
						|
                        alert('$downloadDocumentsFirst');
 | 
						|
                        e.preventDefault();
 | 
						|
                    }
 | 
						|
                });
 | 
						|
 | 
						|
                $('.download_extra_field').on('click', function(e){
 | 
						|
                    clicked = 1;
 | 
						|
                });
 | 
						|
            });
 | 
						|
            </script>";
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$content .= $extraFieldWorkData;
 | 
						|
 | 
						|
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : null;
 | 
						|
$item_id = isset($_REQUEST['item_id']) ? (int) $_REQUEST['item_id'] : null;
 | 
						|
 | 
						|
switch ($action) {
 | 
						|
    case 'delete':
 | 
						|
        $fileDeleted = deleteWorkItem($item_id, $course);
 | 
						|
 | 
						|
        if (!$fileDeleted) {
 | 
						|
            Display::addFlash(Display::return_message(get_lang('You are not allowed to delete this document')));
 | 
						|
        } else {
 | 
						|
            Display::addFlash(Display::return_message(get_lang('The document has been deleted.')));
 | 
						|
        }
 | 
						|
 | 
						|
        break;
 | 
						|
}
 | 
						|
 | 
						|
$result = getWorkDateValidationStatus($work_data);
 | 
						|
$content .= $result['message'];
 | 
						|
$check_qualification = (int) $my_folder_data['qualification'];
 | 
						|
 | 
						|
if (!api_is_invitee()) {
 | 
						|
    if (!empty($work_data['enable_qualification']) && !empty($check_qualification)) {
 | 
						|
        $type = 'simple';
 | 
						|
 | 
						|
        $columns = [
 | 
						|
            get_lang('Type'),
 | 
						|
            get_lang('Title'),
 | 
						|
            get_lang('Score'),
 | 
						|
            get_lang('Date'),
 | 
						|
            get_lang('Status'),
 | 
						|
            get_lang('Detail'),
 | 
						|
        ];
 | 
						|
 | 
						|
        $columnModel = [
 | 
						|
            [
 | 
						|
                'name' => 'type',
 | 
						|
                'index' => 'file',
 | 
						|
                'width' => '5',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'false',
 | 
						|
                'sortable' => 'false',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'title',
 | 
						|
                'index' => 'title',
 | 
						|
                'width' => '40',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'false',
 | 
						|
                'wrap_cell' => 'true',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'qualification',
 | 
						|
                'index' => 'qualification',
 | 
						|
                'width' => '30',
 | 
						|
                'align' => 'center',
 | 
						|
                'search' => 'true',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'sent_date',
 | 
						|
                'index' => 'sent_date',
 | 
						|
                'width' => '30',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'true',
 | 
						|
                'wrap_cell' => 'true',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'qualificator_id',
 | 
						|
                'index' => 'qualificator_id',
 | 
						|
                'width' => '20',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'true',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'actions',
 | 
						|
                'index' => 'actions',
 | 
						|
                'width' => '20',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'false',
 | 
						|
                'sortable' => 'false',
 | 
						|
            ],
 | 
						|
        ];
 | 
						|
    } else {
 | 
						|
        $type = 'complex';
 | 
						|
 | 
						|
        $columns = [
 | 
						|
            get_lang('Type'),
 | 
						|
            get_lang('Title'),
 | 
						|
            get_lang('Feedback'),
 | 
						|
            get_lang('Date'),
 | 
						|
            get_lang('Detail'),
 | 
						|
        ];
 | 
						|
 | 
						|
        $columnModel = [
 | 
						|
            [
 | 
						|
                'name' => 'type',
 | 
						|
                'index' => 'file',
 | 
						|
                'width' => '5',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'false',
 | 
						|
                'sortable' => 'false',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'title',
 | 
						|
                'index' => 'title',
 | 
						|
                'width' => '60',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'false',
 | 
						|
                'wrap_cell' => 'true',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'qualification',
 | 
						|
                'index' => 'qualification',
 | 
						|
                'width' => '30',
 | 
						|
                'align' => 'center',
 | 
						|
                'search' => 'true',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'sent_date',
 | 
						|
                'index' => 'sent_date',
 | 
						|
                'width' => '30',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'true',
 | 
						|
                'wrap_cell' => 'true',
 | 
						|
                'sortable' => 'false',
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                'name' => 'actions',
 | 
						|
                'index' => 'actions',
 | 
						|
                'width' => '20',
 | 
						|
                'align' => 'left',
 | 
						|
                'search' => 'false',
 | 
						|
                'sortable' => 'false',
 | 
						|
            ],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    $extraParams = [
 | 
						|
        'autowidth' => 'true',
 | 
						|
        'height' => 'auto',
 | 
						|
        'sortname' => 'sent_date',
 | 
						|
        'sortorder' => 'desc',
 | 
						|
    ];
 | 
						|
 | 
						|
    $url = api_get_path(WEB_AJAX_PATH).'model.ajax.php?a=get_work_user_list&work_id='.$workId.'&type='.$type.'&'.api_get_cidreq();
 | 
						|
    $content .= '
 | 
						|
        <script>
 | 
						|
            $(function() {
 | 
						|
                '.Display::grid_js('results', $url, $columns, $columnModel, $extraParams).'
 | 
						|
            });
 | 
						|
        </script>
 | 
						|
    ';
 | 
						|
 | 
						|
    $documents = getAllDocumentsFromWorkToString($workId, $courseInfo);
 | 
						|
    $content .= $documents;
 | 
						|
 | 
						|
    $tableWork = Display::grid_html('results');
 | 
						|
    $content .= Display::panel($tableWork);
 | 
						|
}
 | 
						|
$tpl->assign('content', $content);
 | 
						|
$tpl->display_one_col_template();
 | 
						|
 |