You are here

function faq_install in Frequently Asked Questions 6

Same name and namespace in other branches
  1. 8 faq.install \faq_install()
  2. 5.2 faq.install \faq_install()
  3. 5 faq.install \faq_install()
  4. 7 faq.install \faq_install()

Implementation of hook_install().

Inserts the FAQ module's schema in the SQL database.

File

./faq.install, line 45
FAQ module install file.

Code

function faq_install() {
  drupal_install_schema('faq');
  variable_set('node_options_faq', array(
    'status',
  ));
}