. /** * htmlcert module core interaction API * * @package mod_htmlcert * @copyright 2013 Mark Nelson , 2021 Klaus-Uwe Mitterer * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.'); /** * Add htmlcert instance. * * @param stdClass $data * @param mod_htmlcert_mod_form $mform * @return int new htmlcert instance id */ function htmlcert_add_instance($data, $mform) { global $DB; // Create a template for this htmlcert to use. $context = context_module::instance($data->coursemodule); $template = \mod_htmlcert\template::create($data->name, $context->id); // Add the data to the DB. $data->templateid = $template->get_id(); $data->protection = \mod_htmlcert\certificate::set_protection($data); $data->timecreated = time(); $data->timemodified = $data->timecreated; $data->id = $DB->insert_record('htmlcert', $data); return $data->id; } /** * Update htmlcert instance. * * @param stdClass $data * @param mod_htmlcert_mod_form $mform * @return bool true */ function htmlcert_update_instance($data, $mform) { global $DB; $data->protection = \mod_htmlcert\certificate::set_protection($data); $data->timemodified = time(); $data->id = $data->instance; return $DB->update_record('htmlcert', $data); } /** * Given an ID of an instance of this module, * this function will permanently delete the instance * and any data that depends on it. * * @param int $id * @return bool true if successful */ function htmlcert_delete_instance($id) { global $CFG, $DB; // Ensure the htmlcert exists. if (!$htmlcert = $DB->get_record('htmlcert', array('id' => $id))) { return false; } // Get the course module as it is used when deleting files. if (!$cm = get_coursemodule_from_instance('htmlcert', $id)) { return false; } // Delete the htmlcert instance. if (!$DB->delete_records('htmlcert', array('id' => $id))) { return false; } // Now, delete the template associated with this certificate. if ($template = $DB->get_record('htmlcert_templates', array('id' => $htmlcert->templateid))) { $template = new \mod_htmlcert\template($template); $template->delete(); } // Delete the htmlcert issues. if (!$DB->delete_records('htmlcert_issues', array('htmlcertid' => $id))) { return false; } // Delete any files associated with the htmlcert. $context = context_module::instance($cm->id); $fs = get_file_storage(); $fs->delete_area_files($context->id); return true; } /** * This function is used by the reset_course_userdata function in moodlelib. * This function will remove all posts from the specified htmlcert * and clean up any related data. * * @param stdClass $data the data submitted from the reset course. * @return array status array */ function htmlcert_reset_userdata($data) { global $DB; $componentstr = get_string('modulenameplural', 'htmlcert'); $status = array(); if (!empty($data->reset_htmlcert)) { $sql = "SELECT cert.id FROM {htmlcert} cert WHERE cert.course = :courseid"; $DB->delete_records_select('htmlcert_issues', "htmlcertid IN ($sql)", array('courseid' => $data->courseid)); $status[] = array('component' => $componentstr, 'item' => get_string('deleteissuedcertificates', 'htmlcert'), 'error' => false); } return $status; } /** * Implementation of the function for printing the form elements that control * whether the course reset functionality affects the htmlcert. * * @param mod_htmlcert_mod_form $mform form passed by reference */ function htmlcert_reset_course_form_definition(&$mform) { $mform->addElement('header', 'htmlcertheader', get_string('modulenameplural', 'htmlcert')); $mform->addElement('advcheckbox', 'reset_htmlcert', get_string('deleteissuedcertificates', 'htmlcert')); } /** * Course reset form defaults. * * @param stdClass $course * @return array */ function htmlcert_reset_course_form_defaults($course) { return array('reset_htmlcert' => 1); } /** * Returns information about received htmlcert. * Used for user activity reports. * * @param stdClass $course * @param stdClass $user * @param stdClass $mod * @param stdClass $htmlcert * @return stdClass the user outline object */ function htmlcert_user_outline($course, $user, $mod, $htmlcert) { global $DB; $result = new stdClass(); if ($issue = $DB->get_record('htmlcert_issues', array('htmlcertid' => $htmlcert->id, 'userid' => $user->id))) { $result->info = get_string('receiveddate', 'htmlcert'); $result->time = $issue->timecreated; } else { $result->info = get_string('notissued', 'htmlcert'); } return $result; } /** * Returns information about received htmlcert. * Used for user activity reports. * * @param stdClass $course * @param stdClass $user * @param stdClass $mod * @param stdClass $htmlcert * @return string the user complete information */ function htmlcert_user_complete($course, $user, $mod, $htmlcert) { global $DB, $OUTPUT; if ($issue = $DB->get_record('htmlcert_issues', array('htmlcertid' => $htmlcert->id, 'userid' => $user->id))) { echo $OUTPUT->box_start(); echo get_string('receiveddate', 'htmlcert') . ": "; echo userdate($issue->timecreated); echo $OUTPUT->box_end(); } else { print_string('notissued', 'htmlcert'); } } /** * Serves certificate issues and other files. * * @param stdClass $course * @param stdClass $cm * @param context $context * @param string $filearea * @param array $args * @param bool $forcedownload * @return bool|null false if file not found, does not return anything if found - just send the file */ function htmlcert_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload) { global $CFG; require_once($CFG->libdir . '/filelib.php'); // We are positioning the elements. if ($filearea === 'image') { if ($context->contextlevel == CONTEXT_MODULE) { require_login($course, false, $cm); } else if ($context->contextlevel == CONTEXT_SYSTEM && !has_capability('mod/htmlcert:manage', $context)) { return false; } $relativepath = implode('/', $args); $fullpath = '/' . $context->id . '/mod_htmlcert/image/' . $relativepath; $fs = get_file_storage(); if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) { return false; } send_stored_file($file, 0, 0, $forcedownload); } } /** * The features this activity supports. * * @uses FEATURE_GROUPS * @uses FEATURE_GROUPINGS * @uses FEATURE_GROUPMEMBERSONLY * @uses FEATURE_MOD_INTRO * @uses FEATURE_COMPLETION_TRACKS_VIEWS * @uses FEATURE_GRADE_HAS_GRADE * @uses FEATURE_GRADE_OUTCOMES * @param string $feature FEATURE_xx constant for requested feature * @return mixed True if module supports feature, null if doesn't know */ function htmlcert_supports($feature) { switch ($feature) { case FEATURE_GROUPS: return true; case FEATURE_GROUPINGS: return true; case FEATURE_MOD_INTRO: return true; case FEATURE_SHOW_DESCRIPTION: return true; case FEATURE_COMPLETION_TRACKS_VIEWS: return true; case FEATURE_BACKUP_MOODLE2: return true; default: return null; } } /** * Used for course participation report (in case htmlcert is added). * * @return array */ function htmlcert_get_view_actions() { return array('view', 'view all', 'view report'); } /** * Used for course participation report (in case htmlcert is added). * * @return array */ function htmlcert_get_post_actions() { return array('received'); } /** * Function to be run periodically according to the moodle cron. */ function htmlcert_cron() { return true; } /** * This function extends the settings navigation block for the site. * * It is safe to rely on PAGE here as we will only ever be within the module * context when this is called. * * @param settings_navigation $settings * @param navigation_node $htmlcertnode */ function htmlcert_extend_settings_navigation(settings_navigation $settings, navigation_node $htmlcertnode) { global $DB, $PAGE; $keys = $htmlcertnode->get_children_key_list(); $beforekey = null; $i = array_search('modedit', $keys); if ($i === false and array_key_exists(0, $keys)) { $beforekey = $keys[0]; } else if (array_key_exists($i + 1, $keys)) { $beforekey = $keys[$i + 1]; } if (has_capability('mod/htmlcert:manage', $PAGE->cm->context)) { // Get the template id. $templateid = $DB->get_field('htmlcert', 'templateid', array('id' => $PAGE->cm->instance)); $node = navigation_node::create(get_string('edithtmlcert', 'htmlcert'), new moodle_url('/mod/htmlcert/edit.php', array('tid' => $templateid)), navigation_node::TYPE_SETTING, null, 'mod_htmlcert_edit', new pix_icon('t/edit', '')); $htmlcertnode->add_node($node, $beforekey); } if (has_capability('mod/htmlcert:verifycertificate', $PAGE->cm->context)) { $node = navigation_node::create(get_string('verifycertificate', 'htmlcert'), new moodle_url('/mod/htmlcert/verify_certificate.php', array('contextid' => $PAGE->cm->context->id)), navigation_node::TYPE_SETTING, null, 'mod_htmlcert_verify_certificate', new pix_icon('t/check', '')); $htmlcertnode->add_node($node, $beforekey); } return $htmlcertnode->trim_if_empty(); } /** * Add nodes to myprofile page. * * @param \core_user\output\myprofile\tree $tree Tree object * @param stdClass $user user object * @param bool $iscurrentuser * @param stdClass $course Course object * @return bool */ function mod_htmlcert_myprofile_navigation(core_user\output\myprofile\tree $tree, $user, $iscurrentuser, $course) { $url = new moodle_url('/mod/htmlcert/my_certificates.php', array('userid' => $user->id)); $node = new core_user\output\myprofile\node('miscellaneous', 'myhtmlcerts', get_string('mycertificates', 'htmlcert'), null, $url); $tree->add_node($node); } /** * Get icon mapping for font-awesome. */ function mod_htmlcert_get_fontawesome_icon_map() { return [ 'mod_htmlcert:download' => 'fa-download' ]; }