You are here

file.inc in Insert 7

Insert support for File module.

File

includes/file.inc
View source
<?php

/**
 * @file
 * Insert support for File module.
 */

/**
 * Implementation of hook_insert_widgets().
 */
function file_insert_widgets() {
  return array(
    'file_generic' => array(
      'element_type' => 'managed_file',
      'wrapper' => '.file-widget',
      'fields' => array(
        'description' => 'input[name$="[description]"]',
      ),
    ),
  );
}

Functions

Namesort descending Description
file_insert_widgets Implementation of hook_insert_widgets().