You are here

function asset_youtube_install in Asset 6

Same name and namespace in other branches
  1. 5 asset_youtube/asset_youtube.install \asset_youtube_install()

Implementation of hook_install()

File

asset_youtube/asset_youtube.install, line 6

Code

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