You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
<?php //Updated for use with Certificate v3+ Chardelle Busch
|
|
|
|
class block_verify_certificate extends block_base {
|
|
|
|
function init() {
|
|
$this->title = get_string('title', 'block_verify_certificate');
|
|
}
|
|
|
|
function applicable_formats() {
|
|
return array('all' => true);
|
|
}
|
|
|
|
function get_content() {
|
|
if ($this->content !== NULL) {
|
|
return $this->content;
|
|
}
|
|
$fieldid = implode(',', $this->config->fieldid);
|
|
|
|
$this->content = new stdClass;
|
|
$this->content->text = '<p>'.get_string('entercode', 'certificate').'</p>';
|
|
$url = new moodle_url('/blocks/verify_certificate/index.php');
|
|
$this->content->text .= '<center><form class="loginform" name="cert" method="post" action="'. $url . '">';
|
|
|
|
$this->content->text .= '<input type="text" name="certnumber" id="certnumber" size="10" value="" />';
|
|
$this->content->text .= "<input type='hidden' name='list' id='list' value='{$fieldid}' />";
|
|
$this->content->text .= '<input type="submit" value="'.get_string('validate', 'certificate').'"/></form>';
|
|
$this->content->text .= '<center>';
|
|
$this->content->footer = '';
|
|
|
|
return $this->content;
|
|
}
|
|
|
|
/* function has_config() {
|
|
return true;
|
|
}
|
|
*/
|
|
|
|
function instance_allow_config() {
|
|
return true;
|
|
}
|
|
}
|
|
|