Subscribe To Comments Reloaded - Version 190523

Version Description

Download this release

Release Info

Developer wpkube
Plugin Icon 128x128 Subscribe To Comments Reloaded
Version 190523
Comparing to
See all releases

Code changes from version 190510 to 190523

options/stcr_system.php CHANGED
@@ -723,14 +723,7 @@ else {
723
  ?>
724
  </tbody>
725
  </table>
726
-
727
- <?php
728
- // Register Ajax actions on wp_subscribe_reloaded->define_wp_hooks
729
- $reportPath = $wp_subscribe_reloaded->stcr->utils->stcr_create_file( "systemInformation.txt", $stcr_system_information );
730
-
731
- ?>
732
- <input class="reportPath" type="hidden" name="reportPath" value="<?php echo $reportPath; ?>">
733
- <textarea class="reportData stcr-hidden" readonly name="reportPath" ><?php echo serialize( $stcr_system_information ); ?></textarea>
734
  </form>
735
 
736
  <form name="stcr_sysinfo_form" class="stcr-hidden" action="<?php echo esc_url( admin_url( 'admin.php?page=stcr_system' ) ); ?>" method="post">
723
  ?>
724
  </tbody>
725
  </table>
726
+
 
 
 
 
 
 
 
727
  </form>
728
 
729
  <form name="stcr_sysinfo_form" class="stcr-hidden" action="<?php echo esc_url( admin_url( 'admin.php?page=stcr_system' ) ); ?>" method="post">
readme.txt CHANGED
@@ -7,7 +7,7 @@ Requires at least: 4.0
7
  Requires PHP: 5.6
8
  Requires MySQL: 5.6
9
  Tested up to: 5.2
10
- Stable tag: 190510
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -100,6 +100,9 @@ Just go to the Options Panel and click the generate button. By generating a new
100
 
101
  == Changelog ==
102
 
 
 
 
103
  = v190510 =
104
  * **New** Option to only enable the functionality for blog posts ( option named "Enable only for blog posts" located in WP admin > StCR > StCR Options)
105
  * **Tweak** Info on subscriber and subscriptions amount moved into separate table
7
  Requires PHP: 5.6
8
  Requires MySQL: 5.6
9
  Tested up to: 5.2
10
+ Stable tag: 190523
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
100
 
101
  == Changelog ==
102
 
103
+ = v190523 =
104
+ * **Fix** Remove the old system information functionality
105
+
106
  = v190510 =
107
  * **New** Option to only enable the functionality for blog posts ( option named "Enable only for blog posts" located in WP admin > StCR > StCR Options)
108
  * **Tweak** Info on subscriber and subscriptions amount moved into separate table
subscribe-to-comments-reloaded.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Subscribe to Comments Reloaded
4
  * Description: Subscribe to Comments Reloaded is a robust plugin that enables commenters to sign up for e-mail notifications. It includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts or suspend all notifications.
5
- * Version: 190510
6
  * Author: WPKube
7
  * Author URI: http://wpkube.com/
8
  * License: GPL-2.0+
2
  /**
3
  * Plugin Name: Subscribe to Comments Reloaded
4
  * Description: Subscribe to Comments Reloaded is a robust plugin that enables commenters to sign up for e-mail notifications. It includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts or suspend all notifications.
5
+ * Version: 190523
6
  * Author: WPKube
7
  * Author URI: http://wpkube.com/
8
  * License: GPL-2.0+
utils/stcr_utils.php CHANGED
@@ -828,90 +828,7 @@ if( ! class_exists('\\'.__NAMESPACE__.'\\stcr_utils') )
828
 
829
  return;
830
  }
831
- /**
832
- * Create a file with the given information.
833
- *
834
- * @since 07-Dic-2018
835
- * @author reedyseth
836
- *
837
- * @param string $_hookname The notice to be binded.
838
- */
839
- public function stcr_create_file( $_filename, $_filedata )
840
- {
841
- $plugin_dir = plugin_dir_path( __DIR__ );
842
- $file_path = $plugin_dir . "utils/" ;
843
- $path = "";
844
-
845
- // Check if $_filedata is an array
846
- if ( is_array( $_filedata ) )
847
- {
848
- $_filedata = serialize( $_filedata );
849
- }
850
-
851
- if( is_writable( $file_path ) )
852
- {
853
- $handle = fopen( $file_path . $_filename, "w" );
854
- fwrite( $handle, $_filedata);
855
- $path = "true|" . plugins_url( "download.php", __FILE__ ) . "|";
856
- fclose( $handle );
857
- }
858
- else
859
- {
860
- $path = "false|Check file permissions|{$file_path}";
861
- }
862
-
863
- return $path;
864
- }
865
- /**
866
- * Call stcr_create_file to create the file again.
867
- *
868
- * @since 10-Dic-2018
869
- * @author reedyseth
870
- *
871
- */
872
- public function stcr_recreate_file()
873
- {
874
- $filename = esc_attr( $_POST['fileName'] );
875
- $filedata = stripslashes($_POST['fileData']);
876
- $action = esc_attr( $_POST['action'] );
877
- // sleep(1/2);
878
-
879
- // Check Nonce
880
- $isValid = check_ajax_referer( $action, 'security', false );
881
-
882
- if( $isValid )
883
- {
884
- $result = $this->stcr_create_file( $filename, unserialize($filedata) );
885
- $result = explode( "|", $result);
886
- $data = array(
887
- "result" => $result[0],
888
- "path" => $result[1],
889
- "additionalInfo" => $result[2]
890
- );
891
- // Send success message
892
- wp_send_json_success( $data );
893
- }
894
-
895
- die();
896
- }
897
- /**
898
- * Delete the Report File to keep the house clean
899
- *
900
- * @since 12-Dic-2018
901
- * @author reedyseth
902
- *
903
- */
904
- public function stcr_delete_report_file()
905
- {
906
- $plugin_dir = plugin_dir_path( __DIR__ );
907
- $file = $plugin_dir . "utils/systemInformation.txt" ;
908
-
909
- if( file_exists( $file ) && is_writable( $plugin_dir ) )
910
- {
911
- // unlink the file
912
- unlink($file);
913
- }
914
- }
915
  /**
916
  * Update a StCR notification status
917
  *
828
 
829
  return;
830
  }
831
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
832
  /**
833
  * Update a StCR notification status
834
  *
utils/systemInformation.txt DELETED
@@ -1 +0,0 @@
1
- a:4:{s:21:"Wordpress Environment";a:13:{s:8:"Home URL";s:31:"http://localhost/devesh/plugins";s:8:"Site URL";s:31:"http://localhost/devesh/plugins";s:17:"WordPress Version";s:3:"5.2";s:9:"Multisite";b:0;s:8:"Language";s:5:"en_US";s:19:"Permalink Structure";s:36:"/%year%/%monthnum%/%day%/%postname%/";s:12:"Table Prefix";s:3:"wp_";s:19:"Table Prefix Length";i:3;s:19:"Table Prefix Status";s:10:"Acceptable";s:24:"Registered Post Statuses";s:139:"publish, future, draft, pending, private, trash, auto-draft, inherit, request-pending, request-confirmed, request-failed, request-completed";s:12:"Memory Limit";s:6:"256 MB";s:13:"WP Debug Mode";b:1;s:7:"WP Cron";b:0;}s:18:"Server Environment";a:14:{s:14:"TLS Connection";s:23:"Connection uses TLS 1.3";s:10:"TLS Rating";s:13:"Probably Okay";s:11:"Server Info";s:32:"Apache/2.4.37 (Win64) PHP/7.2.14";s:11:"PHP Version";s:6:"7.2.14";s:17:"PHP Post Max Size";s:6:"200 MB";s:22:"PHP Max Execution Time";s:3:"120";s:18:"PHP Max Input Vars";s:4:"2500";s:19:"PHP Max Upload Size";s:6:"200 MB";s:12:"cURL Version";s:40:"<div class="system-success">7.61.1</div>";s:13:"MySQL Version";s:6:"5.7.24";s:23:"Default Timezone is UTC";s:3:"Yes";s:11:"DOMDocument";s:3:"Yes";s:4:"gzip";s:3:"Yes";s:19:"GD Graphics Library";s:3:"Yes";}s:24:"WordPress Active Plugins";a:8:{s:14:"Classic Editor";a:12:{s:4:"Name";s:14:"Classic Editor";s:9:"PluginURI";s:45:"https://wordpress.org/plugins/classic-editor/";s:7:"Version";s:3:"1.4";s:11:"Description";s:154:"Enables the WordPress classic editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports the older plugins that extend this screen.";s:6:"Author";s:22:"WordPress Contributors";s:9:"AuthorURI";s:44:"https://github.com/WordPress/classic-editor/";s:10:"TextDomain";s:14:"classic-editor";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:14:"Classic Editor";s:10:"AuthorName";s:22:"WordPress Contributors";s:6:"Status";s:6:"active";}s:14:"Cool Tag Cloud";a:12:{s:4:"Name";s:14:"Cool Tag Cloud";s:9:"PluginURI";s:45:"https://wordpress.org/plugins/cool-tag-cloud/";s:7:"Version";s:4:"2.13";s:11:"Description";s:39:"A simple, yet very beautiful tag cloud.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:23:"https://www.wpkube.com/";s:10:"TextDomain";s:14:"cool-tag-cloud";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:14:"Cool Tag Cloud";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:6:"active";}s:26:"Force Plugin Updates Check";a:12:{s:4:"Name";s:26:"Force Plugin Updates Check";s:9:"PluginURI";s:0:"";s:7:"Version";s:5:"1.0.2";s:11:"Description";s:103:"Adds a link to the toolbar that allows site admins to force WordPress to run a check for plugin updates";s:6:"Author";s:17:"Pippin Williamson";s:9:"AuthorURI";s:25:"http://pippinsplugins.com";s:10:"TextDomain";s:26:"force-plugin-updates-check";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:26:"Force Plugin Updates Check";s:10:"AuthorName";s:17:"Pippin Williamson";s:6:"Status";s:6:"active";}s:54:"Kiwi Social Share - Social Media Share Buttons & Icons";a:12:{s:4:"Name";s:54:"Kiwi Social Share - Social Media Share Buttons & Icons";s:9:"PluginURI";s:0:"";s:7:"Version";s:6:"2.0.15";s:11:"Description";s:126:"Really beautiful & simple social media & share buttons + icons. Simplicity & speed is key with this social media share plugin.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:23:"https://www.wpkube.com/";s:10:"TextDomain";s:17:"kiwi-social-share";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:54:"Kiwi Social Share - Social Media Share Buttons & Icons";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:6:"active";}s:14:"Loco Translate";a:12:{s:4:"Name";s:14:"Loco Translate";s:9:"PluginURI";s:45:"https://wordpress.org/plugins/loco-translate/";s:7:"Version";s:5:"2.2.2";s:11:"Description";s:50:"Translate themes and plugins directly in WordPress";s:6:"Author";s:12:"Tim Whitlock";s:9:"AuthorURI";s:37:"https://localise.biz/wordpress/plugin";s:10:"TextDomain";s:14:"loco-translate";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:14:"Loco Translate";s:10:"AuthorName";s:12:"Tim Whitlock";s:6:"Status";s:6:"active";}s:13:"Query Monitor";a:12:{s:4:"Name";s:13:"Query Monitor";s:9:"PluginURI";s:25:"https://querymonitor.com/";s:7:"Version";s:5:"3.3.4";s:11:"Description";s:40:"The Developer Tools Panel for WordPress.";s:6:"Author";s:15:"John Blackbourn";s:9:"AuthorURI";s:25:"https://querymonitor.com/";s:10:"TextDomain";s:13:"query-monitor";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:13:"Query Monitor";s:10:"AuthorName";s:15:"John Blackbourn";s:6:"Status";s:6:"active";}s:30:"Subscribe to Comments Reloaded";a:12:{s:4:"Name";s:30:"Subscribe to Comments Reloaded";s:9:"PluginURI";s:0:"";s:7:"Version";s:6:"190429";s:11:"Description";s:250:"Subscribe to Comments Reloaded is a robust plugin that enables commenters to sign up for e-mail notifications. It includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts or suspend all notifications.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:18:"http://wpkube.com/";s:10:"TextDomain";s:30:"subscribe-to-comments-reloaded";s:10:"DomainPath";s:6:"/langs";s:7:"Network";b:0;s:5:"Title";s:30:"Subscribe to Comments Reloaded";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:6:"active";}s:15:"WP Mail Logging";a:12:{s:4:"Name";s:15:"WP Mail Logging";s:9:"PluginURI";s:52:"http://wordpress.org/extend/plugins/wp-mail-logging/";s:7:"Version";s:5:"1.9.1";s:11:"Description";s:34:"Logs each email sent by WordPress.";s:6:"Author";s:21:"Christian Z&ouml;ller";s:9:"AuthorURI";s:15:"http://no3x.de/";s:10:"TextDomain";s:15:"wp-mail-logging";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:15:"WP Mail Logging";s:10:"AuthorName";s:21:"Christian Z&ouml;ller";s:6:"Status";s:6:"active";}}s:26:"WordPress Inactive Plugins";a:23:{s:16:"Advanced Excerpt";a:12:{s:4:"Name";s:16:"Advanced Excerpt";s:9:"PluginURI";s:46:"http://wordpress.org/plugins/advanced-excerpt/";s:7:"Version";s:5:"4.2.8";s:11:"Description";s:49:"Control the appearance of WordPress post excerpts";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:18:"https://wpkube.com";s:10:"TextDomain";s:16:"advanced-excerpt";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:16:"Advanced Excerpt";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:17:"Akismet Anti-Spam";a:12:{s:4:"Name";s:17:"Akismet Anti-Spam";s:9:"PluginURI";s:20:"https://akismet.com/";s:7:"Version";s:5:"4.1.1";s:11:"Description";s:279:"Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.";s:6:"Author";s:10:"Automattic";s:9:"AuthorURI";s:41:"https://automattic.com/wordpress-plugins/";s:10:"TextDomain";s:7:"akismet";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:17:"Akismet Anti-Spam";s:10:"AuthorName";s:10:"Automattic";s:6:"Status";s:8:"inactive";}s:10:"Author Box";a:12:{s:4:"Name";s:10:"Author Box";s:9:"PluginURI";s:0:"";s:7:"Version";s:5:"1.0.0";s:11:"Description";s:36:"Display information about the author";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:18:"http://wpkube.com/";s:10:"TextDomain";s:10:"author-box";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:10:"Author Box";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:12:"Authors List";a:12:{s:4:"Name";s:12:"Authors List";s:9:"PluginURI";s:0:"";s:7:"Version";s:5:"1.0.0";s:11:"Description";s:77:"Display a list or grid of post authors and links to their post archives page.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:18:"http://wpkube.com/";s:10:"TextDomain";s:12:"authors-list";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:12:"Authors List";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:10:"BuddyPress";a:12:{s:4:"Name";s:10:"BuddyPress";s:9:"PluginURI";s:23:"https://buddypress.org/";s:7:"Version";s:5:"4.2.0";s:11:"Description";s:126:"BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!";s:6:"Author";s:24:"The BuddyPress Community";s:9:"AuthorURI";s:23:"https://buddypress.org/";s:10:"TextDomain";s:10:"buddypress";s:10:"DomainPath";s:14:"/bp-languages/";s:7:"Network";b:0;s:5:"Title";s:10:"BuddyPress";s:10:"AuthorName";s:24:"The BuddyPress Community";s:6:"Status";s:8:"inactive";}s:13:"Code Snippets";a:12:{s:4:"Name";s:13:"Code Snippets";s:9:"PluginURI";s:42:"https://github.com/sheabunge/code-snippets";s:7:"Version";s:6:"2.13.3";s:11:"Description";s:122:"An easy, clean and simple way to run code snippets on your site. No need to edit to your theme's functions.php file again!";s:6:"Author";s:10:"Shea Bunge";s:9:"AuthorURI";s:21:"https://sheabunge.com";s:10:"TextDomain";s:13:"code-snippets";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:13:"Code Snippets";s:10:"AuthorName";s:10:"Shea Bunge";s:6:"Status";s:8:"inactive";}s:19:"Custom Post Type UI";a:12:{s:4:"Name";s:19:"Custom Post Type UI";s:9:"PluginURI";s:53:"https://github.com/WebDevStudios/custom-post-type-ui/";s:7:"Version";s:5:"1.6.1";s:11:"Description";s:77:"Admin panel for creating custom post types and custom taxonomies in WordPress";s:6:"Author";s:13:"WebDevStudios";s:9:"AuthorURI";s:26:"https://webdevstudios.com/";s:10:"TextDomain";s:19:"custom-post-type-ui";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:19:"Custom Post Type UI";s:10:"AuthorName";s:13:"WebDevStudios";s:6:"Status";s:8:"inactive";}s:22:"Easy Digital Downloads";a:12:{s:4:"Name";s:22:"Easy Digital Downloads";s:9:"PluginURI";s:32:"https://easydigitaldownloads.com";s:7:"Version";s:6:"2.9.12";s:11:"Description";s:56:"The easiest way to sell digital products with WordPress.";s:6:"Author";s:22:"Easy Digital Downloads";s:9:"AuthorURI";s:32:"https://easydigitaldownloads.com";s:10:"TextDomain";s:22:"easy-digital-downloads";s:10:"DomainPath";s:9:"languages";s:7:"Network";b:0;s:5:"Title";s:22:"Easy Digital Downloads";s:10:"AuthorName";s:22:"Easy Digital Downloads";s:6:"Status";s:8:"inactive";}s:33:"Fancy Coming Plugin for WordPress";a:12:{s:4:"Name";s:33:"Fancy Coming Plugin for WordPress";s:9:"PluginURI";s:43:"https://fancythemes.com/plugins/coming-soon";s:7:"Version";s:5:"1.3.0";s:11:"Description";s:229:"Fancy Coming soon is a responsive coming soon WordPress plugin that comes with well designed coming soon page and lots of useful features including customization via Live Customizer, MailChimp integration, custom forms, and more.";s:6:"Author";s:11:"FancyThemes";s:9:"AuthorURI";s:43:"https://profiles.wordpress.org/fancythemes/";s:10:"TextDomain";s:17:"fancy-coming-soon";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:33:"Fancy Coming Plugin for WordPress";s:10:"AuthorName";s:11:"FancyThemes";s:6:"Status";s:8:"inactive";}s:26:"Go Redirects URL Forwarder";a:12:{s:4:"Name";s:26:"Go Redirects URL Forwarder";s:9:"PluginURI";s:0:"";s:7:"Version";s:5:"2.0.1";s:11:"Description";s:39:"A super-simple URL forwarder WordPress.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:23:"https://www.wpkube.com/";s:10:"TextDomain";s:12:"go-redirects";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:26:"Go Redirects URL Forwarder";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:11:"Hello Dolly";a:12:{s:4:"Name";s:11:"Hello Dolly";s:9:"PluginURI";s:41:"http://wordpress.org/plugins/hello-dolly/";s:7:"Version";s:5:"1.7.1";s:11:"Description";s:295:"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.";s:6:"Author";s:14:"Matt Mullenweg";s:9:"AuthorURI";s:13:"http://ma.tt/";s:10:"TextDomain";s:0:"";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:11:"Hello Dolly";s:10:"AuthorName";s:14:"Matt Mullenweg";s:6:"Status";s:8:"inactive";}s:24:"Instagram Feed Shortcode";a:12:{s:4:"Name";s:24:"Instagram Feed Shortcode";s:9:"PluginURI";s:0:"";s:7:"Version";s:5:"1.0.0";s:11:"Description";s:41:"Display instagram feed using a shortcode.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:18:"http://wpkube.com/";s:10:"TextDomain";s:24:"instagram-feed-shortcode";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:24:"Instagram Feed Shortcode";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:11:"Optin Forms";a:12:{s:4:"Name";s:11:"Optin Forms";s:9:"PluginURI";s:43:"http://fancythemes.com/plugins/optin-forms/";s:7:"Version";s:7:"1.2.9.2";s:11:"Description";s:133:"Create beautiful optin forms with ease. Choose a form design, customize it, and add your form to your blog with a simple mouse-click.";s:6:"Author";s:11:"FancyThemes";s:9:"AuthorURI";s:26:"http://www.fancythemes.com";s:10:"TextDomain";s:11:"optin-forms";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:11:"Optin Forms";s:10:"AuthorName";s:11:"FancyThemes";s:6:"Status";s:8:"inactive";}s:13:"Page Takeover";a:12:{s:4:"Name";s:13:"Page Takeover";s:9:"PluginURI";s:43:"https://wordpress.org/plugins/page-takeover";s:7:"Version";s:5:"1.0.3";s:11:"Description";s:105:"Create a full-screen overlay without a developer. Promote your content and offers in a full-screen popup.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:18:"https://wpkube.com";s:10:"TextDomain";s:13:"page-takeover";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:13:"Page Takeover";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:14:"PHP Everywhere";a:12:{s:4:"Name";s:14:"PHP Everywhere";s:9:"PluginURI";s:46:"http://www.alexander-fuchs.net/php-everywhere/";s:7:"Version";s:5:"1.4.5";s:11:"Description";s:56:"This Plugin enables PHP code in widgets, pages and posts";s:6:"Author";s:15:"Alexander Fuchs";s:9:"AuthorURI";s:30:"http://www.alexander-fuchs.net";s:10:"TextDomain";s:14:"php-everywhere";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:14:"PHP Everywhere";s:10:"AuthorName";s:15:"Alexander Fuchs";s:6:"Status";s:8:"inactive";}s:9:"Pig Latin";a:12:{s:4:"Name";s:9:"Pig Latin";s:9:"PluginURI";s:38:"http://wordpress.org/plugins/piglatin/";s:7:"Version";s:3:"0.2";s:11:"Description";s:182:"Overrides the current language and translates all messages into pig latin. This way you can easily spot, which messages were left untranslatable, while the interface is still usable.";s:6:"Author";s:17:"Nikolay Bachiyski";s:9:"AuthorURI";s:18:"http://nikolay.bg/";s:10:"TextDomain";s:8:"piglatin";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:9:"Pig Latin";s:10:"AuthorName";s:17:"Nikolay Bachiyski";s:6:"Status";s:8:"inactive";}s:13:"Pirates Ahoy!";a:12:{s:4:"Name";s:13:"Pirates Ahoy!";s:9:"PluginURI";s:45:"http://urbangiraffe.com/plugins/pirates-ahoy/";s:7:"Version";s:3:"0.1";s:11:"Description";s:37:"Speak like a pirate, you land lubber!";s:6:"Author";s:11:"John Godley";s:9:"AuthorURI";s:23:"http://urbangiraffe.com";s:10:"TextDomain";s:12:"pirates-ahoy";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:13:"Pirates Ahoy!";s:10:"AuthorName";s:11:"John Godley";s:6:"Status";s:8:"inactive";}s:25:"Simple Basic Contact Form";a:12:{s:4:"Name";s:25:"Simple Basic Contact Form";s:9:"PluginURI";s:56:"https://wordpress.org/plugins/simple-basic-contact-form/";s:7:"Version";s:8:"20190305";s:11:"Description";s:53:"A secure contact form that&rsquo;s fast and flexible.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:23:"https://www.wpkube.com/";s:10:"TextDomain";s:3:"scf";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:25:"Simple Basic Contact Form";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:28:"Title and Nofollow For Links";a:12:{s:4:"Name";s:28:"Title and Nofollow For Links";s:9:"PluginURI";s:58:"http://wordpress.org/plugins/title-and-nofollow-for-links/";s:7:"Version";s:4:"1.07";s:11:"Description";s:83:"The plugin adds a title and a rel="nofollow" checkbox to the insert link popup box.";s:6:"Author";s:6:"WPKube";s:9:"AuthorURI";s:23:"https://www.wpkube.com/";s:10:"TextDomain";s:28:"title-and-nofollow-for-links";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:28:"Title and Nofollow For Links";s:10:"AuthorName";s:6:"WPKube";s:6:"Status";s:8:"inactive";}s:11:"WooCommerce";a:12:{s:4:"Name";s:11:"WooCommerce";s:9:"PluginURI";s:24:"https://woocommerce.com/";s:7:"Version";s:5:"3.5.7";s:11:"Description";s:63:"An eCommerce toolkit that helps you sell anything. Beautifully.";s:6:"Author";s:10:"Automattic";s:9:"AuthorURI";s:23:"https://woocommerce.com";s:10:"TextDomain";s:11:"woocommerce";s:10:"DomainPath";s:16:"/i18n/languages/";s:7:"Network";b:0;s:5:"Title";s:11:"WooCommerce";s:10:"AuthorName";s:10:"Automattic";s:6:"Status";s:8:"inactive";}s:35:"WooCommerce PayPal Checkout Gateway";a:12:{s:4:"Name";s:35:"WooCommerce PayPal Checkout Gateway";s:9:"PluginURI";s:77:"https://woocommerce.com/products/woocommerce-gateway-paypal-express-checkout/";s:7:"Version";s:6:"1.6.10";s:11:"Description";s:94:"A payment gateway for PayPal Checkout (https://www.paypal.com/us/webapps/mpp/paypal-checkout).";s:6:"Author";s:11:"WooCommerce";s:9:"AuthorURI";s:23:"https://woocommerce.com";s:10:"TextDomain";s:43:"woocommerce-gateway-paypal-express-checkout";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:35:"WooCommerce PayPal Checkout Gateway";s:10:"AuthorName";s:11:"WooCommerce";s:6:"Status";s:8:"inactive";}s:16:"WP Fastest Cache";a:12:{s:4:"Name";s:16:"WP Fastest Cache";s:9:"PluginURI";s:46:"http://wordpress.org/plugins/wp-fastest-cache/";s:7:"Version";s:7:"0.8.9.2";s:11:"Description";s:40:"The simplest and fastest WP Cache system";s:6:"Author";s:9:"Emre Vona";s:9:"AuthorURI";s:34:"http://tr.linkedin.com/in/emrevona";s:10:"TextDomain";s:16:"wp-fastest-cache";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:16:"WP Fastest Cache";s:10:"AuthorName";s:9:"Emre Vona";s:6:"Status";s:8:"inactive";}s:21:"WPtouch Mobile Plugin";a:12:{s:4:"Name";s:21:"WPtouch Mobile Plugin";s:9:"PluginURI";s:23:"http://www.wptouch.com/";s:7:"Version";s:6:"4.3.37";s:11:"Description";s:80:"Make a beautiful mobile-friendly version of your website with just a few clicks.";s:6:"Author";s:7:"WPtouch";s:9:"AuthorURI";s:23:"http://www.wptouch.com/";s:10:"TextDomain";s:11:"wptouch-pro";s:10:"DomainPath";s:5:"/lang";s:7:"Network";b:0;s:5:"Title";s:21:"WPtouch Mobile Plugin";s:10:"AuthorName";s:7:"WPtouch";s:6:"Status";s:8:"inactive";}}}
 
wp_subscribe_reloaded.php CHANGED
@@ -6,7 +6,7 @@ if ( ! function_exists( 'add_action' ) ) {
6
  exit;
7
  }
8
 
9
- define( __NAMESPACE__.'\\VERSION','190510' );
10
  define( __NAMESPACE__.'\\DEVELOPMENT', true );
11
  define( __NAMESPACE__.'\\SLUG', "subscribe-to-comments-reloaded" );
12
 
@@ -77,7 +77,6 @@ if(!class_exists('\\'.__NAMESPACE__.'\\wp_subscribe_reloaded')) {
77
  // Add hook for the subscribe_reloaded_purge, define on the constructure so that the hook is read on time.
78
  add_action('_cron_subscribe_reloaded_purge', array($this, 'subscribe_reloaded_purge'), 10 );
79
  add_action('_cron_log_file_purge', array($this, 'log_file_purge'), 10 );
80
- add_action('_cron_subscribe_reloaded_system_report_file_purge', array($this->utils, 'stcr_delete_report_file'), 10 );
81
 
82
  // Load Text Domain
83
  add_action( 'plugins_loaded', array( $this, 'subscribe_reloaded_load_plugin_textdomain' ) );
@@ -143,11 +142,6 @@ if(!class_exists('\\'.__NAMESPACE__.'\\wp_subscribe_reloaded')) {
143
 
144
  // Add the AJAX Action
145
  $this->utils->stcr_create_ajax_notices();
146
- $this->utils->stcr_create_ajax_hook(
147
- array(
148
- "generate_system_report" => "stcr_recreate_file"
149
- )
150
- );
151
 
152
  add_action( 'admin_init', array( $this, 'sysinfo_download' ) );
153
 
6
  exit;
7
  }
8
 
9
+ define( __NAMESPACE__.'\\VERSION','190523' );
10
  define( __NAMESPACE__.'\\DEVELOPMENT', true );
11
  define( __NAMESPACE__.'\\SLUG', "subscribe-to-comments-reloaded" );
12
 
77
  // Add hook for the subscribe_reloaded_purge, define on the constructure so that the hook is read on time.
78
  add_action('_cron_subscribe_reloaded_purge', array($this, 'subscribe_reloaded_purge'), 10 );
79
  add_action('_cron_log_file_purge', array($this, 'log_file_purge'), 10 );
 
80
 
81
  // Load Text Domain
82
  add_action( 'plugins_loaded', array( $this, 'subscribe_reloaded_load_plugin_textdomain' ) );
142
 
143
  // Add the AJAX Action
144
  $this->utils->stcr_create_ajax_notices();
 
 
 
 
 
145
 
146
  add_action( 'admin_init', array( $this, 'sysinfo_download' ) );
147