function _quiz_check_num_random in Quiz 7
Same name and namespace in other branches
- 8.4 quiz.module \_quiz_check_num_random()
- 6.4 quiz.module \_quiz_check_num_random()
- 7.6 quiz.module \_quiz_check_num_random()
- 7.4 quiz.module \_quiz_check_num_random()
- 7.5 quiz.module \_quiz_check_num_random()
If a quiz is saved as not randomized we should make sure all random questions are converted to always.
Parameters
$node: Quiz node.
2 calls to _quiz_check_num_random()
- quiz_insert in ./
quiz.module - Implements hook_insert().
- quiz_update in ./
quiz.module - Implements hook_update().
File
- ./
quiz.module, line 3832 - Quiz Module
Code
function _quiz_check_num_random(&$node) {
if ($node->randomization == 2) {
return;
}
db_delete('quiz_node_relationship')
->condition('question_status', QUESTION_RANDOM)
->condition('parent_vid', $node->vid)
->execute();
}