Changeset 3056811
- Timestamp:
- 03/22/2024 01:03:39 PM (22 months ago)
- Location:
- european-school-radio-widget
- Files:
-
- 39 added
- 2 edited
-
tags/2.2/uninstall.php (modified) (1 diff)
-
tags/2.3 (added)
-
tags/2.3/admin (added)
-
tags/2.3/admin/admin.php (added)
-
tags/2.3/ersradio-widget.php (added)
-
tags/2.3/includes (added)
-
tags/2.3/includes/components (added)
-
tags/2.3/includes/components/autoStartPlayer.php (added)
-
tags/2.3/includes/components/next_playing (added)
-
tags/2.3/includes/components/next_playing/nextPlaying.php (added)
-
tags/2.3/includes/components/now_playing (added)
-
tags/2.3/includes/components/now_playing/nowPlaying.php (added)
-
tags/2.3/includes/components/now_playing/nowPlayingProduction.php (added)
-
tags/2.3/includes/components/now_playing/nowPlayingSong.php (added)
-
tags/2.3/includes/components/player.php (added)
-
tags/2.3/includes/components/volumeSlider.php (added)
-
tags/2.3/includes/css (added)
-
tags/2.3/includes/css/adminStyling.css (added)
-
tags/2.3/includes/css/widgetStyling.css (added)
-
tags/2.3/includes/images (added)
-
tags/2.3/includes/images/ESR_Flag.png (added)
-
tags/2.3/includes/images/ESR_FlagWithPlay.png (added)
-
tags/2.3/includes/images/new-logo-full-colors.png (added)
-
tags/2.3/includes/images/screenshot-1.png (added)
-
tags/2.3/includes/images/screenshot-2.png (added)
-
tags/2.3/includes/init_scripts (added)
-
tags/2.3/includes/init_scripts/loading_css.php (added)
-
tags/2.3/includes/init_scripts/loading_translations.php (added)
-
tags/2.3/includes/option_scripts (added)
-
tags/2.3/includes/option_scripts/save_newsletter_option.php (added)
-
tags/2.3/languages (added)
-
tags/2.3/languages/ersadio.mo (added)
-
tags/2.3/languages/ersradio-el.mo (added)
-
tags/2.3/languages/ersradio-el.po (added)
-
tags/2.3/languages/ersradio.po (added)
-
tags/2.3/licence.txt (added)
-
tags/2.3/public (added)
-
tags/2.3/public/public.php (added)
-
tags/2.3/readme.txt (added)
-
tags/2.3/uninstall.php (added)
-
trunk/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
european-school-radio-widget/tags/2.2/uninstall.php
r3053652 r3056811 5 5 } 6 6 7 $siteToken = get_option('ersradio-widget-site-token');8 $curl = curl_init();9 10 curl_setopt_array( $curl, array(11 CURLOPT_URL => 'https://analytics.europeanschoolradio.eu/api/wp-widget-auth/uninstallSite',12 CURLOPT_RETURNTRANSFER => true,13 CURLOPT_ENCODING => '',14 CURLOPT_MAXREDIRS => 10,15 CURLOPT_TIMEOUT => 0,16 CURLOPT_FOLLOWLOCATION => true,17 CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,18 CURLOPT_CUSTOMREQUEST => 'POST',19 CURLOPT_POSTFIELDS => 'site_token='.urlencode($siteToken),20 CURLOPT_HTTPHEADER => array(21 'Content-Type: application/x-www-form-urlencoded'22 ),23 ) );24 25 curl_exec( $curl );26 27 curl_close( $curl );28 29 delete_option('ersradio-widget-site-token');30 7 delete_option('widget_ersradio-widget'); -
european-school-radio-widget/trunk/uninstall.php
r3053652 r3056811 5 5 } 6 6 7 $siteToken = get_option('ersradio-widget-site-token');8 $curl = curl_init();9 10 curl_setopt_array( $curl, array(11 CURLOPT_URL => 'https://analytics.europeanschoolradio.eu/api/wp-widget-auth/uninstallSite',12 CURLOPT_RETURNTRANSFER => true,13 CURLOPT_ENCODING => '',14 CURLOPT_MAXREDIRS => 10,15 CURLOPT_TIMEOUT => 0,16 CURLOPT_FOLLOWLOCATION => true,17 CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,18 CURLOPT_CUSTOMREQUEST => 'POST',19 CURLOPT_POSTFIELDS => 'site_token='.urlencode($siteToken),20 CURLOPT_HTTPHEADER => array(21 'Content-Type: application/x-www-form-urlencoded'22 ),23 ) );24 25 curl_exec( $curl );26 27 curl_close( $curl );28 29 delete_option('ersradio-widget-site-token');30 7 delete_option('widget_ersradio-widget');
Note: See TracChangeset
for help on using the changeset viewer.