Go to file
2016-12-13 10:54:17 +08:00
backup/moodle2 Fixed backup and restore after refactor 2016-04-05 15:56:16 +08:00
classes #49 Allow templates to have the same name 2016-11-29 15:49:18 +08:00
db Added upgrade.php file to keep Moodle's plugin DB happy 2016-03-22 12:38:54 +08:00
element Bumped version 2016-08-26 19:12:07 +08:00
includes Added old school constructor to work with Moodle 2.x 2016-03-22 12:08:25 +08:00
lang/en #49 Allow templates to have the same name 2016-11-29 15:49:18 +08:00
pix Huge refactor 2016-02-20 16:35:19 +08:00
yui Set the element width in PHP, not JS 2016-06-17 15:49:10 +08:00
ajax.php Renamed rest.php to ajax.php 2016-06-17 15:49:10 +08:00
edit.php Show a link to manage templates 2016-08-25 18:47:42 +08:00
edit_element.php Huge refactor 2016-02-20 16:35:19 +08:00
index.php Uncapitalised usages of the 'context_*' classes 2016-08-25 18:47:31 +08:00
lib.php #55 Fixed references to capabilities from mod_certificate 2016-11-29 13:31:53 +08:00
load_template.php Huge refactor 2016-02-20 16:35:19 +08:00
manage_templates.php Uncapitalised usages of the 'context_*' classes 2016-08-25 18:47:31 +08:00
mod_form.php Fixed references to non-existent constants 2016-04-23 14:13:28 +08:00
README.md Added a tutorial on how to add fonts 2016-08-24 15:16:18 +08:00
rearrange.php Improved navigation bar for the element repositioning page 2016-08-26 15:07:20 +08:00
report.php Removed 'File' column when downloading report 2016-08-25 16:22:33 +08:00
settings.php Huge refactor 2016-02-20 16:35:19 +08:00
styles.css Fixed erroneous find/replace in styles.css 2016-06-17 15:49:10 +08:00
upload_image.php Huge refactor 2016-02-20 16:35:19 +08:00
version.php Bumped version 2016-12-13 10:54:17 +08:00
view.php #57 Set the activity as viewed when downloaded 2016-11-29 15:49:20 +08:00

QUICK INSTALL

There are two installation methods that are available. Follow one of these, then log into your Moodle site as an administrator and visit the notifications page to complete the install.

==================== MOST RECOMMENDED METHOD - Git ====================

If you do not have git installed, please see the below link. Please note, it is not necessary to set up the SSH Keys. This is only needed if you are going to create a repository of your own on github.com.

Information on installing git - http://help.github.com/set-up-git-redirect/

Once you have git installed, simply visit the Moodle mod directory and clone git://github.com/markn86/moodle-mod_customcert.git, remember to rename the folder to customcert if you do not specify this in the clone command

Eg. Linux command line would be as follow -

git clone git://github.com/markn86/moodle-mod_customcert.git customcert

Use git pull to update this repository periodically to ensure you have the latest version.

==================== Download the customcert module. ====================

Visit https://github.com/markn86/moodle-mod_customcert and download the zip, uncompress this zip and extract the folder. The folder will have a name similar to markn86-moodle-mod_customcert-c9fbadb, you MUST rename this to customcert. Place this folder in your mod folder in your Moodle directory.

nb. The reason this is not the recommended method is due to the fact you have to over-write the contents of this folder to apply any future updates to the customcert module. In the above method there is a simple command to update the files.

Customisation

========================= Add Fonts to TCPDF. =========================

For customization, you have a couple of options in the Custom Certificate module. One of the most common customizations is, adding fonts to the Certificate creator.

Custom Certificate uses a pdf creator called TCPDF, which embeds fonts into the PDF file, so that you can view fonts, even though they are not installed on the target machine. This requires you to tell TCPDF which fonts to take.

Importing Fonts into TCPDF is quite simple:

  1. Convert the font you want embedded into the tcpdf format (for example using http://fonts.snm-portal.com or http://www.xml-convert.com/en/convert-tff-font-to-afm-pfa-fpdf-tcpdf)

  2. Put the converted files into the folder: /path/to/moodle/lib/tcpdf/fonts

  3. Use the font in your certificate builder

  4. Enjoy

Please note that inserting a file into the tcpdf folder is considered a "core hack" and might not be available on some commercially hosted systems. Please check your providers agreement on the topic to make sure this is something you're allowed to do.