Add template to fckeditor - refs #7322

1.9.x
Angel Fernando Quiroz Campos 10 years ago
parent 10ed78e735
commit 03db46ade2
  1. 218
      main/gradebook/certificate_template/template.html
  2. 11
      main/inc/lib/fckeditor/fcktemplates.xml.php

@ -1,111 +1,109 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="/main/gradebook/certificate_template/css/base.css" rel="stylesheet" media="screen" type="text/css" />
<link href="/main/gradebook/certificate_template/css/base.css" rel="stylesheet" media="print" type="text/css" />
</head>
<body class="page">
<div id="container" class="page-container">
<div class="paper">
<table width="1052px" border="0" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table border="0" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="/main/gradebook/certificate_template/img/lado-bar.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/lado-top-a.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/logo.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/lado-top-b.png">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="/main/gradebook/certificate_template/img/lado-bar-buttom.png"></td>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<h2 class="title-institution">((gradebook_institution))</h2>
</td>
</tr>
<tr>
<td class="title-certified">
CERTIFICATE
</td>
</tr>
<tr>
<td class="line-certified">
This certificate is granted to
</td>
</tr>
<tr>
<td class="student-certified">
((gradebook_grade)) ((user_firstname)) ((user_lastname))
</td>
</tr>
<tr>
<td class="line-certified">
Having successfully completed the study of our course
</td>
</tr>
<tr>
<td class="couse-certified">
((course_title))
</td>
</tr>
<tr>
<td class="line-certified">
is issued this certificate so credited
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td>
<img src="/main/gradebook/certificate_template/img/firma01.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/blank.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/firm02.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/certified.png">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td class="code-course">
((certificate_barcode))
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="/main/gradebook/certificate_template/css/base.css" rel="stylesheet" media="screen" type="text/css" />
<link href="/main/gradebook/certificate_template/css/base.css" rel="stylesheet" media="print" type="text/css" />
</head>
<body class="page">
<div id="container" class="page-container">
<div class="paper">
<table width="1052px" border="0" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table border="0" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="/main/gradebook/certificate_template/img/lado-bar.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/lado-top-a.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/logo.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/lado-top-b.png">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="/main/gradebook/certificate_template/img/lado-bar-buttom.png"></td>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<h2 class="title-institution">((gradebook_institution))</h2>
</td>
</tr>
<tr>
<td class="title-certified">
CERTIFICATE
</td>
</tr>
<tr>
<td class="line-certified">
This certificate is granted to
</td>
</tr>
<tr>
<td class="student-certified">
((gradebook_grade)) ((user_firstname)) ((user_lastname))
</td>
</tr>
<tr>
<td class="line-certified">
Having successfully completed the study of our course
</td>
</tr>
<tr>
<td class="couse-certified">
((course_title))
</td>
</tr>
<tr>
<td class="line-certified">
is issued this certificate so credited
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td>
<img src="/main/gradebook/certificate_template/img/firma01.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/blank.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/firm02.png">
</td>
<td>
<img src="/main/gradebook/certificate_template/img/certified.png">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td class="code-course">
((certificate_barcode))
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>
</div>
</body>

@ -165,6 +165,17 @@ function load_platform_templates() {
</Html>
</Template>';
}
$certificateTemplateContent = file_get_contents(api_get_path(SYS_PATH) . 'main/gradebook/certificate_template/template.html');
echo '<Template title="TemplateCertificateTitle" image="' . "{$template_thumb}empty.gif" . '">'
. '<Description>TemplateCertificateDescription</Description>'
. '<Html>'
. '<![CDATA['
. $certificateTemplateContent
. ']]>'
. '</Html>'
. '</Template>';
}
/**

Loading…
Cancel
Save