aboutsummaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
authorHeshan Wanigasooriya <heshanmw@gmail.com>2010-12-05 15:48:43 +0000
committerHeshan Wanigasooriya <heshanmw@gmail.com>2010-12-05 15:48:43 +0000
commit0221159f8c62813bcb68ae33a23e3bb1f7c19e17 (patch)
tree5ee2c28285d9c37588ec147402dd6e00290888c9 /types
parentb6e86040dd3faa3a70ec16e77220d852bdb09a04 (diff)
downloadvideo-0221159f8c62813bcb68ae33a23e3bb1f7c19e17.tar.gz
video-0221159f8c62813bcb68ae33a23e3bb1f7c19e17.tar.bz2
Updating files to compatible with D7
Diffstat (limited to 'types')
-rw-r--r--types/uploadfield/uploadfield.info11
-rw-r--r--types/uploadfield/uploadfield.install40
-rw-r--r--types/videoftp/videoftp.info10
3 files changed, 31 insertions, 30 deletions
diff --git a/types/uploadfield/uploadfield.info b/types/uploadfield/uploadfield.info
index 9468461..3c5e92d 100644
--- a/types/uploadfield/uploadfield.info
+++ b/types/uploadfield/uploadfield.info
@@ -1,9 +1,10 @@
; $Id$
+
name = Video Upload
description = Handle video upload for video module using filefield and CCK.
-core = 6.x
-version = 6.x-4.x-dev
-dependencies[] = content
-dependencies[] = filefield
+package = Video
+core = 7.x
dependencies[] = video
-package = "Video" \ No newline at end of file
+files[] = uploadfield.module
+files[] = uploadfield.field.inc
+files[] = uploadfield.install \ No newline at end of file
diff --git a/types/uploadfield/uploadfield.install b/types/uploadfield/uploadfield.install
index a2e1b65..9f43a6d 100644
--- a/types/uploadfield/uploadfield.install
+++ b/types/uploadfield/uploadfield.install
@@ -2,24 +2,26 @@
// $Id$
/**
- * Implementation of hook_install().
+ * Implements hook_field_schema().
*/
-function uploadfield_install() {
- drupal_load('module', 'content');
- content_notify('install', 'uploadfield');
-}
-
-function uploadfield_uninstall() {
- drupal_load('module', 'content');
- content_notify('uninstall', 'uploadfield');
-}
-
-function uploadfield_enable() {
- drupal_load('module', 'content');
- content_notify('enable', 'uploadfield');
-}
-
-function uploadfield_disable() {
- drupal_load('module', 'content');
- content_notify('disable', 'uploadfield');
+function uploadfield_field_schema($field) {
+ return array(
+ 'columns' => array(
+ 'fid' => array(
+ 'description' => 'The {file_managed}.fid being referenced in this field.',
+ 'type' => 'int',
+ 'not null' => FALSE,
+ 'unsigned' => TRUE,
+ ),
+ ),
+ 'indexes' => array(
+ 'fid' => array('fid'),
+ ),
+ 'foreign keys' => array(
+ 'fid' => array(
+ 'table' => 'file_managed',
+ 'columns' => array('fid' => 'fid'),
+ ),
+ ),
+ );
} \ No newline at end of file
diff --git a/types/videoftp/videoftp.info b/types/videoftp/videoftp.info
index 73b9318..c14f111 100644
--- a/types/videoftp/videoftp.info
+++ b/types/videoftp/videoftp.info
@@ -1,9 +1,7 @@
; $Id$
+
name = Video FTP
description = Allows you to attach videos uploaded through FTP to nodes.
-core = 6.x
-version = 6.x-4.x-dev
-dependencies[] = content
-dependencies[] = filefield
-dependencies[] = video
-package = "Video" \ No newline at end of file
+package = Video
+core = 7.x
+dependencies[] = video \ No newline at end of file