You are here

function video_zencoder_install in Video 6.5

Same name and namespace in other branches
  1. 6.4 plugins/video_zencoder/video_zencoder.install \video_zencoder_install()
  2. 7 modules/video_zencoder/video_zencoder.install \video_zencoder_install()

Implementation of hook_install().

File

plugins/video_zencoder/video_zencoder.install, line 79
Provides installation functions for video_s3.module.

Code

function video_zencoder_install() {
  drupal_install_schema('video_zencoder');

  // set the module weight to low since we need this to load later time than in S3
  db_query("UPDATE {system} SET weight = 50 WHERE name = 'video_zencoder'");
}