You are here

function rel_to_abs_filter_info in Relative Path to Absolute URLs 7

Implements hook_filter_info().

File

./rel_to_abs.module, line 13
Relative Paths to Absolute URLs

Code

function rel_to_abs_filter_info() {
  $filters['rel_to_abs'] = array(
    'title' => t('Relative Paths to Absolute URLs'),
    'description' => t('Filter for convertion of relative paths to absolute URLs.'),
    'process callback' => 'rel_to_abs_filter_html',
    'settings callback' => 'rel_to_abs_filter_html_settings',
    'tips callback' => 'rel_to_abs_filter_html_tips',
    'cache' => TRUE,
  );
  return $filters;
}