You are here

function panopoly_wysiwyg_filter_info in Panopoly WYSIWYG 7

Implements hook_filter_info()

File

./panopoly_wysiwyg.module, line 372

Code

function panopoly_wysiwyg_filter_info() {
  $filters = array();
  $filters['panopoly_images_fix_captions'] = array(
    'title' => t('Add Panopoly image classes to caption wrappers'),
    'description' => t('This filter must come AFTER Caption Filter. Adds the image style class from the img tag to div.caption.'),
    'process callback' => '_panopoly_wysiwyg_process_caption_filter',
  );
  return $filters;
}