You are here

function emvideo_install in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emvideo/emvideo.install \emvideo_install()
  2. 6.2 contrib/emvideo/emvideo.install \emvideo_install()

Implementation of hook_install().

File

contrib/emvideo/emvideo.install, line 11
Installation, configuration, and removal of the emvideo module.

Code

function emvideo_install() {

  // Build any necessary tables.
  drupal_load('module', 'content');
  content_notify('install', 'emvideo');

  // Fix up our mess from video_cck, if necessary.
  return _emvideo_upgrade_from_video_cck();
}