You are here

function asset_embed_install in Asset 6

Same name and namespace in other branches
  1. 5 asset_embed/asset_embed.install \asset_embed_install()

Implementation of hook_install()

File

asset_embed/asset_embed.install, line 6

Code

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