function faq_install in Frequently Asked Questions 6
Same name and namespace in other branches
- 8 faq.install \faq_install()
- 5.2 faq.install \faq_install()
- 5 faq.install \faq_install()
- 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',
));
}