function pathologic_filter_info in Pathologic 7
Same name and namespace in other branches
- 7.3 pathologic.module \pathologic_filter_info()
- 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,
),
);
}