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/farsi_services.module
<?php

/**
 * @file
 * Extends Service Links with Farsi services.
 * 
 * @author lameei
 */

/**
 * Implementation of hook_service_links().
 */
function farsi_services_service_links() {
  $links = array();

  $links['_fa_balatarin'] = array(
    'name' => 'Balatarin',
    'description' => t('Bookmark this post on balatarin'),
    'link' => 'http://balatarin.com/links/submit?phase=2&url=<raw-encoded-url>&title=<raw-encoded-title>',
  );
  $links['_fa_donbaleh'] = array(
    'name' => 'Donbaleh',
    'description' => t('Bookmark this post on donbaleh'),
    'link' => 'http://donbaleh.com/submit.php?url=<encoded-url>&subject=<encoded-title>',
  );
  $links['_fa_friendfa'] = array(
    'name' => 'Friendfa',
    'description' => t('Bookmark this post on friendfa'),
    'link' => 'http://www.friendfa.com/share?status=<encoded-title>&url=<encoded-url>',
   );
  $links['_fa_viwio'] = array(
    'name' => 'Viwio',
    'description' => t('Share this on Viwio'),
    'link' => 'http://www.viwio.com/home/?status=<encoded-title> <encoded-url>',
  );
  
  return $links;
}