You are here

function hungarian_services_service_links in Service links 7.2

Same name and namespace in other branches
  1. 6.2 services/hungarian_services.module \hungarian_services_service_links()

Implements hook_service_links().

File

services/hungarian_services.module, line 13
Extends Service Links with Hungarian services.

Code

function hungarian_services_service_links() {
  $links = array();
  $links['_hu_iwiw'] = array(
    'name' => 'IWIW',
    'description' => t('Add to iWiW'),
    'link' => 'http://iwiw.hu/pages/share/share.jsp?u=<encoded-url>&t=<encoded-title>',
  );
  return $links;
}