You are here

function shurly_filter_info in ShURLy 7

Implements hook_filter_info().

File

./shurly.module, line 1190
description http://www.youtube.com/watch?v=Qo7qoonzTCE

Code

function shurly_filter_info() {
  $filters = array();
  $filters['shurly'] = array(
    'title' => t("Shorten all outgoing URL's"),
    'description' => t("Shorten all outgoing URL's."),
    'process callback' => '_shurly_filter_process',
    'tips callback' => '_shurly_filter_tips',
  );
  return $filters;
}