Plugin Directory

Changeset 1691272


Ignore:
Timestamp:
07/05/2017 01:49:40 PM (9 years ago)
Author:
Affilinet
Message:

1.8.7 SubId can be modified via hook 'affilinet_subid_array'

Location:
affilinet-performance-module
Files:
170 added
3 edited
3 copied

Legend:

Unmodified
Added
Removed
  • affilinet-performance-module/tags/1.8.7/affilinet.php

    r1624836 r1691272  
    44Plugin Name: affilinet Performance Ads
    55Description: Integrate our data driven and automated performance display plugin into your WordPress platform and serve your users targeted ads in real time.
    6 Version: 1.8.6
     6Version: 1.8.7
    77Author: affilinet
    88Author URI: https://www.affili.net/de/publisher/tools/performance-ads
  • affilinet-performance-module/tags/1.8.7/readme.txt

    r1624836 r1691272  
    11=== affilinet Performance Ads ===
    22Contributors: affilinet, teraone
    3 Tags: affiliate marketing, online marketing, performance marketing, marketing, advertisement, advertising, advertise, affilinet, Affiliate, performance, Display, earn money, monetization, monetize, Monetarisierung, performance, Vermarktung, Banner, Geld verdienen, werbeintegration, Werbung
     3Tags: affilinet, affiliate marketing, online marketing, performance marketing, marketing, advertisement, advertising, advertise, Affiliate, performance, Display, earn money, monetization, monetize, Monetarisierung, performance, Vermarktung, Banner, Geld verdienen, werbeintegration, Werbung
    44Requires at least: 3.0.1
    5 Tested up to: 4.7
    6 Stable tag: 1.8.6
     5Tested up to: 4.8
     6Stable tag: 1.8.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181
    8282
     83= 1.8.7 =
     84* Release Date: July 5, 2017
     85* SubId can be modified with the hook 'affilinet_subid_array'
     86
    8387= 1.8.6 =
    8488* Release Date: March 29, 2017
  • affilinet-performance-module/trunk/affilinet.php

    r1624836 r1691272  
    44Plugin Name: affilinet Performance Ads
    55Description: Integrate our data driven and automated performance display plugin into your WordPress platform and serve your users targeted ads in real time.
    6 Version: 1.8.6
     6Version: 1.8.7
    77Author: affilinet
    88Author URI: https://www.affili.net/de/publisher/tools/performance-ads
  • affilinet-performance-module/trunk/classes/PerformanceAds.php

    r1624836 r1691272  
    7171        $pluginVersion = Affilinet_Helper::get_plugin_version();
    7272        $wpVersion =  get_bloginfo('version');
    73         $subId = 'Wordpress'.$wpVersion.'-Plugin'.$pluginVersion;
     73
     74        $subIdArray = apply_filters('affilinet_subid_array', array('Wordpress'.$wpVersion, 'Plugin'.$pluginVersion));
     75        if (is_array($subIdArray)) {
     76            $subId = implode('-', $subIdArray);
     77        } else {
     78            $subId = 'Wordpress'.$wpVersion.'-Plugin'.$pluginVersion;
     79        }
     80
     81
    7482        $hnb = self::getHnbForPlatform($platformId, $size);
    7583
  • affilinet-performance-module/trunk/readme.txt

    r1624836 r1691272  
    11=== affilinet Performance Ads ===
    22Contributors: affilinet, teraone
    3 Tags: affiliate marketing, online marketing, performance marketing, marketing, advertisement, advertising, advertise, affilinet, Affiliate, performance, Display, earn money, monetization, monetize, Monetarisierung, performance, Vermarktung, Banner, Geld verdienen, werbeintegration, Werbung
     3Tags: affilinet, affiliate marketing, online marketing, performance marketing, marketing, advertisement, advertising, advertise, Affiliate, performance, Display, earn money, monetization, monetize, Monetarisierung, performance, Vermarktung, Banner, Geld verdienen, werbeintegration, Werbung
    44Requires at least: 3.0.1
    5 Tested up to: 4.7
    6 Stable tag: 1.8.6
     5Tested up to: 4.8
     6Stable tag: 1.8.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181
    8282
     83= 1.8.7 =
     84* Release Date: July 5, 2017
     85* SubId can be modified with the hook 'affilinet_subid_array'
     86
    8387= 1.8.6 =
    8488* Release Date: March 29, 2017
Note: See TracChangeset for help on using the changeset viewer.