<?php
// $Id: forward_services.module,v 1.1.2.2 2010/09/28 14:24:44 thecrow Exp $

/**
 * @file
 * Add the support for Forward module
 */

/**
 * Implementation of hook_service_links().
 **/
function forward_services_service_links() {
  $links = array();

  $links['forward'] = array(
    'name' => 'Forward',
    'link' => url('forward', array('absolute' => TRUE, 'query' => 'path=<encoded-query>')),
    'description' => t('Send to a friend'),
  );
  
  return $links;
}
