You are here

function pathologic_filter_info in Pathologic 7

Same name and namespace in other branches
  1. 7.3 pathologic.module \pathologic_filter_info()
  2. 7.2 pathologic.module \pathologic_filter_info()

Implements hook_filter_info().

File

./pathologic.module, line 15
Pathologic text filter for Drupal.

Code

function pathologic_filter_info() {
  return array(
    'pathologic' => array(
      'title' => t('Correct URLs with Pathologic'),
      'process callback' => '_pathologic',
      'settings callback' => '_pathologic_settings',
      'default settings' => array(
        'local_paths' => '',
        'absolute' => TRUE,
      ),
      'weight' => 65535,
    ),
  );
}