Version Description
- updated the WhatsApp share link (thanks to @hanshansenxxx and @korbball)
- updated to Facebook Graph API v3.3
- updated the Flattr button to reflect the new Flattr (thanks to Chris, @camthor)
- fixed an update issue with WP CLI
- removed the Facebook share counts request without APP ID and Secret
- Facebook now always requires an APP ID and Secret for share counts
- removed Flattr counts due to Flattr removing the API
Download this release
Release Info
Developer | starguide |
Plugin | Shariff Wrapper |
Version | 4.6.3 |
Comparing to | |
See all releases |
Code changes from version 4.6.2 to 4.6.3
- admin/admin-menu.php +3 -30
- admin/admin-notices.php +0 -4
- changelog.txt +9 -0
- readme.txt +11 -2
- services/shariff-buffer.php +1 -1
- services/shariff-facebook.php +2 -8
- services/shariff-flattr.php +4 -28
- services/shariff-mix.php +1 -1
- services/shariff-whatsapp.php +1 -1
- shariff.php +13 -13
- updates.php +88 -88
admin/admin-menu.php
CHANGED
@@ -12,7 +12,7 @@ if ( ! class_exists( 'WP' ) ) {
|
|
12 |
}
|
13 |
|
14 |
// Set services that have a share count API / backend.
|
15 |
-
$shariff3uu_services_backend = array( 'facebook', 'twitter', 'pinterest', 'xing', 'reddit', 'tumblr', 'vk', 'addthis', '
|
16 |
|
17 |
// Adds the actions for the admin page.
|
18 |
add_action( 'admin_menu', 'shariff3uu_add_admin_menu' );
|
@@ -311,15 +311,6 @@ function shariff3uu_options_init() {
|
|
311 |
'shariff3uu_advanced_section'
|
312 |
);
|
313 |
|
314 |
-
// Flattr username.
|
315 |
-
add_settings_field(
|
316 |
-
'shariff3uu_text_flattruser',
|
317 |
-
__( 'Flattr username:', 'shariff' ),
|
318 |
-
'shariff3uu_text_flattruser_render',
|
319 |
-
'shariff3uu_advanced',
|
320 |
-
'shariff3uu_advanced_section'
|
321 |
-
);
|
322 |
-
|
323 |
// Patreon username.
|
324 |
add_settings_field(
|
325 |
'shariff3uu_text_patreonid',
|
@@ -1323,18 +1314,6 @@ function shariff3uu_text_twittervia_render() {
|
|
1323 |
echo '<input type="text" name="shariff3uu_advanced[twitter_via]" value="' . esc_html( $twitter_via ) . '" size="50" placeholder="' . esc_html__( 'username', 'shariff' ) . '">';
|
1324 |
}
|
1325 |
|
1326 |
-
/**
|
1327 |
-
* Flattr username.
|
1328 |
-
*/
|
1329 |
-
function shariff3uu_text_flattruser_render() {
|
1330 |
-
if ( isset( $GLOBALS['shariff3uu_advanced']['flattruser'] ) ) {
|
1331 |
-
$flattruser = $GLOBALS['shariff3uu_advanced']['flattruser'];
|
1332 |
-
} else {
|
1333 |
-
$flattruser = '';
|
1334 |
-
}
|
1335 |
-
echo '<input type="text" name="shariff3uu_advanced[flattruser]" value="' . esc_html( $flattruser ) . '" size="50" placeholder="' . esc_html__( 'username', 'shariff' ) . '">';
|
1336 |
-
}
|
1337 |
-
|
1338 |
/**
|
1339 |
* Patreon username.
|
1340 |
*/
|
@@ -1849,14 +1828,6 @@ function shariff3uu_help_section_callback() {
|
|
1849 |
echo '<div style="display:table-cell;border:1px solid;padding:10px">[shariff twitter_via="your_twittername"]</div>';
|
1850 |
echo '<div style="display:table-cell;border:1px solid;padding:10px">' . esc_html__( 'Sets the Twitter via tag.', 'shariff' ) . '</div>';
|
1851 |
echo '</div>';
|
1852 |
-
// Flattruser.
|
1853 |
-
echo '<div style="display:table-row">';
|
1854 |
-
echo '<div style="display:table-cell;border:1px solid;padding:10px">flattruser</div>';
|
1855 |
-
echo '<div style="display:table-cell;border:1px solid;padding:10px"></div>';
|
1856 |
-
echo '<div style="display:table-cell;border:1px solid;padding:10px"></div>';
|
1857 |
-
echo '<div style="display:table-cell;border:1px solid;padding:10px">[shariff flattruser="your_username"]</div>';
|
1858 |
-
echo '<div style="display:table-cell;border:1px solid;padding:10px">' . esc_html__( 'Sets the Flattr username.', 'shariff' ) . '</div>';
|
1859 |
-
echo '</div>';
|
1860 |
// Patreonid.
|
1861 |
echo '<div style="display:table-row">';
|
1862 |
echo '<div style="display:table-cell;border:1px solid;padding:10px">patreonid</div>';
|
@@ -2022,6 +1993,8 @@ function shariff3uu_status_section_callback() {
|
|
2022 |
echo '<div class="shariff_status-table">';
|
2023 |
if ( isset( $shariff3uu['disable'][ $service ] ) && 1 === $shariff3uu['disable'][ $service ] ) {
|
2024 |
echo '<div style="display:table-row"><div style="display:table-cell;font-weight:bold">' . esc_html__( 'Disabled', 'shariff' ) . '</div></div>';
|
|
|
|
|
2025 |
} elseif ( ! array_key_exists( $service, $service_errors ) ) {
|
2026 |
echo '<div style="display:table-row"><div style="display:table-cell;font-weight:bold;color:green">' . esc_html__( 'OK', 'shariff' ) . '</div></div>';
|
2027 |
echo '<div style="display:table-row"><div style="display:table-cell">' . esc_html__( 'Share Count:', 'shariff' ) . ' ' . absint( $share_counts[ $service ] ) . '</div></div>';
|
12 |
}
|
13 |
|
14 |
// Set services that have a share count API / backend.
|
15 |
+
$shariff3uu_services_backend = array( 'facebook', 'twitter', 'pinterest', 'xing', 'reddit', 'tumblr', 'vk', 'addthis', 'odnoklassniki', 'buffer' );
|
16 |
|
17 |
// Adds the actions for the admin page.
|
18 |
add_action( 'admin_menu', 'shariff3uu_add_admin_menu' );
|
311 |
'shariff3uu_advanced_section'
|
312 |
);
|
313 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
// Patreon username.
|
315 |
add_settings_field(
|
316 |
'shariff3uu_text_patreonid',
|
1314 |
echo '<input type="text" name="shariff3uu_advanced[twitter_via]" value="' . esc_html( $twitter_via ) . '" size="50" placeholder="' . esc_html__( 'username', 'shariff' ) . '">';
|
1315 |
}
|
1316 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1317 |
/**
|
1318 |
* Patreon username.
|
1319 |
*/
|
1828 |
echo '<div style="display:table-cell;border:1px solid;padding:10px">[shariff twitter_via="your_twittername"]</div>';
|
1829 |
echo '<div style="display:table-cell;border:1px solid;padding:10px">' . esc_html__( 'Sets the Twitter via tag.', 'shariff' ) . '</div>';
|
1830 |
echo '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1831 |
// Patreonid.
|
1832 |
echo '<div style="display:table-row">';
|
1833 |
echo '<div style="display:table-cell;border:1px solid;padding:10px">patreonid</div>';
|
1993 |
echo '<div class="shariff_status-table">';
|
1994 |
if ( isset( $shariff3uu['disable'][ $service ] ) && 1 === $shariff3uu['disable'][ $service ] ) {
|
1995 |
echo '<div style="display:table-row"><div style="display:table-cell;font-weight:bold">' . esc_html__( 'Disabled', 'shariff' ) . '</div></div>';
|
1996 |
+
} elseif ( 'facebook' === $service && ( ! isset( $shariff3uu['fb_id'] ) || ! isset( $shariff3uu['fb_secret'] ) ) ) {
|
1997 |
+
echo '<div style="display:table-row"><div style="display:table-cell;font-weight:bold;color:#ff0000">' . esc_html__( 'Facebook shut down the possibility to request share counts without an APP ID and Secret. Therefore, you need to create a Facebook APP ID and Secret and enter it in the settings on the Statistic tab. Google will provide you with many tutorials. Simple search for “facebook app id secret” and you will find one in your language.', 'shariff' ) . '</div></div>';
|
1998 |
} elseif ( ! array_key_exists( $service, $service_errors ) ) {
|
1999 |
echo '<div style="display:table-row"><div style="display:table-cell;font-weight:bold;color:green">' . esc_html__( 'OK', 'shariff' ) . '</div></div>';
|
2000 |
echo '<div style="display:table-row"><div style="display:table-cell">' . esc_html__( 'Share Count:', 'shariff' ) . ' ' . absint( $share_counts[ $service ] ) . '</div></div>';
|
admin/admin-notices.php
CHANGED
@@ -19,10 +19,6 @@ function shariff3uu_service_notice() {
|
|
19 |
$services = array();
|
20 |
// Check if any services are set and if user can manage options.
|
21 |
if ( isset( $GLOBALS['shariff3uu']['services'] ) && current_user_can( 'manage_options' ) ) {
|
22 |
-
// Flattr.
|
23 |
-
if ( strpos( $GLOBALS['shariff3uu']['services'], 'flattr' ) !== false && empty( $GLOBALS['shariff3uu']['flattruser'] ) ) {
|
24 |
-
$services[] = 'Flattr';
|
25 |
-
}
|
26 |
// Patreon.
|
27 |
if ( strpos( $GLOBALS['shariff3uu']['services'], 'patreon' ) !== false && empty( $GLOBALS['shariff3uu']['patreonid'] ) ) {
|
28 |
$services[] = 'Patreon';
|
19 |
$services = array();
|
20 |
// Check if any services are set and if user can manage options.
|
21 |
if ( isset( $GLOBALS['shariff3uu']['services'] ) && current_user_can( 'manage_options' ) ) {
|
|
|
|
|
|
|
|
|
22 |
// Patreon.
|
23 |
if ( strpos( $GLOBALS['shariff3uu']['services'], 'patreon' ) !== false && empty( $GLOBALS['shariff3uu']['patreonid'] ) ) {
|
24 |
$services[] = 'Patreon';
|
changelog.txt
CHANGED
@@ -2,6 +2,15 @@
|
|
2 |
|
3 |
== Changelog ==
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
= 4.6.2 =
|
6 |
- new service MeWe
|
7 |
- new service Buffer
|
2 |
|
3 |
== Changelog ==
|
4 |
|
5 |
+
= 4.6.3 =
|
6 |
+
- updated the WhatsApp share link to work with all devices again (thanks to @hanshansenxxx)
|
7 |
+
- updated to Facebook Graph API v3.3
|
8 |
+
- updated the Flattr button to reflect the new Flattr (thanks to Chris, @camthor)
|
9 |
+
- fixed an update issue with WP CLI
|
10 |
+
- removed the Facebook share counts request without APP ID and Secret
|
11 |
+
- Facebook now always requires an APP ID and Secret for share counts
|
12 |
+
- removed Flattr counts due to Flattr removing the API
|
13 |
+
|
14 |
= 4.6.2 =
|
15 |
- new service MeWe
|
16 |
- new service Buffer
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: starguide, 3UU
|
|
3 |
Tags: Shariff, GDPR, DSGVO, share buttons, sharing
|
4 |
Requires at least: 4.9
|
5 |
Requires PHP: 7.0
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 4.6.
|
8 |
License: MIT
|
9 |
License URI: http://opensource.org/licenses/mit
|
10 |
|
@@ -152,6 +152,15 @@ These are bugs or unexpected glitches that we know of, but that do not have an i
|
|
152 |
|
153 |
== Changelog ==
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
= 4.6.2 =
|
156 |
- new service MeWe
|
157 |
- new service Buffer
|
3 |
Tags: Shariff, GDPR, DSGVO, share buttons, sharing
|
4 |
Requires at least: 4.9
|
5 |
Requires PHP: 7.0
|
6 |
+
Tested up to: 5.2
|
7 |
+
Stable tag: 4.6.3
|
8 |
License: MIT
|
9 |
License URI: http://opensource.org/licenses/mit
|
10 |
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
+
= 4.6.3 =
|
156 |
+
- updated the WhatsApp share link (thanks to @hanshansenxxx and @korbball)
|
157 |
+
- updated to Facebook Graph API v3.3
|
158 |
+
- updated the Flattr button to reflect the new Flattr (thanks to Chris, @camthor)
|
159 |
+
- fixed an update issue with WP CLI
|
160 |
+
- removed the Facebook share counts request without APP ID and Secret
|
161 |
+
- Facebook now always requires an APP ID and Secret for share counts
|
162 |
+
- removed Flattr counts due to Flattr removing the API
|
163 |
+
|
164 |
= 4.6.2 =
|
165 |
- new service MeWe
|
166 |
- new service Buffer
|
services/shariff-buffer.php
CHANGED
@@ -24,7 +24,7 @@ if ( isset( $frontend ) && 1 === $frontend ) {
|
|
24 |
$wcag_color = '#0C5B97';
|
25 |
|
26 |
// SVG icon.
|
27 |
-
$svg_icon = '<svg xmlns="http://www.w3.org/2000/svg"
|
28 |
|
29 |
// Backend available?
|
30 |
$backend_available = 1;
|
24 |
$wcag_color = '#0C5B97';
|
25 |
|
26 |
// SVG icon.
|
27 |
+
$svg_icon = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="' . $main_color . '" d="M91-37.4V-52l1.8 1 24 11.2c1.7.8 3.3.7 4.9 0l24-11.2 1-.4c.9-.6 1-1.3 0-1.8l-3.5-1.7a6.2 6.2 0 0 0-6.2 0l-15.1 7.1c-1.7.8-3.4.9-5.1 0-4.7-2.3-9.5-4.3-14.2-6.7-2.7-1.4-5.3-1.7-8-.1-1.1.7-2.3 1.2-3.5 1.7v-14.3l25 11.6c2.2 1.1 4.2 1 6.3 0l23.5-11c.6-.3 1.5-.4 1.4-1.3 0-.8-.8-1-1.3-1.2l-24.5-11.5a5.2 5.2 0 0 0-4.4-.1L91-68.5v-16.2c0-1.1.2-1.3 1.3-1.3h88.9l-.1 2.3v59.6c-.1 1.1.5 1.5 1.6 1.5h9.4c1 0 1.5-.4 1.5-1.5v-4l1.3 1.2c7.9 7.7 21 6.9 27.8-1.8s7-24.2.5-33.3c-6.7-9.3-20.8-10.6-28.4-2.4-.3.3-.4.8-1.2.6V-86H422c1.2 0 1.5.3 1.5 1.5-.1 5.4 0 10.7 0 16.1-5.8-.3-10 2.7-14.2 6.6v-3.8c0-1.4-.4-2-1.8-1.9h-6.2c-4 0-4 0-4 4.1v39.1c0 1.3.4 1.8 1.6 1.8h8c2.3 0 2.3 0 2.3-2.3 0-7.8.3-15.6-.1-23.3-.2-4.1 1.6-6.1 4.9-7.5l2.6-.9c2.2-.7 4.5-.2 6.8-.4v34.6c0 1-.2 1.2-1.2 1.2h-330c-1 0-1.2-.2-1.2-1.2v-13.8l1.4.9 24.2 11.3c1.7.8 3.4.8 5-.1l13-6 11.4-5.4c.5-.2 1-.4 1-1.1 0-.7-.5-1-1-1.2l-3.4-1.6c-2-1-3.7-.9-5.6 0l-15.3 7.2c-2 .9-3.6.9-5.6 0L101-39.2c-2-.9-3.7-1.1-5.6-.1-1.2.4-2.7 1.2-4.3 1.9zm281.5-3.8h14.8c1.3 0 1.8-.5 1.8-1.8-.1-2-.1-4-.4-6A22.1 22.1 0 0 0 362-68.3a23 23 0 0 0-18.6 21.5c-.4 9.6 2.9 17.4 11.7 22.2a27.6 27.6 0 0 0 20.3 1.9c3.3-.8 6.5-2.1 9.2-4.3.6-.5 1.2-1 .5-1.9l-4.1-6c-.4-.7-1-.7-1.5-.2a17.4 17.4 0 0 1-9.7 3.7c-6.4.6-11-1.9-13.4-7.7-.7-1.8-.4-2.1 1.5-2.1zm-108 13.1c0 1.5.2 2.6 0 3.7 0 1.3.5 1.8 1.8 1.7h8.6c1.3 0 1.8-.5 1.8-1.8v-41.4c0-1.2-.5-1.7-1.7-1.7h-8c-2.3 0-2.3 0-2.3 2.4v26.1c0 .9 0 1.7-.6 2.4-2.4 2.3-5 4-8.5 4.1-6.4.2-8.8-2.1-8.8-8.5v-24.3c0-2.2 0-2.2-2.3-2.2h-7.8c-1.6-.1-2.1.6-2 2.1v10.2c0 7.2-.2 14.5.2 21.7.3 5.3 3.5 9.7 8.3 11.1s9.5 1.2 14.2-.6c2.5-1.1 4.8-2.8 7.2-5zm68-11.7v-15.1c0-2.2 0-2.2 2.4-2.2h5.4c1 0 1.5-.4 1.5-1.4v-7.6c0-1.2-.6-1.5-1.6-1.5h-6c-.6 0-1.2.1-1.4-.7a5.9 5.9 0 0 1 6.9-7.4c.7.2 1.5.4 2 .8 1.2.8 1.8.4 2.4-.6.9-1.4 1.7-2.9 2.7-4.2.9-1.2.5-1.9-.5-2.7a17.4 17.4 0 0 0-8.3-3 14.6 14.6 0 0 0-17 11.7c-.3 1.5-.4 3-.4 4.5 0 1.1-.4 1.6-1.5 1.5h-4.2c-1 0-1.5.3-1.5 1.4v7.8c0 1 .4 1.4 1.4 1.3h3.4c2.4 0 2.4 0 2.4 2.4v30c0 1.5.5 2 2 2h8.3c1.5 0 1.9-.5 1.9-2-.2-4.9-.2-10-.2-15zm-42-.3v15.4c0 1.5.6 2 2 2h7.4c2.9 0 2.9 0 2.9-2.8V-55c0-1.6.5-2.1 2-2h5.3c1 0 1.5-.4 1.5-1.5V-66c0-1.1-.4-1.6-1.5-1.5h-5.8c-.6 0-1.2.1-1.4-.7a5.7 5.7 0 0 1 5.4-7.6c1.3 0 2.5.4 3.5 1.1s1.5.4 2-.5l2.7-4.1c1-1.8 1-2-.7-3.2a17.7 17.7 0 0 0-8.1-2.7 15 15 0 0 0-15.2 7.2c-1.6 2.8-2 5.8-2 8.9.2 1.3-.3 1.8-1.6 1.7h-4.4c-1 0-1.4.4-1.4 1.3v7.8c0 1.1.5 1.4 1.5 1.4h4.2c1.4-.1 1.7.5 1.7 1.8v15zM.3 14.1L29.3.5a6 6 0 0 1 4.9.1C43.3 5 52.5 9.1 61.5 13.5c.7.3 1.4.5 1.4 1.3 0 1-.9 1.1-1.5 1.4-8.7 4.2-17.5 8.2-26.2 12.3a7.8 7.8 0 0 1-7 0L.3 15.5v-1.4zm0 34.7l5.1-2.6a7 7 0 0 1 6.3.1l16.8 8c2.1 1 4.1 1 6.2 0l17.1-8c2.1-1 4.1-1 6.2 0l3.8 1.7c.6.3 1.4.6 1.3 1.3 0 .7-.7 1-1.3 1.3l-12.7 6-14.4 6.7c-1.8.9-3.7 1-5.6 0L2 50.9c-.6-.2-1-.7-1.6-1-.2-.2-.2-.6-.2-1z"/><path fill="' . $main_color . '" d="M.3 31.5l4-1.9c3-1.8 5.7-1.4 8.8.1 5.3 2.7 10.6 5 15.9 7.5 2 .9 3.7.9 5.6 0 5.6-2.7 11.3-5.2 16.9-8a7.2 7.2 0 0 1 6.9 0c1.2.8 2.6 1.3 3.9 2 1 .6 1 1.3 0 2l-1 .4-26.9 12.5c-1.8.9-3.6.9-5.3 0L2.2 33.6c-.7-.3-1.2-.8-1.9-1v-1z"/></svg>';
|
28 |
|
29 |
// Backend available?
|
30 |
$backend_available = 1;
|
services/shariff-facebook.php
CHANGED
@@ -58,7 +58,7 @@ if ( isset( $frontend ) && 1 === $frontend ) {
|
|
58 |
'zh' => '在Facebook上分享',
|
59 |
);
|
60 |
} elseif ( isset( $backend ) && 1 === $backend ) {
|
61 |
-
// Use the FB ID and Secret, if available
|
62 |
if ( isset( $shariff3uu['fb_id'] ) && isset( $shariff3uu['fb_secret'] ) ) {
|
63 |
// On 32-bit PHP installations the constant is 4 and we have to disable the check because the id is too long.
|
64 |
if ( ( defined( PHP_INT_SIZE ) && PHP_INT_SIZE === '4' ) || ! defined( PHP_INT_SIZE ) ) {
|
@@ -70,17 +70,11 @@ if ( isset( $frontend ) && 1 === $frontend ) {
|
|
70 |
// Create the FB access token.
|
71 |
$fb_token = $fb_app_id . '|' . $fb_app_secret;
|
72 |
// Use the token to get the share counts.
|
73 |
-
$facebook = sanitize_text_field( wp_remote_retrieve_body( wp_remote_get( 'https://graph.facebook.com/v3.
|
74 |
// Decode the json response.
|
75 |
$facebook_json = json_decode( $facebook, true );
|
76 |
// Set nofbid in case the page has not yet been crawled by Facebook and no ID is provided.
|
77 |
$nofbid = '0';
|
78 |
-
} else {
|
79 |
-
$facebook = sanitize_text_field( wp_remote_retrieve_body( wp_remote_get( 'https://graph.facebook.com/?id=' . $post_url ) ) );
|
80 |
-
// Decode the json response.
|
81 |
-
$facebook_json = json_decode( $facebook, true );
|
82 |
-
// Set nofbid in case the page has not yet been crawled by Facebook and no ID is provided.
|
83 |
-
$nofbid = 1;
|
84 |
}
|
85 |
|
86 |
/**
|
58 |
'zh' => '在Facebook上分享',
|
59 |
);
|
60 |
} elseif ( isset( $backend ) && 1 === $backend ) {
|
61 |
+
// Use the FB ID and Secret, if available.
|
62 |
if ( isset( $shariff3uu['fb_id'] ) && isset( $shariff3uu['fb_secret'] ) ) {
|
63 |
// On 32-bit PHP installations the constant is 4 and we have to disable the check because the id is too long.
|
64 |
if ( ( defined( PHP_INT_SIZE ) && PHP_INT_SIZE === '4' ) || ! defined( PHP_INT_SIZE ) ) {
|
70 |
// Create the FB access token.
|
71 |
$fb_token = $fb_app_id . '|' . $fb_app_secret;
|
72 |
// Use the token to get the share counts.
|
73 |
+
$facebook = sanitize_text_field( wp_remote_retrieve_body( wp_remote_get( 'https://graph.facebook.com/v3.3/?access_token=' . $fb_token . '&fields=engagement&id=' . $post_url ) ) );
|
74 |
// Decode the json response.
|
75 |
$facebook_json = json_decode( $facebook, true );
|
76 |
// Set nofbid in case the page has not yet been crawled by Facebook and no ID is provided.
|
77 |
$nofbid = '0';
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
79 |
|
80 |
/**
|
services/shariff-flattr.php
CHANGED
@@ -13,24 +13,13 @@ if ( ! class_exists( 'WP' ) ) {
|
|
13 |
// Check if we need the frontend or the backend part.
|
14 |
if ( isset( $frontend ) && 1 === $frontend ) {
|
15 |
// Service URL.
|
16 |
-
$service_url = esc_url( 'https://flattr.com/
|
17 |
|
18 |
-
//
|
19 |
-
|
20 |
-
$lang = $atts['lang'] . '_' . strtoupper( $atts['lang'] );
|
21 |
-
} else {
|
22 |
-
$lang = 'en_US';
|
23 |
-
}
|
24 |
-
|
25 |
-
// Flattr user.
|
26 |
-
if ( array_key_exists( 'flattruser', $atts ) ) {
|
27 |
-
$flattruser = esc_html( $atts['flattruser'] );
|
28 |
-
} else {
|
29 |
-
$flattruser = '';
|
30 |
-
}
|
31 |
|
32 |
// Build button URL.
|
33 |
-
$button_url = $service_url . '
|
34 |
|
35 |
// Colors.
|
36 |
$main_color = '#7ea352';
|
@@ -56,17 +45,4 @@ if ( isset( $frontend ) && 1 === $frontend ) {
|
|
56 |
'fr' => 'Flattré!',
|
57 |
'es' => 'Flattr!',
|
58 |
);
|
59 |
-
} elseif ( isset( $backend ) && 1 === $backend ) {
|
60 |
-
// Fetch counts.
|
61 |
-
$flattr = sanitize_text_field( wp_remote_retrieve_body( wp_remote_get( 'https://api.flattr.com/rest/v2/things/lookup/?url=' . $post_url ) ) );
|
62 |
-
$flattr_json = json_decode( $flattr, true );
|
63 |
-
|
64 |
-
// Store results, if we have some. If no thing was found, set it to 0. Record errors, if enabled (e.g. request from the status tab).
|
65 |
-
if ( isset( $flattr_json['flattrs'] ) ) {
|
66 |
-
$share_counts['flattr'] = intval( $flattr_json['flattrs'] );
|
67 |
-
} elseif ( isset( $flattr_json['description'] ) && 'No thing was found' === $flattr_json['description'] ) {
|
68 |
-
$share_counts['flattr'] = 0;
|
69 |
-
} elseif ( isset( $record_errors ) && 1 === $record_errors ) {
|
70 |
-
$service_errors['flattr'] = $flattr;
|
71 |
-
}
|
72 |
}
|
13 |
// Check if we need the frontend or the backend part.
|
14 |
if ( isset( $frontend ) && 1 === $frontend ) {
|
15 |
// Service URL.
|
16 |
+
$service_url = esc_url( 'https://flattr.com/domain/' );
|
17 |
|
18 |
+
// Get WP URL.
|
19 |
+
$wp_url = wp_parse_url( get_bloginfo( 'url' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
// Build button URL.
|
22 |
+
$button_url = $service_url . preg_replace('#^www\.(.+\.)#i', '$1', $wp_url['host'] );
|
23 |
|
24 |
// Colors.
|
25 |
$main_color = '#7ea352';
|
45 |
'fr' => 'Flattré!',
|
46 |
'es' => 'Flattr!',
|
47 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
}
|
services/shariff-mix.php
CHANGED
@@ -53,4 +53,4 @@ if ( isset( $frontend ) && 1 === $frontend ) {
|
|
53 |
'sr' => 'Podeli na Mix',
|
54 |
'sv' => 'Dela på Mix',
|
55 |
);
|
56 |
-
}
|
53 |
'sr' => 'Podeli na Mix',
|
54 |
'sv' => 'Dela på Mix',
|
55 |
);
|
56 |
+
}
|
services/shariff-whatsapp.php
CHANGED
@@ -13,7 +13,7 @@ if ( ! class_exists( 'WP' ) ) {
|
|
13 |
// Check if we need the frontend or the backend part.
|
14 |
if ( isset( $frontend ) && 1 === $frontend ) {
|
15 |
// Service URL.
|
16 |
-
$service_url = 'https://
|
17 |
|
18 |
// Build button URL.
|
19 |
$button_url = $service_url . '?text=' . $share_title . '%20' . $share_url;
|
13 |
// Check if we need the frontend or the backend part.
|
14 |
if ( isset( $frontend ) && 1 === $frontend ) {
|
15 |
// Service URL.
|
16 |
+
$service_url = 'https://api.whatsapp.com/send';
|
17 |
|
18 |
// Build button URL.
|
19 |
$button_url = $service_url . '?text=' . $share_title . '%20' . $share_url;
|
shariff.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Shariff Wrapper
|
4 |
* Plugin URI: https://wordpress.org/plugins-wp/shariff/
|
5 |
* Description: Shariff provides share buttons that respect the privacy of your visitors and follow the General Data Protection Regulation (GDPR).
|
6 |
-
* Version: 4.6.
|
7 |
* Author: Jan-Peter Lambeck & 3UU
|
8 |
* Author URI: https://wordpress.org/plugins/shariff/
|
9 |
* License: MIT
|
@@ -33,18 +33,25 @@ $shariff3uu = array_merge( $shariff3uu_basic, $shariff3uu_design, $shariff3uu_ad
|
|
33 |
*/
|
34 |
function shariff3uu_update() {
|
35 |
// Adjust code version.
|
36 |
-
$code_version = '4.6.
|
37 |
|
38 |
-
// Get options.
|
39 |
-
$
|
40 |
|
41 |
// Check if the installed version is older than the code version and include updates.php if necessary.
|
42 |
-
if ( empty( $
|
|
|
|
|
|
|
|
|
|
|
43 |
// Include updates.php.
|
44 |
include dirname( __FILE__ ) . '/updates.php';
|
45 |
}
|
46 |
}
|
47 |
add_action( 'admin_init', 'shariff3uu_update' );
|
|
|
|
|
48 |
|
49 |
/**
|
50 |
* Add privacy policy suggestions to WordPress privacy generator introduced in WordPress 4.9.6.
|
@@ -1193,9 +1200,7 @@ function shariff3uu_render( $atts ) {
|
|
1193 |
// Loops through all desired services.
|
1194 |
foreach ( $service_array as $service ) {
|
1195 |
// Check if necessary usernames are set and display warning to admins, if needed.
|
1196 |
-
if ( '
|
1197 |
-
$flattr_error = 1;
|
1198 |
-
} elseif ( 'paypal' === $service && ! array_key_exists( 'paypalbuttonid', $atts ) ) {
|
1199 |
$paypal_error = 1;
|
1200 |
} elseif ( 'paypalme' === $service && ! array_key_exists( 'paypalmeid', $atts ) ) {
|
1201 |
$paypalme_error = 1;
|
@@ -1518,10 +1523,6 @@ function shariff3uu_render( $atts ) {
|
|
1518 |
update_option( 'shariff3uu_design', $shariff3uu_design );
|
1519 |
}
|
1520 |
|
1521 |
-
// Displays a warning to admins if flattr is set, but no flattr username was provided.
|
1522 |
-
if ( 1 === $flattr_error && current_user_can( 'manage_options' ) ) {
|
1523 |
-
$output .= '<div class="shariff-warning">' . __( 'Username for Flattr is missing!', 'shariff' ) . '</div>';
|
1524 |
-
}
|
1525 |
// Displays a warning to admins if patreon is set, but no patreon username was provided.
|
1526 |
if ( 1 === $patreon_error && current_user_can( 'manage_options' ) ) {
|
1527 |
$output .= '<div class="shariff-warning">' . __( 'Username for patreon is missing!', 'shariff' ) . '</div>';
|
@@ -1572,7 +1573,6 @@ function shariff3uu_meta( $atts ) {
|
|
1572 |
* Clears transients and removes cron job upon deactivation.
|
1573 |
*/
|
1574 |
function shariff3uu_deactivate() {
|
1575 |
-
global $wpdb;
|
1576 |
// Checks for multisite.
|
1577 |
if ( is_multisite() && function_exists( 'get_sites' ) && class_exists( 'WP_Site_Query' ) ) {
|
1578 |
$sites = get_sites();
|
3 |
* Plugin Name: Shariff Wrapper
|
4 |
* Plugin URI: https://wordpress.org/plugins-wp/shariff/
|
5 |
* Description: Shariff provides share buttons that respect the privacy of your visitors and follow the General Data Protection Regulation (GDPR).
|
6 |
+
* Version: 4.6.3
|
7 |
* Author: Jan-Peter Lambeck & 3UU
|
8 |
* Author URI: https://wordpress.org/plugins/shariff/
|
9 |
* License: MIT
|
33 |
*/
|
34 |
function shariff3uu_update() {
|
35 |
// Adjust code version.
|
36 |
+
$code_version = '4.6.3';
|
37 |
|
38 |
+
// Get basic options.
|
39 |
+
$shariff3uu_basic = (array) get_option( 'shariff3uu_basic' );
|
40 |
|
41 |
// Check if the installed version is older than the code version and include updates.php if necessary.
|
42 |
+
if ( empty( $shariff3uu_basic['version'] ) || ( isset( $shariff3uu_basic['version'] ) && version_compare( $shariff3uu_basic['version'], $code_version ) === -1 ) ) {
|
43 |
+
// Get the other options.
|
44 |
+
$shariff3uu_design = (array) get_option( 'shariff3uu_design' );
|
45 |
+
$shariff3uu_advanced = (array) get_option( 'shariff3uu_advanced' );
|
46 |
+
$shariff3uu_statistic = (array) get_option( 'shariff3uu_statistic' );
|
47 |
+
$shariff3uu = array_merge( $shariff3uu_basic, $shariff3uu_design, $shariff3uu_advanced, $shariff3uu_statistic );
|
48 |
// Include updates.php.
|
49 |
include dirname( __FILE__ ) . '/updates.php';
|
50 |
}
|
51 |
}
|
52 |
add_action( 'admin_init', 'shariff3uu_update' );
|
53 |
+
// In case WP-CLI is used and the backend is never visited, we add it to cli_init as well.
|
54 |
+
add_action( 'cli_init', 'shariff3uu_update' );
|
55 |
|
56 |
/**
|
57 |
* Add privacy policy suggestions to WordPress privacy generator introduced in WordPress 4.9.6.
|
1200 |
// Loops through all desired services.
|
1201 |
foreach ( $service_array as $service ) {
|
1202 |
// Check if necessary usernames are set and display warning to admins, if needed.
|
1203 |
+
if ( 'paypal' === $service && ! array_key_exists( 'paypalbuttonid', $atts ) ) {
|
|
|
|
|
1204 |
$paypal_error = 1;
|
1205 |
} elseif ( 'paypalme' === $service && ! array_key_exists( 'paypalmeid', $atts ) ) {
|
1206 |
$paypalme_error = 1;
|
1523 |
update_option( 'shariff3uu_design', $shariff3uu_design );
|
1524 |
}
|
1525 |
|
|
|
|
|
|
|
|
|
1526 |
// Displays a warning to admins if patreon is set, but no patreon username was provided.
|
1527 |
if ( 1 === $patreon_error && current_user_can( 'manage_options' ) ) {
|
1528 |
$output .= '<div class="shariff-warning">' . __( 'Username for patreon is missing!', 'shariff' ) . '</div>';
|
1573 |
* Clears transients and removes cron job upon deactivation.
|
1574 |
*/
|
1575 |
function shariff3uu_deactivate() {
|
|
|
1576 |
// Checks for multisite.
|
1577 |
if ( is_multisite() && function_exists( 'get_sites' ) && class_exists( 'WP_Site_Query' ) ) {
|
1578 |
$sites = get_sites();
|
updates.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Will be included by
|
4 |
* Put all update task here. Make sure that all "older" updates are checked first.
|
5 |
-
* At least you must set $
|
6 |
*
|
7 |
* @package WordPress
|
8 |
*/
|
@@ -17,98 +17,98 @@ if ( ! class_exists( 'WP' ) ) {
|
|
17 |
* Split options in database according to new setting tabs.
|
18 |
* Delete old cache directory.
|
19 |
*/
|
20 |
-
if ( isset( $
|
21 |
|
22 |
// Basic options.
|
23 |
-
if ( isset( $
|
24 |
-
$
|
25 |
}
|
26 |
-
if ( isset( $
|
27 |
-
$
|
28 |
}
|
29 |
-
if ( isset( $
|
30 |
-
$
|
31 |
}
|
32 |
-
if ( isset( $
|
33 |
-
$
|
34 |
}
|
35 |
-
if ( isset( $
|
36 |
-
$
|
37 |
}
|
38 |
-
if ( isset( $
|
39 |
-
$
|
40 |
}
|
41 |
-
if ( isset( $
|
42 |
-
$
|
43 |
}
|
44 |
-
if ( isset( $
|
45 |
-
$
|
46 |
}
|
47 |
-
if ( isset( $
|
48 |
-
$
|
49 |
}
|
50 |
-
if ( isset( $
|
51 |
-
$
|
52 |
}
|
53 |
-
if ( isset( $
|
54 |
-
$
|
55 |
}
|
56 |
|
57 |
// Design options.
|
58 |
-
if ( isset( $
|
59 |
-
$
|
60 |
}
|
61 |
-
if ( isset( $
|
62 |
-
$
|
63 |
}
|
64 |
-
if ( isset( $
|
65 |
-
$
|
66 |
}
|
67 |
-
if ( isset( $
|
68 |
-
$
|
69 |
}
|
70 |
-
if ( isset( $
|
71 |
-
$
|
72 |
}
|
73 |
-
if ( isset( $
|
74 |
-
$
|
75 |
}
|
76 |
-
if ( isset( $
|
77 |
-
$
|
78 |
}
|
79 |
|
80 |
// Advanced options.
|
81 |
-
if ( isset( $
|
82 |
-
$
|
83 |
}
|
84 |
-
if ( isset( $
|
85 |
-
$
|
86 |
}
|
87 |
-
if ( isset( $
|
88 |
-
$
|
89 |
}
|
90 |
-
if ( isset( $
|
91 |
-
$
|
92 |
}
|
93 |
|
94 |
// Mailform options.
|
95 |
-
if ( isset( $
|
96 |
-
$GLOBALS['shariff3UU_mailform']['mail_add_post_content'] = $
|
97 |
}
|
98 |
-
if ( isset( $
|
99 |
-
$GLOBALS['shariff3UU_mailform']['mail_sender_name'] = $
|
100 |
}
|
101 |
-
if ( isset( $
|
102 |
-
$GLOBALS['shariff3UU_mailform']['mail_sender_from'] = $
|
103 |
}
|
104 |
// Default options should be as save as possible, same reason the statistics are disabled by default.
|
105 |
$GLOBALS['shariff3UU_mailform']['require_sender'] = 1;
|
106 |
|
107 |
// Update global.
|
108 |
-
$
|
109 |
|
110 |
// Update version.
|
111 |
-
$
|
112 |
}
|
113 |
|
114 |
/**
|
@@ -116,23 +116,23 @@ if ( isset( $GLOBALS['shariff3UU']['version'] ) && -1 === version_compare( $GLOB
|
|
116 |
* Update options that were moved.
|
117 |
* Delete old cache directory and db entry.
|
118 |
*/
|
119 |
-
if ( isset( $
|
120 |
|
121 |
// Update options that were moved.
|
122 |
-
if ( isset( $
|
123 |
-
$
|
124 |
}
|
125 |
-
if ( isset( $
|
126 |
-
$
|
127 |
}
|
128 |
-
if ( isset( $
|
129 |
-
$
|
130 |
}
|
131 |
-
if ( isset( $
|
132 |
-
$
|
133 |
}
|
134 |
-
if ( isset( $
|
135 |
-
$
|
136 |
}
|
137 |
|
138 |
// Delete old cache directory and db entry.
|
@@ -160,10 +160,10 @@ if ( isset( $GLOBALS['shariff3UU']['version'] ) && -1 === version_compare( $GLOB
|
|
160 |
}
|
161 |
|
162 |
// Disable Twitter backend due to new service OpenShareCount.com.
|
163 |
-
$
|
164 |
|
165 |
// Update version.
|
166 |
-
$
|
167 |
}
|
168 |
|
169 |
/**
|
@@ -198,31 +198,31 @@ function shariff_removeoldfiles( $directory ) {
|
|
198 |
/**
|
199 |
* Migration < 4.0
|
200 |
*/
|
201 |
-
if ( isset( $
|
202 |
|
203 |
// Set new option share counts, if statistic is enabled.
|
204 |
-
if ( isset( $
|
205 |
-
$
|
206 |
}
|
207 |
|
208 |
// Disable share counts if WP version < 4.4.
|
209 |
if ( version_compare( get_bloginfo( 'version' ), '4.4.0' ) < 1 ) {
|
210 |
-
unset( $
|
211 |
}
|
212 |
|
213 |
// Change button language to WordPress language, if it is set to auto and http_negotiate_language is not available (auto will not work without it).
|
214 |
-
if ( ! isset( $
|
215 |
-
$
|
216 |
}
|
217 |
|
218 |
// Update version.
|
219 |
-
$
|
220 |
}
|
221 |
|
222 |
/**
|
223 |
* Migration < 4.2
|
224 |
*/
|
225 |
-
if ( isset( $
|
226 |
// Make sure we have the $wpdb class ready.
|
227 |
global $wpdb;
|
228 |
|
@@ -259,14 +259,14 @@ if ( isset( $GLOBALS['shariff3UU']['version'] ) && -1 === version_compare( $GLOB
|
|
259 |
/**
|
260 |
* Migration < 4.5
|
261 |
*/
|
262 |
-
if ( isset( $
|
263 |
// Update language settings.
|
264 |
-
if ( ! isset( $
|
265 |
-
$
|
266 |
-
$
|
267 |
}
|
268 |
// Update version.
|
269 |
-
$
|
270 |
}
|
271 |
|
272 |
/**
|
@@ -311,27 +311,27 @@ function shariff3uu_purge_transients() {
|
|
311 |
}
|
312 |
|
313 |
// Set new version.
|
314 |
-
$
|
315 |
-
$
|
316 |
|
317 |
/**
|
318 |
-
* Remove empty elements and save to options table.
|
319 |
*/
|
320 |
// Basic.
|
321 |
delete_option( 'shariff3uu_basic' );
|
322 |
-
$shariff3uu_basic = array_filter( $
|
323 |
update_option( 'shariff3uu_basic', $shariff3uu_basic );
|
324 |
// Design.
|
325 |
delete_option( 'shariff3uu_design' );
|
326 |
-
$shariff3uu_design = array_filter( $
|
327 |
update_option( 'shariff3uu_design', $shariff3uu_design );
|
328 |
// Advanced.
|
329 |
delete_option( 'shariff3uu_advanced' );
|
330 |
-
$shariff3uu_advanced = array_filter( $
|
331 |
update_option( 'shariff3uu_advanced', $shariff3uu_advanced );
|
332 |
// Statistic.
|
333 |
delete_option( 'shariff3uu_statistic' );
|
334 |
-
$shariff3uu_statistic = array_filter( $
|
335 |
update_option( 'shariff3uu_statistic', $shariff3uu_statistic );
|
336 |
|
337 |
// Remove old settings.
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Will be included by shariff3uu_update() only if needed.
|
4 |
* Put all update task here. Make sure that all "older" updates are checked first.
|
5 |
+
* At least you must set $shariff3uu['version'] = [YOUR VERSION]; to avoid includes later on.
|
6 |
*
|
7 |
* @package WordPress
|
8 |
*/
|
17 |
* Split options in database according to new setting tabs.
|
18 |
* Delete old cache directory.
|
19 |
*/
|
20 |
+
if ( isset( $shariff3uu['version'] ) && -1 === version_compare( $shariff3uu['version'], '2.2.5' ) ) {
|
21 |
|
22 |
// Basic options.
|
23 |
+
if ( isset( $shariff3uu['version'] ) ) {
|
24 |
+
$shariff3uu_basic['version'] = $shariff3uu['version'];
|
25 |
}
|
26 |
+
if ( isset( $shariff3uu['services'] ) ) {
|
27 |
+
$shariff3uu_basic['services'] = $shariff3uu['services'];
|
28 |
}
|
29 |
+
if ( isset( $shariff3uu['add_after_all_posts'] ) ) {
|
30 |
+
$shariff3uu_basic['add_after']['posts'] = $shariff3uu['add_after_all_posts'];
|
31 |
}
|
32 |
+
if ( isset( $shariff3uu['add_after_all_overview'] ) ) {
|
33 |
+
$shariff3uu_basic['add_after']['posts_blogpage'] = $shariff3uu['add_after_all_overview'];
|
34 |
}
|
35 |
+
if ( isset( $shariff3uu['add_after_all_pages'] ) ) {
|
36 |
+
$shariff3uu_basic['add_after']['pages'] = $shariff3uu['add_after_all_pages'];
|
37 |
}
|
38 |
+
if ( isset( $shariff3uu['add_after_all_custom_type'] ) ) {
|
39 |
+
$shariff3uu_basic['add_after']['custom_type'] = $shariff3uu['add_after_all_custom_type'];
|
40 |
}
|
41 |
+
if ( isset( $shariff3uu['add_before_all_posts'] ) ) {
|
42 |
+
$shariff3uu_basic['add_before']['posts'] = $shariff3uu['add_before_all_posts'];
|
43 |
}
|
44 |
+
if ( isset( $shariff3uu['add_before_all_overview'] ) ) {
|
45 |
+
$shariff3uu_basic['add_before']['posts_blogpage'] = $shariff3uu['add_before_all_overview'];
|
46 |
}
|
47 |
+
if ( isset( $shariff3uu['add_before_all_pages'] ) ) {
|
48 |
+
$shariff3uu_basic['add_before']['pages'] = $shariff3uu['add_before_all_pages'];
|
49 |
}
|
50 |
+
if ( isset( $shariff3uu['disable_on_protected'] ) ) {
|
51 |
+
$shariff3uu_basic['disable_on_protected'] = $shariff3uu['disable_on_protected'];
|
52 |
}
|
53 |
+
if ( isset( $shariff3uu['backend'] ) ) {
|
54 |
+
$shariff3uu_basic['backend'] = $shariff3uu['backend'];
|
55 |
}
|
56 |
|
57 |
// Design options.
|
58 |
+
if ( isset( $shariff3uu['language'] ) ) {
|
59 |
+
$shariff3uu_design['language'] = $shariff3uu['language'];
|
60 |
}
|
61 |
+
if ( isset( $shariff3uu['theme'] ) ) {
|
62 |
+
$shariff3uu_design['theme'] = $shariff3uu['theme'];
|
63 |
}
|
64 |
+
if ( isset( $shariff3uu['buttonsize'] ) ) {
|
65 |
+
$shariff3uu_design['buttonsize'] = $shariff3uu['buttonsize'];
|
66 |
}
|
67 |
+
if ( isset( $shariff3uu['vertical'] ) ) {
|
68 |
+
$shariff3uu_design['vertical'] = $shariff3uu['vertical'];
|
69 |
}
|
70 |
+
if ( isset( $shariff3uu['align'] ) ) {
|
71 |
+
$shariff3uu_design['align'] = $shariff3uu['align'];
|
72 |
}
|
73 |
+
if ( isset( $shariff3uu['align_widget'] ) ) {
|
74 |
+
$shariff3uu_design['align_widget'] = $shariff3uu['align_widget'];
|
75 |
}
|
76 |
+
if ( isset( $shariff3uu['style'] ) ) {
|
77 |
+
$shariff3uu_design['style'] = $shariff3uu['style'];
|
78 |
}
|
79 |
|
80 |
// Advanced options.
|
81 |
+
if ( isset( $shariff3uu['info_url'] ) ) {
|
82 |
+
$shariff3uu_advanced['info_url'] = $shariff3uu['info_url'];
|
83 |
}
|
84 |
+
if ( isset( $shariff3uu['twitter_via'] ) ) {
|
85 |
+
$shariff3uu_advanced['twitter_via'] = $shariff3uu['twitter_via'];
|
86 |
}
|
87 |
+
if ( isset( $shariff3uu['flattruser'] ) ) {
|
88 |
+
$shariff3uu_advanced['flattruser'] = $shariff3uu['flattruser'];
|
89 |
}
|
90 |
+
if ( isset( $shariff3uu['default_pinterest'] ) ) {
|
91 |
+
$shariff3uu_advanced['default_pinterest'] = $shariff3uu['default_pinterest'];
|
92 |
}
|
93 |
|
94 |
// Mailform options.
|
95 |
+
if ( isset( $shariff3uu['mail_add_post_content'] ) ) {
|
96 |
+
$GLOBALS['shariff3UU_mailform']['mail_add_post_content'] = $shariff3uu['mail_add_post_content'];
|
97 |
}
|
98 |
+
if ( isset( $shariff3uu['mail_sender_name'] ) ) {
|
99 |
+
$GLOBALS['shariff3UU_mailform']['mail_sender_name'] = $shariff3uu['mail_sender_name'];
|
100 |
}
|
101 |
+
if ( isset( $shariff3uu['mail_sender_from'] ) ) {
|
102 |
+
$GLOBALS['shariff3UU_mailform']['mail_sender_from'] = $shariff3uu['mail_sender_from'];
|
103 |
}
|
104 |
// Default options should be as save as possible, same reason the statistics are disabled by default.
|
105 |
$GLOBALS['shariff3UU_mailform']['require_sender'] = 1;
|
106 |
|
107 |
// Update global.
|
108 |
+
$shariff3uu = array_merge( $shariff3uu_basic, $shariff3uu_design, $shariff3uu_advanced, $GLOBALS['shariff3UU_mailform'] );
|
109 |
|
110 |
// Update version.
|
111 |
+
$shariff3uu['version'] = '2.3.0';
|
112 |
}
|
113 |
|
114 |
/**
|
116 |
* Update options that were moved.
|
117 |
* Delete old cache directory and db entry.
|
118 |
*/
|
119 |
+
if ( isset( $shariff3uu['version'] ) && -1 === version_compare( $shariff3uu['version'], '3.3.0' ) ) {
|
120 |
|
121 |
// Update options that were moved.
|
122 |
+
if ( isset( $shariff3uu['backend'] ) ) {
|
123 |
+
$shariff3uu_statistic['backend'] = $shariff3uu['backend'];
|
124 |
}
|
125 |
+
if ( isset( $shariff3uu['fb_id'] ) ) {
|
126 |
+
$shariff3uu_statistic['fb_id'] = $shariff3uu['fb_id'];
|
127 |
}
|
128 |
+
if ( isset( $shariff3uu['fb_secret'] ) ) {
|
129 |
+
$shariff3uu_statistic['fb_secret'] = $shariff3uu['fb_secret'];
|
130 |
}
|
131 |
+
if ( isset( $shariff3uu['ttl'] ) ) {
|
132 |
+
$shariff3uu_statistic['ttl'] = $shariff3uu['ttl'];
|
133 |
}
|
134 |
+
if ( isset( $shariff3uu['disable'] ) ) {
|
135 |
+
$shariff3uu_statistic['disable'] = $shariff3uu['disable'];
|
136 |
}
|
137 |
|
138 |
// Delete old cache directory and db entry.
|
160 |
}
|
161 |
|
162 |
// Disable Twitter backend due to new service OpenShareCount.com.
|
163 |
+
$shariff3uu_statistic['disable']['twitter'] = 1;
|
164 |
|
165 |
// Update version.
|
166 |
+
$shariff3uu['version'] = '3.3.0';
|
167 |
}
|
168 |
|
169 |
/**
|
198 |
/**
|
199 |
* Migration < 4.0
|
200 |
*/
|
201 |
+
if ( isset( $shariff3uu['version'] ) && -1 === version_compare( $shariff3uu['version'], '4.0.0' ) ) {
|
202 |
|
203 |
// Set new option share counts, if statistic is enabled.
|
204 |
+
if ( isset( $shariff3uu_statistic['backend'] ) ) {
|
205 |
+
$shariff3uu_statistic['sharecounts'] = 1;
|
206 |
}
|
207 |
|
208 |
// Disable share counts if WP version < 4.4.
|
209 |
if ( version_compare( get_bloginfo( 'version' ), '4.4.0' ) < 1 ) {
|
210 |
+
unset( $shariff3uu_statistic['backend'] );
|
211 |
}
|
212 |
|
213 |
// Change button language to WordPress language, if it is set to auto and http_negotiate_language is not available (auto will not work without it).
|
214 |
+
if ( ! isset( $shariff3uu_design['lang'] ) && ! function_exists( 'http_negotiate_language' ) ) {
|
215 |
+
$shariff3uu_design['lang'] = substr( get_bloginfo( 'language' ), 0, 2 );
|
216 |
}
|
217 |
|
218 |
// Update version.
|
219 |
+
$shariff3uu['version'] = '4.0.0';
|
220 |
}
|
221 |
|
222 |
/**
|
223 |
* Migration < 4.2
|
224 |
*/
|
225 |
+
if ( isset( $shariff3uu['version'] ) && -1 === version_compare( $shariff3uu['version'], '4.2.0' ) ) {
|
226 |
// Make sure we have the $wpdb class ready.
|
227 |
global $wpdb;
|
228 |
|
259 |
/**
|
260 |
* Migration < 4.5
|
261 |
*/
|
262 |
+
if ( isset( $shariff3uu['version'] ) && -1 === version_compare( $shariff3uu['version'], '4.5.0' ) ) {
|
263 |
// Update language settings.
|
264 |
+
if ( ! isset( $shariff3uu_design['lang'] ) ) {
|
265 |
+
$shariff3uu_design['autolang'] = 1;
|
266 |
+
$shariff3uu_design['lang'] = substr( get_locale(), 0, 2 );
|
267 |
}
|
268 |
// Update version.
|
269 |
+
$shariff3uu['version'] = '4.5.0';
|
270 |
}
|
271 |
|
272 |
/**
|
311 |
}
|
312 |
|
313 |
// Set new version.
|
314 |
+
$shariff3uu['version'] = $code_version;
|
315 |
+
$shariff3uu_basic['version'] = $code_version;
|
316 |
|
317 |
/**
|
318 |
+
* Remove empty elements and save to options table. We had a mix up with shariff3uu and shariff3UU in the past and update_option is not case senitive. Therefore we actually need to delete and recreate it.
|
319 |
*/
|
320 |
// Basic.
|
321 |
delete_option( 'shariff3uu_basic' );
|
322 |
+
$shariff3uu_basic = array_filter( $shariff3uu_basic );
|
323 |
update_option( 'shariff3uu_basic', $shariff3uu_basic );
|
324 |
// Design.
|
325 |
delete_option( 'shariff3uu_design' );
|
326 |
+
$shariff3uu_design = array_filter( $shariff3uu_design );
|
327 |
update_option( 'shariff3uu_design', $shariff3uu_design );
|
328 |
// Advanced.
|
329 |
delete_option( 'shariff3uu_advanced' );
|
330 |
+
$shariff3uu_advanced = array_filter( $shariff3uu_advanced );
|
331 |
update_option( 'shariff3uu_advanced', $shariff3uu_advanced );
|
332 |
// Statistic.
|
333 |
delete_option( 'shariff3uu_statistic' );
|
334 |
+
$shariff3uu_statistic = array_filter( $shariff3uu_statistic );
|
335 |
update_option( 'shariff3uu_statistic', $shariff3uu_statistic );
|
336 |
|
337 |
// Remove old settings.
|