You are here

spanish_services.module in Service links 7.2

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

Extends Service Links with Spanish services.

@author ateneatech

File

services/spanish_services.module
View source
<?php

/**
 * @file
 * Extends Service Links with Spanish services.
 * 
 * @author ateneatech
 */

/**
 * Implements hook_service_links().
 */
function spanish_services_service_links() {
  $links = array();
  $links['_es_meneame'] = array(
    'name' => 'Meneame',
    'description' => t('Add to Meneame'),
    'link' => 'http://www.meneame.net/submit.php?url=<encoded-url>',
  );
  $links['_es_latafanera'] = array(
    'name' => 'La Tafanera',
    'description' => t('Add to La Tafanera'),
    'link' => 'http://latafanera.cat/submit.php?url=<encoded-url>',
  );
  $links['_es_fresqui'] = array(
    'name' => 'Fresqui',
    'description' => t('Submit this post on tec.fresqui.com'),
    'link' => 'http://tec.fresqui.com/post?url=<encoded-url>&title=<encoded-title>',
  );
  $links['_es_barrapunto'] = array(
    'name' => 'Barrapunto',
    'description' => t('Publish this post on Barrapunto.com'),
    'link' => 'http://barrapunto.com/submit.pl?story=He leido en <encoded-source> el articulo <a href="<encoded-url>"><encoded-title></a>&subj=<encoded-title>',
  );
  $links['_es_tuenti'] = array(
    'name' => 'Tuenti',
    'description' => t('Share on Tuenti'),
    'link' => 'http://www.tuenti.com/share?url=<encoded-url>',
  );
  return $links;
}

Functions