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 = '

'.get_string('entercode', 'certificate').'

'; $url = new moodle_url('/blocks/verify_certificate/index.php'); $this->content->text .= '
'; $this->content->text .= ''; $this->content->text .= ""; $this->content->text .= '
'; $this->content->text .= '
'; $this->content->footer = ''; return $this->content; } /* function has_config() { return true; } */ function instance_allow_config() { return true; } }