Set the code to a randomly generated one if we are previewing the custom certificate

This commit is contained in:
Mark Nelson 2013-06-28 15:30:06 +08:00
parent e811303e84
commit b0ad1ff25b

View file

@ -37,11 +37,16 @@ class customcert_element_code extends customcert_element_base {
public function render($pdf, $preview) {
global $DB, $USER;
// Get the page.
$page = $DB->get_record('customcert_pages', array('id' => $this->element->pageid), '*', MUST_EXIST);
// Now we can get the issue for this user.
$issue = $DB->get_record('customcert_issues', array('userid' => $USER->id, 'customcertid' => $page->customcertid), '*', MUST_EXIST);
if ($preview) {
$code = customcert_generate_code();
} else {
// Get the page.
$page = $DB->get_record('customcert_pages', array('id' => $this->element->pageid), '*', MUST_EXIST);
// Now we can get the issue for this user.
$issue = $DB->get_record('customcert_issues', array('userid' => $USER->id, 'customcertid' => $page->customcertid), '*', MUST_EXIST);
$code = $issue->code;
}
parent::render_content($pdf, $issue->code);
parent::render_content($pdf, $code);
}
}