| 1 |
<?php |
| 2 |
/** |
| 3 |
* Will be included in the shariff.php only, when SMS is requested as a service. |
| 4 |
* |
| 5 |
* @package Shariff Wrapper |
| 6 |
*/ |
| 7 |
|
| 8 |
// Prevent direct calls. |
| 9 |
if ( ! class_exists( 'WP' ) ) { die(); } |
| 10 |
// and again the same because the WP Plugin Check does not understand what the line above does ;-) |
| 11 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 12 |
|
| 13 |
// Check if we need the frontend or the backend part. |
| 14 |
if ( isset( $frontend ) && 1 === $frontend ) { |
| 15 |
// Service URL. |
| 16 |
$service_url = 'sms:'; |
| 17 |
|
| 18 |
// Build button URL. |
| 19 |
$button_url = $service_url . '?&body=' . $share_url; |
| 20 |
|
| 21 |
// Colors. |
| 22 |
$main_color = '#a1e877'; |
| 23 |
$secondary_color = '#d7d9d8'; |
| 24 |
$wcag_color = '#31640C'; |
| 25 |
|
| 26 |
// SVG icon. |
| 27 |
$svg_icon = '<svg xmlns="http://www.w3.org/2000/svg" width="510" height="510" viewBox="0 0 510 510"><path fill="' . $main_color . '" d="M459 0H51C23 0 0 23 0 51v459l102-102h357c28.1 0 51-22.9 51-51V51C510 23 487.1 0 459 0zM178.5 229.5h-51v-51h51V229.5zM280.5 229.5h-51v-51h51V229.5zM382.5 229.5h-51v-51h51V229.5z"/></svg>'; |
| 28 |
|
| 29 |
// Mobile only? |
| 30 |
$mobile_only = 1; |
| 31 |
|
| 32 |
// Button alt label. |
| 33 |
$button_title_array = array( |
| 34 |
'bg' => 'Сподели в SMS', |
| 35 |
'cs' => 'Sdílet na SMS', |
| 36 |
'da' => 'Del på SMS', |
| 37 |
'de' => 'Per SMS teilen', |
| 38 |
'en' => 'Share on SMS', |
| 39 |
'es' => 'Compartir en SMS', |
| 40 |
'fi' => 'Jaa SMS', |
| 41 |
'fr' => 'Envoyer par SMS', |
| 42 |
'hr' => 'Podijelite na SMS', |
| 43 |
'hu' => 'Megosztás SMS', |
| 44 |
'it' => 'Condividi su SMS', |
| 45 |
'ja' => 'SMS上で� |
| 46 |
�有', |
| 47 |
'ko' => 'SMS에서 공유하기', |
| 48 |
'nl' => 'Delen op SMS', |
| 49 |
'no' => 'Del på SMS', |
| 50 |
'pl' => 'Udostępnij przez SMS', |
| 51 |
'pt' => 'Compartilhar no SMS', |
| 52 |
'ro' => 'Partajează pe SMS', |
| 53 |
'ru' => 'Поделиться на SMS', |
| 54 |
'sk' => 'Zdieľať na SMS', |
| 55 |
'sl' => 'Deli na SMS', |
| 56 |
'sr' => 'Podeli na SMS-u', |
| 57 |
'sv' => 'Dela på SMS', |
| 58 |
'tr' => 'SMS\'ta paylaş', |
| 59 |
'zh' => '在WSMS上分享', |
| 60 |
); |
| 61 |
} |
| 62 |
|