You are here

function easychart_wysiwyg_filter_info in Easychart 7.3

Implements hook_filter_info().

File

modules/easychart_wysiwyg/easychart_wysiwyg.module, line 137
Easychart WYSIWYG integration.

Code

function easychart_wysiwyg_filter_info() {
  $filters['easychart'] = array(
    'title' => t('Insert Easychart charts'),
    'prepare callback' => 'easychart_wysiwyg_filter_easychart_prepare',
    'process callback' => 'easychart_wysiwyg_filter_easychart_process',
    'tips callback' => 'easychart_wysiwyg_filter_easychart_tips',
    'cache' => FALSE,
  );
  return $filters;
}