You are here

function asset_install in Asset 6

Same name and namespace in other branches
  1. 5.2 asset.install \asset_install()
  2. 5 asset.install \asset_install()
  3. 7 asset.install \asset_install()

Implementation of hook_install()

File

./asset.install, line 6

Code

function asset_install() {
  drupal_install_schema('asset');
  drupal_set_message(t('Asset tables have been configured.'));
  if (module_exists('content')) {
    content_notify('install', 'asset');
  }
}