You are here

swedish_services.module in Service links 7.2

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

Extends Service Links with Swedish services.

@author persand

File

services/swedish_services.module
View source
<?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;
}

Functions