Plugin Directory

Changeset 2905273


Ignore:
Timestamp:
04/27/2023 05:58:00 PM (3 years ago)
Author:
grimmdude
Message:

1.32 - Fix issues with PHP 8

Location:
sumome
Files:
58 added
3 edited

Legend:

Unmodified
Added
Removed
  • sumome/trunk/Readme.txt

    r2521793 r2905273  
    33Tags: ecommerce, marketing, WooCommerce, email marketing, marketing strategies, analytics, campaign monitor, click to tweet, contact form, content analytics, convertkit, drip, email form, ExactTarget, exit-intent, Facebook, facebook share, FeedBlitz, floating social buttons, growth, heat map, heatmaps, Hubspot, image sharing, inbound marketing, Inbox First, infusionsoft, landing page, lightbox, links, mailchimp, mailerlite, mailing list, mailjet, MyEmma, MyNewsletterBuilder, newsletter, Ontraport, pardot, popup, sailthru, scroll box, share, share buttons, share image, sharebar, sharing, site traffic, sms, social, social bookmarking, social media buttons, social plugin, social sharing, subscribers, subscription, traffic growth, tweet button, twitter, twitter share, vero, vertical response, welcome mat, WhatCounts, widget, zapier
    44Requires at least: 3.0.1
    5 Tested up to: 5.7.1
    6 Stable tag: 1.31
     5Tested up to: 6.2
     6Stable tag: 1.32
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    201201* Tested up to the newest Wordpress version.
    202202
     203= 1.32 =
     204* Fix some issues related to PHP 8.
     205
    203206== Upgrade Notice ==
    204207
  • sumome/trunk/classes/class_sumome.php

    r1912507 r2905273  
    11<?php
    22class WP_Plugin_SumoMe {
     3  public $dataSumoPlatform;
     4
    35  public function __construct() {
    46    add_action('wp_ajax_sumome_main', array($this, 'ajax_sumome_main'));
     
    3032  }
    3133
    32   public function activate_SumoMe_plugin() {
    33     WP_Plugin_SumoMe::upgrade_manual_sumome_installation();
     34  public static function activate_SumoMe_plugin() {
     35    //WP_Plugin_SumoMe::upgrade_manual_sumome_installation();
    3436    WP_Plugin_SumoMe::ajax_sumome_show_dashboard_overlay();
    3537  }
    3638
    37   public function deactivate_SumoMe_plugin() {
     39  public static function deactivate_SumoMe_plugin() {
    3840    WP_Plugin_SumoMe::ajax_sumome_show_dashboard_overlay();
    3941  }
     
    7072    }
    7173
    72     add_submenu_page(null, 'SiteID', 'SiteID', 'manage_options', 'sumo-siteID', array($this, 'sumome_render_siteID_page'));
     74    add_submenu_page('sumo', 'SiteID', 'SiteID', 'manage_options', 'sumo-siteID', array($this, 'sumome_render_siteID_page'));
    7375  }
    7476
     
    126128  }
    127129
    128   public function upgrade_manual_sumome_installation() {
     130  public static function upgrade_manual_sumome_installation() {
    129131    $wpThemeFiles=array("header","footer");
    130132    foreach ($wpThemeFiles as $wpThemeFile) {   
     
    271273  }
    272274
    273   public function ajax_sumome_show_dashboard_overlay() {
     275  public static function ajax_sumome_show_dashboard_overlay() {
    274276    update_option('sumome_hide_dashboard_overlay', 0);
    275277  }
  • sumome/trunk/sumome.php

    r2101984 r2905273  
    44Plugin URI: https://sumo.com
    55Description: Free Tools to automate your site growth from Sumo.com
    6 Version: 1.31
     6Version: 1.32
    77Author: SumoMe
    88Author URI: https://www.Sumo.com
Note: See TracChangeset for help on using the changeset viewer.