profile_install
Definition
profile_install()
modules/profile/profile.install, line 6
Description
Implementation of hook_install().
Code
<?php
function profile_install() {
// Create tables.
drupal_install_schema('profile');
}
?> profile_install()
modules/profile/profile.install, line 6
Implementation of hook_install().
<?php
function profile_install() {
// Create tables.
drupal_install_schema('profile');
}
?>