You are here

ckeditor_link_file.module in CKEditor Link File 7

Same filename and directory in other branches
  1. 7.2 ckeditor_link_file.module

Integrates CKEditor Link with file entities.

File

ckeditor_link_file.module
View source
<?php

/**
 * @file
 * Integrates CKEditor Link with file entities.
 */

// Functions for recording file usage when using CKEditor Link File links.
require_once dirname(__FILE__) . '/includes/ckeditor_link_file.usage.inc';

/**
 * Implements hook_ckeditor_link_types().
 */
function ckeditor_link_file_ckeditor_link_types() {
  $types[] = array(
    'type' => 'file',
    'file' => 'includes/ckeditor_link_file.file.inc',
  );
  return $types;
}