You are here

function simplenews_statistics_install in Simplenews Statistics 6

Same name and namespace in other branches
  1. 6.3 simplenews_statistics.install \simplenews_statistics_install()
  2. 6.2 simplenews_statistics.install \simplenews_statistics_install()

Implementation of hook_install().

File

./simplenews_statistics.install, line 104
Simplenews Statistics installation.

Code

function simplenews_statistics_install() {
  if (!drupal_install_schema('simplenews_statistics')) {
    drupal_set_message(t('The installation of Simplenews Statistics was not successful.'), 'error');
  }
}