function emvideo_install in Embedded Media Field 6
Same name and namespace in other branches
- 6.3 contrib/emvideo/emvideo.install \emvideo_install()
 - 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();
}