<?php

/**
 * @file
 * Extends Service Links with Swedish services.
 *
 * @author persand
 */

/**
 * Implements hook_service_links()
 */
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;
}
