You are here

function swedish_services_service_links in Service links 7.2

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

Implements hook_service_links()

File

services/swedish_services.module, line 13
Extends Service Links with Swedish services.

Code

function swedish_services_service_links() {
  $links = array();
  $links['_se_bloggy'] = array(
    'name' => 'Bloggy',
    'description' => t('Share this on Bloggy'),
    'link' => 'http://bloggy.se/home/?status=<encoded-url> -- <encoded-title>',
  );
  $links['_se_pusha'] = array(
    'name' => 'Pusha',
    'description' => t('Share this on Pusha'),
    'link' => 'http://pusha.se/posta?url=<encoded-url>&title=<encoded-title>',
  );
  return $links;
}