You are here

function google_appliance_install in Google Search Appliance 6.2

Same name and namespace in other branches
  1. 5 google_appliance.install \google_appliance_install()

Implementation of hook_install().

File

./google_appliance.install, line 11
Installation file for building tables for Google Integration

Code

function google_appliance_install() {
  $install = drupal_install_schema('google_appliance');
  if ($install['0']['success'] == 1) {
    drupal_set_message(t('Google Appliance module installed successfully'));
  }
  else {
    drupal_set_message(t('Google Appliance module failed to install'), 'error');
  }
}