You are here

download.install in Download 7.2

Same filename and directory in other branches
  1. 7 download.install

Install function for the download module.

File

download.install
View source
<?php

/**
 * @file
 * Install function for the download module.
 */
function download_field_schema($field) {
  $columns = array(
    'download_fields' => array(
      'type' => 'varchar',
      'length' => 255,
      'not null' => FALSE,
    ),
    'download_label' => array(
      'type' => 'varchar',
      'length' => 255,
      'not null' => FALSE,
    ),
  );
  return array(
    'columns' => $columns,
  );
}

Functions

Namesort descending Description
download_field_schema @file Install function for the download module.