pcp.install in Profile Complete Percent 6
Same filename and directory in other branches
Install file for the profile.module
File
pcp.installView source
<?php
/**
* @file
* Install file for the profile.module
*/
/**
* Implementation of hook_install().
*/
function pcp_install() {
drupal_install_schema('pcp');
}
/**
* Implementation of hook_schema()
*/
function pcp_schema() {
$schema['profile_pcp'] = array(
'fields' => array(
'fid' => array(
'type' => 'int',
'not null' => TRUE,
),
),
);
return $schema;
}
function pcp_uninstall() {
drupal_uninstall_schema('pcp');
}
Functions
Name | Description |
---|---|
pcp_install | Implementation of hook_install(). |
pcp_schema | Implementation of hook_schema() |
pcp_uninstall |