本文整理汇总了PHP中core\event\base::get_record_snapshot方法的典型用法代码示例。如果您正苦于以下问题:PHP base::get_record_snapshot方法的具体用法?PHP base::get_record_snapshot怎么用?PHP base::get_record_snapshot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core\event\base
的用法示例。
在下文中一共展示了base::get_record_snapshot方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update_from_event
public static function update_from_event(\core\event\base $event)
{
global $CFG;
require_once $CFG->dirroot . '/mod/checklist/autoupdate.php';
if ($event->target == 'course_module_completion' && $event->action == 'updated') {
// Update from a completion change event.
$comp = $event->get_record_snapshot('course_modules_completion', $event->objectid);
// Update any relevant checklists.
checklist_completion_autoupdate($comp->coursemoduleid, $comp->userid, $comp->completionstate);
} else {
// Check if this is an action that counts as 'completing' an activity (when completion is off).
$info = self::get_entry_info($event);
if (!$info) {
return;
}
// Update any relevant checklists.
checklist_autoupdate_internal($info->course, $info->module, $info->cmid, $info->userid);
}
}