ckeditor_link_file.module in CKEditor Link File 7
Same filename and directory in other branches
Integrates CKEditor Link with file entities.
File
ckeditor_link_file.moduleView 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;
}
Functions
Name![]() |
Description |
---|---|
ckeditor_link_file_ckeditor_link_types | Implements hook_ckeditor_link_types(). |