You are here

function ext_search_page_install in Extended search page 7

Implements hook_install().

File

./ext_search_page.install, line 27
Install, update and uninstall functions for the Extended search page module.

Code

function ext_search_page_install() {
  $ret = array();
  $new_schema = array();
  ext_search_page_schema_alter($new_schema);
  foreach ($new_schema as $table => $info) {
    foreach ($info['fields'] as $field => $spec) {
      db_add_field($table, $field, $spec);
    }
  }
}