Plugin Directory

Changeset 2373847


Ignore:
Timestamp:
09/02/2020 11:47:39 AM (5 years ago)
Author:
convertize
Message:

pass top level product id in orders, not variations

Location:
nudgify
Files:
6 edited
7 copied

Legend:

Unmodified
Added
Removed
  • nudgify/tags/1.0.11/build/vendor/autoload.php

    r2372995 r2373847  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7::getLoader();
     7return ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e::getLoader();
  • nudgify/tags/1.0.11/build/vendor/composer/autoload_real.php

    r2372995 r2373847  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7
     5class ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e', 'loadClassLoader'));
    2525
    2626        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    2828            require_once __DIR__ . '/autoload_static.php';
    2929
    30             call_user_func(\Composer\Autoload\ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::getInitializer($loader));
     30            call_user_func(\Composer\Autoload\ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::getInitializer($loader));
    3131        } else {
    3232            $map = require __DIR__ . '/autoload_namespaces.php';
  • nudgify/tags/1.0.11/build/vendor/composer/autoload_static.php

    r2372995 r2373847  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7
     7class ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    5454    {
    5555        return \Closure::bind(function () use ($loader) {
    56             $loader->prefixLengthsPsr4 = ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::$prefixLengthsPsr4;
    57             $loader->prefixDirsPsr4 = ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::$prefixDirsPsr4;
    58             $loader->classMap = ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::$classMap;
     56            $loader->prefixLengthsPsr4 = ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::$prefixLengthsPsr4;
     57            $loader->prefixDirsPsr4 = ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::$prefixDirsPsr4;
     58            $loader->classMap = ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::$classMap;
    5959
    6060        }, null, ClassLoader::class);
  • nudgify/tags/1.0.11/build/vendor/scoper-autoload.php

    r2372995 r2373847  
    77// Aliases for the whitelisted classes. For more information see:
    88// https://github.com/humbug/php-scoper/blob/master/README.md#class-whitelisting
    9 if (!class_exists('ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7', false)) {
    10     class_exists('WP_Nudgify\ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7');
     9if (!class_exists('ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e', false)) {
     10    class_exists('WP_Nudgify\ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e');
    1111}
    1212if (!class_exists('Raven_Serializer', false)) {
  • nudgify/tags/1.0.11/nudgify.php

    r2372995 r2373847  
    44Description: Install Nudgify on your WordPress website in less then 10 seconds. Integrate unique tracking code of Nudgify into every page of your website in one click.
    55Author: Nudgify
    6 Version: 1.0.10
     6Version: 1.0.11
    77Author URI: https://nudgify.com
    88License: GPLv2
     
    1212defined('ABSPATH') or die('Restricted access!');
    1313
    14 define('NUDGIFY_PLUGIN_VERSION', '1.0.10');
     14define('NUDGIFY_PLUGIN_VERSION', '1.0.11');
    1515define('NUDGIFY_PLUGIN_SLUG', 'nudgify');
    1616define('NUDGIFY_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    349349
    350350                $products[] = [
    351                     'item_id' => $product->get_id(),
     351                    'item_id' => $item->get_product_id(),
     352                    'item_variation_id' => $product->get_id(),
    352353                    'item_name' => $product->get_title(),
    353354                    'item_link' => get_permalink($product->get_id()),
  • nudgify/tags/1.0.11/readme.txt

    r2372995 r2373847  
    55Requires at least: 4.6
    66Tested up to: 5.5.0
    7 Stable tag: 1.0.10
     7Stable tag: 1.0.11
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • nudgify/trunk/build/vendor/autoload.php

    r2372995 r2373847  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7::getLoader();
     7return ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e::getLoader();
  • nudgify/trunk/build/vendor/composer/autoload_real.php

    r2372995 r2373847  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7
     5class ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e', 'loadClassLoader'));
    2525
    2626        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    2828            require_once __DIR__ . '/autoload_static.php';
    2929
    30             call_user_func(\Composer\Autoload\ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::getInitializer($loader));
     30            call_user_func(\Composer\Autoload\ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::getInitializer($loader));
    3131        } else {
    3232            $map = require __DIR__ . '/autoload_namespaces.php';
  • nudgify/trunk/build/vendor/composer/autoload_static.php

    r2372995 r2373847  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7
     7class ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    5454    {
    5555        return \Closure::bind(function () use ($loader) {
    56             $loader->prefixLengthsPsr4 = ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::$prefixLengthsPsr4;
    57             $loader->prefixDirsPsr4 = ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::$prefixDirsPsr4;
    58             $loader->classMap = ComposerStaticInitb2d1a873a384e9650e94c8dc62b4d6b7::$classMap;
     56            $loader->prefixLengthsPsr4 = ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::$prefixLengthsPsr4;
     57            $loader->prefixDirsPsr4 = ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::$prefixDirsPsr4;
     58            $loader->classMap = ComposerStaticInit4c21fe7fb963c79509750a6f83f9218e::$classMap;
    5959
    6060        }, null, ClassLoader::class);
  • nudgify/trunk/build/vendor/scoper-autoload.php

    r2372995 r2373847  
    77// Aliases for the whitelisted classes. For more information see:
    88// https://github.com/humbug/php-scoper/blob/master/README.md#class-whitelisting
    9 if (!class_exists('ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7', false)) {
    10     class_exists('WP_Nudgify\ComposerAutoloaderInitb2d1a873a384e9650e94c8dc62b4d6b7');
     9if (!class_exists('ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e', false)) {
     10    class_exists('WP_Nudgify\ComposerAutoloaderInit4c21fe7fb963c79509750a6f83f9218e');
    1111}
    1212if (!class_exists('Raven_Serializer', false)) {
  • nudgify/trunk/nudgify.php

    r2372995 r2373847  
    44Description: Install Nudgify on your WordPress website in less then 10 seconds. Integrate unique tracking code of Nudgify into every page of your website in one click.
    55Author: Nudgify
    6 Version: 1.0.10
     6Version: 1.0.11
    77Author URI: https://nudgify.com
    88License: GPLv2
     
    1212defined('ABSPATH') or die('Restricted access!');
    1313
    14 define('NUDGIFY_PLUGIN_VERSION', '1.0.10');
     14define('NUDGIFY_PLUGIN_VERSION', '1.0.11');
    1515define('NUDGIFY_PLUGIN_SLUG', 'nudgify');
    1616define('NUDGIFY_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    349349
    350350                $products[] = [
    351                     'item_id' => $product->get_id(),
     351                    'item_id' => $item->get_product_id(),
     352                    'item_variation_id' => $product->get_id(),
    352353                    'item_name' => $product->get_title(),
    353354                    'item_link' => get_permalink($product->get_id()),
  • nudgify/trunk/readme.txt

    r2372995 r2373847  
    55Requires at least: 4.6
    66Tested up to: 5.5.0
    7 Stable tag: 1.0.10
     7Stable tag: 1.0.11
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.