function dutch_services_service_links in Service links 7.2
Same name and namespace in other branches
- 6.2 services/dutch_services.module \dutch_services_service_links()
Implements hook_service_links().
File
- services/
dutch_services.module, line 13 - Extends Service Links with Dutch services.
Code
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;
}