You are here

dutch_services.module in Service links 7.2

Same filename and directory in other branches
  1. 6.2 services/dutch_services.module

Extends Service Links with Dutch services.

@author Kasper Souren

File

services/dutch_services.module
View source
<?php

/**
 * @file
 * Extends Service Links with Dutch services.
 *
 * @author Kasper Souren
 */

/**
 * Implements hook_service_links().
 */
function dutch_services_service_links() {
  $links = array();
  $links['_nl_nujij'] = array(
    'name' => 'Nujij',
    'description' => t('Add to nujij'),
    'link' => 'http://nujij.nl/jij.lynkx?t=<encoded-title>&u=<encoded-url>',
  );
  $links['_nl_ekudos'] = array(
    'name' => 'eKudos',
    'description' => t('Bookmark this post on eKudos'),
    'link' => 'http://www.ekudos.nl/artikel/nieuw?url=<encoded-url>&title=<encoded-title>',
  );
  $links['_nl_hyves'] = array(
    'name' => 'Hyves',
    'description' => t('Tip this on Hyves'),
    'link' => 'http://www.hyves-share.nl/button/tip/?tipcategoryid=12&rating=5&title=<encoded-title>&body=Bron%3A%20%5Burl%3D<encoded-url>%5D<encoded-url>%5B%2Furl%5D',
  );
  return $links;
}

Functions