function current_search_schema in Facet API 7
Same name and namespace in other branches
- 6.3 contrib/current_search/current_search.install \current_search_schema()
- 7.2 contrib/current_search/current_search.install \current_search_schema()
Implements hook_schema().
File
- contrib/
current_search/ current_search.install, line 12 - Install, update, and uninstall functions for the Current Search Blocks module.
Code
function current_search_schema() {
$schema = array();
$schema['current_search'] = array(
'description' => 'Current search block configurations.',
'export' => array(
'key' => 'name',
'identifier' => 'item',
'default hook' => 'current_search_default_items',
'delete callback' => 'current_search_export_crud_delete',
'api' => array(
'owner' => 'current_search',
'api' => 'current_search',
'minimum_version' => 1,
'current_version' => 1,
),
),
'fields' => array(
'name' => array(
'description' => 'The machine readable name of the configuration.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'label' => array(
'description' => 'The human readable name of the configuration.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'settings' => array(
'description' => 'Serialized storage of general settings.',
'type' => 'text',
'serialize' => TRUE,
),
),
'primary key' => array(
'name',
),
);
$schema['block_current_search'] = array(
'description' => 'Sets up display criteria for blocks based on searcher',
'fields' => array(
'delta' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'description' => "The block's unique delta within module, from {block}.delta.",
),
'searcher' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'description' => "The machine-readable name of the searcher.",
),
),
'primary key' => array(
'delta',
),
'indexes' => array(
'searcher' => array(
'searcher',
),
),
);
return $schema;
}