Changeset 2934747
- Timestamp:
- 07/05/2023 06:49:11 PM (3 years ago)
- Location:
- seo-content-randomizer/trunk
- Files:
-
- 7 edited
-
freemius.php (modified) (1 diff)
-
freemius/config.php (modified) (2 diffs)
-
freemius/require.php (modified) (2 diffs)
-
freemius/start.php (modified) (2 diffs)
-
includes/class-issscr-helpers.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
seo-content-randomizer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seo-content-randomizer/trunk/freemius.php
r2393852 r2934747 25 25 'has_addons' => true, 26 26 'has_paid_plans' => true, 27 'trial' => array( 28 'days' => 14, 29 'is_require_payment' => true, 30 ), 27 31 'has_affiliation' => 'all', 28 32 'menu' => array( -
seo-content-randomizer/trunk/freemius/config.php
r2416825 r2934747 147 147 148 148 if ( ! defined( 'WP_FS__IS_HTTP_REQUEST' ) ) { 149 define( 'WP_FS__IS_HTTP_REQUEST', isset( $_SERVER['HTTP_HOST'] ) );149 define( 'WP_FS__IS_HTTP_REQUEST', isset( $_SERVER['HTTP_HOST'] ) && isset( $_SERVER['REQUEST_METHOD'] ) ); 150 150 } 151 151 … … 355 355 ( is_network_admin() || 356 356 ( ( defined( 'DOING_AJAX' ) && DOING_AJAX && 357 ( isset( $_REQUEST['_fs_network_admin'] ) /*||357 ( isset( $_REQUEST['_fs_network_admin'] ) && 'true' === $_REQUEST['_fs_network_admin'] /*|| 358 358 ( ! empty( $_REQUEST['action'] ) && 'delete-plugin' === $_REQUEST['action'] )*/ ) 359 359 ) || -
seo-content-randomizer/trunk/freemius/require.php
r2688218 r2934747 14 14 require_once dirname( __FILE__ ) . '/config.php'; 15 15 require_once WP_FS__DIR_INCLUDES . '/fs-core-functions.php'; 16 require_once WP_FS__DIR_INCLUDES . '/fs-html-escaping-functions.php'; 16 17 17 18 // Logger must be loaded before any other. … … 22 23 require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-option-manager.php'; 23 24 require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-gdpr-manager.php'; 25 require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-clone-manager.php'; 26 require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-permission-manager.php'; 24 27 require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-cache-manager.php'; 25 28 require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-admin-notice-manager.php'; -
seo-content-randomizer/trunk/freemius/start.php
r2778877 r2934747 16 16 * @var string 17 17 */ 18 $this_sdk_version = '2. 4.5';18 $this_sdk_version = '2.5.10'; 19 19 20 20 #region SDK Selection Logic -------------------------------------------------------------------- … … 69 69 if ( ! isset( $fs_active_plugins ) ) { 70 70 // Load all Freemius powered active plugins. 71 $fs_active_plugins = get_option( 'fs_active_plugins', new stdClass() ); 71 $fs_active_plugins = get_option( 'fs_active_plugins' ); 72 73 if ( ! is_object( $fs_active_plugins ) ) { 74 $fs_active_plugins = new stdClass(); 75 } 72 76 73 77 if ( ! isset( $fs_active_plugins->plugins ) ) { -
seo-content-randomizer/trunk/includes/class-issscr-helpers.php
r2437727 r2934747 28 28 } 29 29 30 return issscr_fs()->is_plan ( $plan_handle, true );30 return issscr_fs()->is_plan_or_trial( $plan_handle, true ); 31 31 } 32 32 -
seo-content-randomizer/trunk/readme.txt
r2778877 r2934747 3 3 Tags: SEO, Content, Text, Random, Randomization, Randomizing, Dynamic Content 4 4 Requires at least: 4.9.0 5 Tested up to: 6. 1.05 Tested up to: 6.2.0 6 6 Requires PHP: 5.6 7 Stable tag: 3.2 7.17 Stable tag: 3.28.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html -
seo-content-randomizer/trunk/seo-content-randomizer.php
r2778877 r2934747 17 17 * Plugin URI: https://intellasoftplugins.com/ 18 18 * Description: Write multiple versions of a page’s content that will be randomly selected each time the page is loaded. This also works with images and keywords. 19 * Version: 3.2 7.119 * Version: 3.28.1 20 20 * Author: IntellaSoft Solutions 21 21 * Author URI: https://intellasoftplugins.com/ … … 42 42 * Rename this for your plugin and update it as you release new versions. 43 43 */ 44 define( 'ISSSCR_VERSION', '3.2 7.1' );44 define( 'ISSSCR_VERSION', '3.28.1' ); 45 45 define( 'ISSSCR_BASENAME', plugin_basename(__FILE__) ); 46 46
Note: See TracChangeset
for help on using the changeset viewer.