You are here

videoftp.install in Video 6.5

Same filename and directory in other branches
  1. 6.4 types/videoftp/videoftp.install

Installation file for the videoftp module.

File

types/videoftp/videoftp.install
View source
<?php

/**
 * @file
 * Installation file for the videoftp module.
 */

/**
 * Implementation of hook_install().
 */
function videoftp_install() {
  drupal_load('module', 'content');
  content_notify('install', 'videoftp');
}
function videoftp_uninstall() {
  drupal_load('module', 'content');
  content_notify('uninstall', 'videoftp');
}
function videoftp_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'videoftp');
}
function videoftp_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'videoftp');
}