function cloze_install in Cloze 7
Same name and namespace in other branches
- 6 cloze.install \cloze_install()
Implementation of hook_install().
File
- ./
cloze.install, line 11 - The installer file for short_answer.
Code
function cloze_install() {
// Add body field to cloze node
quiz_question_add_body_field('cloze');
variable_set('node_options_cloze', array(
'status',
));
cache_clear_all('autoload:', 'cache');
}