function ife_schema_alter in Inline Form Errors 7.2
Implements hook_schema_alter().
Makes the ife table usable by ctools' export.inc.
File
- ./
ife.module, line 319 - Drupal hooks.
Code
function ife_schema_alter(&$schema) {
$schema['ife']['export'] = array(
'key' => 'form_id',
'primary key' => 'form_id',
'identifier' => 'ife',
'default hook' => 'ife_default_settings',
'can disable' => FALSE,
'api' => array(
'owner' => 'ife',
'api' => 'ife',
'minimum_version' => 1,
'current_version' => 1,
),
);
}