You are here

function easychart_filter_info in Easychart 7.2

Same name and namespace in other branches
  1. 7 easychart.module \easychart_filter_info()

Implements hook_filter_info().

File

./easychart.module, line 728
Easychart module file.

Code

function easychart_filter_info() {
  $filters['easychart'] = array(
    'title' => t('Insert Easychart charts'),
    'prepare callback' => 'easychart_filter_easychart_prepare',
    'process callback' => 'easychart_filter_easychart_process',
    'tips callback' => 'easychart_filter_easychart_tips',
    'cache' => FALSE,
  );
  return $filters;
}