advanced_help.install in Advanced Help 6
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_install().
*/
function advanced_help_install() {
$t = get_t();
drupal_set_message($t('Installing advanced_help.'));
drupal_install_schema('advanced_help');
}
/**
* Implements hook_uninstall().
*/
function advanced_help_uninstall() {
drupal_uninstall_schema('advanced_help');
variable_del('advanced_help_last_cron');
}
/**
* 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',
),
),
);
return $schema;
}
Functions
Name | Description |
---|---|
advanced_help_install | Implements hook_install(). |
advanced_help_schema | Implements hook_schema(). |
advanced_help_uninstall | Implements hook_uninstall(). |