You are here

function mee_filter_info in Scald: Media Management made easy 7

Implements hook_filter_info().

File

modules/fields/mee/mee.module, line 887
Defines a special textarea, with drag and drop media driven by Scald and dnd.module.

Code

function mee_filter_info() {
  $filters['mee_scald_widgets'] = array(
    'title' => t('Embedded atoms'),
    'description' => t('This is only needed when using the Scald plugin for CKEditor 4'),
    'process callback' => 'mee_filter_process',
  );
  return $filters;
}