本文整理匯總了PHP中question_usage_by_activity::process_all_actions方法的典型用法代碼示例。如果您正苦於以下問題:PHP question_usage_by_activity::process_all_actions方法的具體用法?PHP question_usage_by_activity::process_all_actions怎麽用?PHP question_usage_by_activity::process_all_actions使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類question_usage_by_activity
的用法示例。
在下文中一共展示了question_usage_by_activity::process_all_actions方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: process_comment
/**
* Process a comment for a particular question on an attempt
*
* @param int $slot
* @param \mod_activequiz\activequiz $rtq
*
* @return bool
*/
public function process_comment($slot = null, $rtq)
{
global $DB;
// if there is no slot return false
if (empty($slot)) {
return false;
}
// Process any data that was submitted.
if (data_submitted() && confirm_sesskey()) {
if (optional_param('submit', false, PARAM_BOOL) && \question_engine::is_manual_grade_in_range($this->attempt->questionengid, $slot)) {
$transaction = $DB->start_delegated_transaction();
$this->quba->process_all_actions(time());
$this->save();
$transaction->allow_commit();
// Trigger event for question manually graded
$params = array('objectid' => $this->quba->get_question($slot)->id, 'courseid' => $rtq->getCourse()->id, 'context' => $rtq->getContext(), 'other' => array('rtqid' => $rtq->getRTQ()->id, 'attemptid' => $this->attempt->id, 'slot' => $slot, 'sessionid' => $this->attempt->sessionid));
$event = \mod_activequiz\event\question_manually_graded::create($params);
$event->trigger();
return true;
}
}
return false;
}
示例2: process_submission
protected function process_submission($data)
{
// Backwards compatibility.
reset($data);
if (count($data) == 1 && key($data) === '-finish') {
$this->finish();
}
$this->quba->process_all_actions(time(), $this->response_data_to_post($data));
}