dutch_services.module in Service links 6.2
Same filename and directory in other branches
Extends Service Links with Dutch services.
@author Kasper Souren
File
services/dutch_services.moduleView source
<?php
/**
* @file
* Extends Service Links with Dutch services.
*
* @author Kasper Souren
*/
/**
* Implementation of 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
Name | Description |
---|---|
dutch_services_service_links | Implementation of hook_service_links(). |