advanced_help.install in Advanced Help 7
Same filename and directory in other branches
Contains install and update functions for advanced_help.
File
advanced_help.installView source
<?php
/**
* @file
* Contains install and update functions for advanced_help.
*/
/**
* Implements hook_uninstall().
*/
function advanced_help_uninstall() {
variable_del('advanced_help_last_cron');
$sam = variable_get('search_active_modules', NULL);
if (!empty($sam)) {
unset($sam['advanced_help']);
variable_set('search_active_modules', $sam);
}
}
/**
* Implements hook_schema().
*/
function advanced_help_schema() {
$schema['advanced_help_index'] = array(
'description' => 'Stores search index correlations for advanced help topics.',
'fields' => array(
'sid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'The primary key to give to the search engine for this topic.',
'no export' => TRUE,
),
'module' => array(
'type' => 'varchar',
'length' => '255',
'default' => '',
'not null' => TRUE,
'description' => 'The module that owns this topic.',
),
'topic' => array(
'type' => 'varchar',
'length' => '255',
'default' => '',
'not null' => TRUE,
'description' => 'The topic id.',
),
'language' => array(
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
'description' => 'The language this search index relates to.',
),
),
'primary key' => array(
'sid',
),
'indexes' => array(
'language' => array(
'language',
),
),
'foreign keys' => array(
'system' => array(
'table' => 'system',
'columns' => array(
'name' => 'name',
),
),
),
);
return $schema;
}
Functions
Name | Description |
---|---|
advanced_help_schema | Implements hook_schema(). |
advanced_help_uninstall | Implements hook_uninstall(). |