Add setting hide_header_footer_in_certificate see BT#12383

pull/2487/head
jmontoyaa 8 years ago
parent 36a08dfd93
commit ffb18e0133
  1. 36
      main/document/document.php
  2. 39
      main/inc/lib/document.lib.php
  3. 2
      main/install/configuration.dist.php

@ -37,12 +37,9 @@ $current_course_tool = TOOL_DOCUMENT;
$this_section = SECTION_COURSES;
$to_user_id = null;
$parent_id = null;
$lib_path = api_get_path(LIBRARY_PATH);
$actionsRight = '';
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : null;
$allowUseTool = false;
if ($allowDownloadDocumentsByApiKey) {
@ -85,7 +82,6 @@ $base_work_dir = $sys_course_path . $course_dir;
$http_www = api_get_path(WEB_COURSE_PATH).$courseInfo['directory'] . '/document';
$document_path = $base_work_dir;
$usePpt2lp = api_get_setting('service_ppt2lp', 'active') == 'true';
$course_dir = $courseInfo['directory'].'/document';
$sys_course_path = api_get_path(SYS_COURSE_PATH);
$base_work_dir = $sys_course_path.$course_dir;
@ -93,6 +89,15 @@ $http_www = api_get_path(WEB_COURSE_PATH).$courseInfo['directory'].'/document';
$document_path = $base_work_dir;
$currentUrl = api_get_self().'?'.api_get_cidreq();
// I'm in the certification module?
$is_certificate_mode = false;
if (isset($_GET['curdirpath'])) {
$is_certificate_mode = DocumentManager::is_certificate_mode($_GET['curdirpath']);
}
if (isset($_REQUEST['certificate']) && $_REQUEST['certificate'] == 'true') {
$is_certificate_mode = true;
}
// Removing sessions
unset($_SESSION['draw_dir']);
unset($_SESSION['paint_dir']);
@ -369,7 +374,19 @@ switch ($action) {
break;
case 'export_to_pdf':
if (api_get_setting('students_export2pdf') == 'true' || $isAllowedToEdit || api_is_platform_admin()) {
DocumentManager::export_to_pdf($document_id, $course_code);
$orientation = 'landscape';
$showHeaderAndFooter = true;
if ($is_certificate_mode) {
$orientation = api_get_configuration_value('certificate_pdf_orientation');
$showHeaderAndFooter = !api_get_configuration_value('hide_header_footer_in_certificate');
}
DocumentManager::export_to_pdf(
$document_id,
$course_code,
$orientation,
$showHeaderAndFooter
);
}
break;
case 'copytomyfiles':
@ -550,15 +567,6 @@ switch ($action) {
break;
}
// I'm in the certification module?
$is_certificate_mode = false;
if (isset($_GET['curdirpath'])) {
$is_certificate_mode = DocumentManager::is_certificate_mode($_GET['curdirpath']);
}
if (isset($_REQUEST['certificate']) && $_REQUEST['certificate'] == 'true') {
$is_certificate_mode = true;
}
// If no actions we proceed to show the document (Hack in order to use document.php?id=X)
if (isset($document_id) && empty($action)) {
// Get the document data from the ID

@ -2828,16 +2828,37 @@ class DocumentManager
}
/**
* Export document to PDF
*
* @param int $document_id
* @param string $course_code
* @param string $courseCode
* @param string $orientation
* @param bool $showHeaderAndFooter
*/
public static function export_to_pdf($document_id, $course_code)
{
$course_data = api_get_course_info($course_code);
$document_data = self::get_document_data_by_id($document_id, $course_code);
public static function export_to_pdf(
$document_id,
$courseCode,
$orientation = 'landscape',
$showHeaderAndFooter = true
) {
$course_data = api_get_course_info($courseCode);
$document_data = self::get_document_data_by_id($document_id, $courseCode);
$file_path = api_get_path(SYS_COURSE_PATH) . $course_data['path'] . '/document' . $document_data['path'];
$pdf = new PDF('A4-L', 'L');
$pdf->html_to_pdf($file_path, $document_data['title'], $course_code);
if ($orientation == 'landscape') {
$pageFormat = 'A4-L';
$pdfOrientation = 'L';
} else {
$pageFormat = 'A4';
$pdfOrientation = 'P';
}
$pdf = new PDF($pageFormat, $pdfOrientation);
$pdf->html_to_pdf(
$file_path,
$document_data['title'],
$courseCode,
true,
$showHeaderAndFooter
);
}
/**
@ -5377,7 +5398,7 @@ class DocumentManager
$filetype == 'file' &&
in_array($extension, array('html', 'htm'))
) {
$pdf_icon = ' <a style="float:right".' . $prevent_multiple_click . ' href="' . api_get_self() . '?' . $courseParams . '&action=export_to_pdf&id=' . $document_data['id'] . '">' .
$pdf_icon = ' <a style="float:right".' . $prevent_multiple_click . ' href="' . api_get_self() . '?' . $courseParams . '&action=export_to_pdf&id=' . $document_data['id'] . '&curdirpath='.$curdirpath.'">' .
Display::return_icon('pdf.png', get_lang('Export2PDF'), array(), ICON_SIZE_SMALL) . '</a> ';
}
@ -5867,7 +5888,7 @@ class DocumentManager
$modify_icons .= '&nbsp;<a href="' . api_get_self() . '?' . $courseParams . '&curdirpath=' . $curdirpath . '&amp;remove_as_template=' . $id. '&amp;' . $sort_params . '">' .
Display::return_icon('wizard_na.png', get_lang('RemoveAsTemplate'), '', ICON_SIZE_SMALL) . '</a>';
}
$modify_icons .= '&nbsp;<a href="' . api_get_self() . '?' . $courseParams . '&action=export_to_pdf&id=' . $id . '">' .
$modify_icons .= '&nbsp;<a href="' . api_get_self() . '?' . $courseParams . '&action=export_to_pdf&id=' . $id . '&curdirpath='.$curdirpath.'">' .
Display::return_icon('pdf.png', get_lang('Export2PDF'), array(), ICON_SIZE_SMALL) . '</a>';
}

@ -255,6 +255,8 @@ $_configuration['system_stable'] = NEW_VERSION_STABLE;
//$_configuration['announcements_hide_send_to_hrm_users'] = true;
// Hide certificate link in index/userportal pages
//$_configuration['hide_my_certificate_link'] = false;
// Hide header and footer in certificate pdf
//$_configuration['hide_header_footer_in_certificate'] = false;
// Send only quiz answer notifications to course coaches and not general coach
//$_configuration['block_quiz_mail_notification_general_coach'] = false;
// Security: block direct access from logged in users to contents in OPEN (but not public) courses. Set to true to block

Loading…
Cancel
Save