Plugin Directory

Changeset 2736367


Ignore:
Timestamp:
06/02/2022 12:21:31 PM (4 years ago)
Author:
onlinesucces
Message:

Version 2.3 of plugin

Location:
online-succes
Files:
1 added
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • online-succes/tags/2.3/os-wp-plugin.php

    r2691355 r2736367  
    44Plugin URI: https://help.onlinesucces.nl/nl/articles/1133883-hoe-installeer-je-het-online-succes-script-op-je-wordpress-website
    55Description: With this plugin you can easily add the Online Succes tracking code to your WordPress site.
    6 Version: 2.2
     6Version: 2.3
    77Author: Online Succes
    88Author URI: https://www.onlinesucces.nl
     
    2828    $client_id_start_shard1 = 1354;
    2929    $client_id_start_shard2 = 1941;
     30    $client_id_start_shard3 = 3084;
    3031
    3132    $arrShards = array();
     
    3334    $arrShards[1] = array("tracker_subdomain"=>"tr1.onlinesucces.nl");
    3435    $arrShards[2] = array("tracker_subdomain"=>"tr2.onlinesucces.nl");
    35 
    36     if ($intClientId>=$client_id_start_shard2)
     36    $arrShards[3] = array("tracker_subdomain"=>"tr3.onlinesucces.nl");
     37
     38    if ($intClientId>=$client_id_start_shard3)
     39        return $arrShards[3];
     40    elseif (($intClientId>=$client_id_start_shard2) && ($intClientId<$client_id_start_shard3))
    3741        return $arrShards[2];
    3842    elseif (($intClientId>=$client_id_start_shard1) && ($intClientId<$client_id_start_shard2))
  • online-succes/tags/2.3/readme.txt

    r2691355 r2736367  
    44Tags: b2b lead generation software, b2b lead gen, website leads, ip tracking, leadgeneratie, leadgeneration, online succes, b2b, leads, analytics
    55Requires at least: 3.0.1
    6 Tested up to: 5.9.1
     6Tested up to: 6.0
    77Requires PHP: 5.6
    8 Stable tag: 2.2
    9 Version: 2.2
     8Stable tag: 2.3
     9Version: 2.3
    1010License: GPLv3 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545== Changelog ==
    4646
     47= 2.3 =
     48* Added support for new tracker
     49
    4750= 2.2 =
    4851* Fix for PHP8 warnings
  • online-succes/trunk/os-wp-plugin.php

    r2691355 r2736367  
    44Plugin URI: https://help.onlinesucces.nl/nl/articles/1133883-hoe-installeer-je-het-online-succes-script-op-je-wordpress-website
    55Description: With this plugin you can easily add the Online Succes tracking code to your WordPress site.
    6 Version: 2.2
     6Version: 2.3
    77Author: Online Succes
    88Author URI: https://www.onlinesucces.nl
     
    2828    $client_id_start_shard1 = 1354;
    2929    $client_id_start_shard2 = 1941;
     30    $client_id_start_shard3 = 3084;
    3031
    3132    $arrShards = array();
     
    3334    $arrShards[1] = array("tracker_subdomain"=>"tr1.onlinesucces.nl");
    3435    $arrShards[2] = array("tracker_subdomain"=>"tr2.onlinesucces.nl");
    35 
    36     if ($intClientId>=$client_id_start_shard2)
     36    $arrShards[3] = array("tracker_subdomain"=>"tr3.onlinesucces.nl");
     37
     38    if ($intClientId>=$client_id_start_shard3)
     39        return $arrShards[3];
     40    elseif (($intClientId>=$client_id_start_shard2) && ($intClientId<$client_id_start_shard3))
    3741        return $arrShards[2];
    3842    elseif (($intClientId>=$client_id_start_shard1) && ($intClientId<$client_id_start_shard2))
  • online-succes/trunk/readme.txt

    r2691355 r2736367  
    44Tags: b2b lead generation software, b2b lead gen, website leads, ip tracking, leadgeneratie, leadgeneration, online succes, b2b, leads, analytics
    55Requires at least: 3.0.1
    6 Tested up to: 5.9.1
     6Tested up to: 6.0
    77Requires PHP: 5.6
    8 Stable tag: 2.2
    9 Version: 2.2
     8Stable tag: 2.3
     9Version: 2.3
    1010License: GPLv3 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545== Changelog ==
    4646
     47= 2.3 =
     48* Added support for new tracker
     49
    4750= 2.2 =
    4851* Fix for PHP8 warnings
Note: See TracChangeset for help on using the changeset viewer.