Allow add external style sheet on certificates when they are in lp view - refs BT#11242

pull/2487/head
Angel Fernando Quiroz Campos 9 years ago
parent 864ddb77a5
commit b7a253e298
  1. 4
      main/gradebook/certificate_template/template.html
  2. 9
      main/inc/lib/document.lib.php

@ -1,10 +1,12 @@
<html prefix="og: http://ogp.me/ns/article#">
<!DOCTYPE html>
<html prefix="og:http://ogp.me/ns/article#">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>((course_title)) - ((user_firstname)) ((user_lastname)) - ((date_certificate_no_time))</title>
<meta property="og:type" content="article" />
<meta property="og:title" content="((course_title)) - Certificate for ((user_firstname)) ((user_lastname))" />
<meta property="og:url" content="((certificate_link))" />
<style>((external_style))</style>
</head>
<body style="background-color: #fff;">
<div style="width: 1072px;margin-left: auto;margin-right: auto;">

@ -1901,6 +1901,13 @@ class DocumentManager
$url = api_get_path(WEB_PATH) . 'certificates/index.php?id=' . $info_grade_certificate['id'];
$externalStyleFile = api_get_path(SYS_CSS_PATH) . 'themes/' . api_get_visual_theme() . '/certificate.css';
$externalStyle = '';
if (is_file($externalStyleFile)) {
$externalStyle = file_get_contents($externalStyleFile);
}
//replace content
$info_to_replace_in_content_html = array(
$first_name,
@ -1918,6 +1925,7 @@ class DocumentManager
$url,
'<a href="' . $url . '" target="_blank">' . get_lang('CertificateOnlineLink') . '</a>',
'((certificate_barcode))',
$externalStyle
);
$info_to_be_replaced_in_content_html = array('((user_firstname))',
@ -1935,6 +1943,7 @@ class DocumentManager
'((certificate_link))',
'((certificate_link_html))',
'((certificate_barcode))',
'((external_style))'
);
if (!empty($extraFields)) {

Loading…
Cancel
Save