You are here

quiz_page.install in Quiz 7.6

Same filename and directory in other branches
  1. 7.5 question_types/quiz_page/quiz_page.install

The installer file for quiz pages module.

File

question_types/quiz_page/quiz_page.install
View source
<?php

/**
 * @file
 * The installer file for quiz pages module.
 */

/**
 * Implements hook_install().
 */
function quiz_page_install() {

  // Add body field to quiz pages node
  quiz_question_add_body_field('quiz_page');
}

Functions

Namesort descending Description
quiz_page_install Implements hook_install().