You are here

function video_upload_install in Video 6

Same name and namespace in other branches
  1. 6.2 types/video_upload/video_upload.install \video_upload_install()

Implementation of hook_install().

File

types/video_upload/video_upload.install, line 53
Provide installation functions for video_upload.module .

Code

function video_upload_install() {

  // Create tables.
  drupal_install_schema('video_upload');

  // add video_upload_allowed_extensions variable mpeg, avi, wmv etc
}