HEX
Server: Apache
System: Linux webm010.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: iestorre (46869)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/iestorre/www2/modules/service_links/services/spanish_services.module
<?php

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

/**
 * Implementation of 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;
}