Company Name

Company Name

by Doug Bell -
Number of replies: 2

Hello,

 

How would I put my company name on the certificate, along with the word =

Instructor

 

under my name on my students certificates?

 

Thanks

Average of ratings: -
In reply to Doug Bell

Re: Company Name

by Raymond Fürst -

Do you use one of the standard certificate types as a base?

You can add lines with fixed text to the file yourmoodledir/mod/certificate/type/yourtype/certificate.php

If your certificate is derived from landscape, add the following lines after line 106:

cert_printtext(170, 100, 'C', 'Times', 'B', 20, 'ACME incorporated');
cert_printtext(130, 400, 'L', 'Helvetica', '', 30, 'Instructor');

or

cert_printtext(130, 400, 'L', 'Helvetica', '', 30, 'ACME-Instructor');

The first numbers in the lines represent the coordinates, so change them at will to move the text bits around where you want to have them.