You are here

function cloze_install in Quiz 8.4

Implementation of hook_install().

File

question_types/cloze/cloze.install, line 11
The installer file for short_answer.

Code

function cloze_install() {
  \Drupal::config('cloze.settings')
    ->set('node_options_cloze', array(
    'status',
  ));
  entity_info_cache_clear();
}