You are here

function wysiwyg_template_filter_info in Wysiwyg API template plugin 7.2

Implements hook_filter_info().

File

./wysiwyg_template.module, line 122
Makes TinyMCE Templates available as plugin for client-side editors integrated via Wysiwyg API.

Code

function wysiwyg_template_filter_info() {
  $filters['wysiwyg_template_cleanup'] = array(
    'title' => t('Cleanup Wysiwyg Templates'),
    'description' => t('Wysiwyg templates can contain code and attributes that are important for editing but should be removed on public pages.'),
    'process callback' => '_wysiwyg_template_filter_cleanup',
  );
  return $filters;
}