fb_tab.install in Drupal for Facebook 7.3
Same filename and directory in other branches
Installs database tables and settings required by fb_tab module.
File
fb_tab.installView source
<?php
/**
* @file
* Installs database tables and settings required by fb_tab module.
*
*/
/**
* Implements hook_install()
*/
function fb_tab_install() {
drupal_set_message(st('Facebook Tab module installed.', array(
'!perm' => url('admin/people/permissions'),
'!create' => url('admin/structure/fb'),
)));
}
/**
* Implement hook_uninstall()
*/
function fb_tab_uninstall() {
}
function fb_tab_schema() {
$schema['fb_tab'] = array(
'description' => 'Main fb_tab table. Presents tabs to user and manages configuration data for different tab views.',
'fields' => array(
'fb_tab_id' => array(
'description' => 'The primary identifier.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'label' => array(
'description' => 'Facebook application label.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'profile_id' => array(
'description' => 'profile id (which tab is calling)',
'type' => 'int',
'size' => 'big',
'not null' => TRUE,
),
'created' => array(
'description' => 'The Unix timestamp when the row was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'data' => array(
'type' => 'text',
'size' => 'big',
'description' => 'Serialized generic data.',
'default' => NULL,
),
),
'primary key' => array(
'fb_tab_id',
),
'unique keys' => array(
'fb_tab' => array(
'label',
'profile_id',
),
),
);
return $schema;
}
Functions
Name | Description |
---|---|
fb_tab_install | Implements hook_install() |
fb_tab_schema | |
fb_tab_uninstall | Implement hook_uninstall() |