5 * Installs database tables and settings required by fb_tab module.
10 * Implements hook_install()
12 function fb_tab_install() {
13 drupal_set_message(st('Facebook Tab module installed.', array('!perm' => url('admin/people/permissions'), '!create' => url('admin/structure/fb') /* FB_PATH_ADMIN */)));
17 * Implement hook_uninstall()
19 function fb_tab_uninstall() {
22 function fb_tab_schema() {
23 $schema['fb_tab'] = array(
24 'description' => 'Main fb_tab table. Presents tabs to user and manages configuration data for different tab views.',
27 'description' => 'The primary identifier.',
32 'description' => 'Facebook application label.',
37 'profile_id' => array(
38 'description' => 'profile id (which tab is calling)',
43 'description' => 'The Unix timestamp when the row was created.',
50 'description' => 'Serialized generic data.',
54 'primary key' => array('fb_tab_id'),
55 'unique keys' => array(
56 'fb_tab' => array('label', 'profile_id'),