Plugin Directory

Changeset 1632011


Ignore:
Timestamp:
04/07/2017 12:42:25 PM (9 years ago)
Author:
nostrzak
Message:

Version 1.0.2

Location:
feedcomet-woo-integration
Files:
5 edited
2 copied

Legend:

Unmodified
Added
Removed
  • feedcomet-woo-integration/tags/1.0.2/feedcomet-api-client.php

    r1627460 r1632011  
    1010{
    1111    const BASE_DOMAIN = 'https://feedcomet.com/';
    12     const API_SOURCE_URL = self::BASE_DOMAIN . 'api/products/v1/sources/register';
    13     const API_PRODUCT_URL = self::BASE_DOMAIN . 'api/products/v1/products/';
    14     const API_TOKEN_VALID = self::BASE_DOMAIN . 'api/users/v1/users/token/valid';
     12    const API_SOURCE_URL = 'api/products/v1/sources/register';
     13    const API_PRODUCT_URL = 'api/products/v1/products/';
     14    const API_TOKEN_VALID = 'api/users/v1/users/token/valid';
    1515    const OPTION_SOURCE = 'feedcomet_source';
    1616    const OPTION_TOKEN = 'feedcomet_token';
     
    4747        if (!$source_id) {
    4848            $response = wp_remote_get(
     49                self::BASE_DOMAIN .
    4950                self::API_SOURCE_URL
    5051                    . '?eic=' . $this->get_plugin_id()
     
    8081
    8182        $response = wp_remote_get(
     83            self::BASE_DOMAIN .
    8284            self::API_TOKEN_VALID,
    8385            array(
     
    120122    {
    121123        wp_remote_request(
     124            self::BASE_DOMAIN .
    122125            self::API_PRODUCT_URL . $this->source_id . '/' . $id,
    123126            array(
     
    184187
    185188        $response = wp_remote_post(
     189            self::BASE_DOMAIN .
    186190            self::API_PRODUCT_URL . $this->source_id . '/',
    187191            array(
  • feedcomet-woo-integration/tags/1.0.2/feedcomet-woocommerce-plugin.php

    r1627460 r1632011  
    44Plugin URI: http://feedcomet.com/
    55Description: feedcomet integration plugin for WooCommerce
    6 Version: 1.0.0
     6Version: 1.0.2
    77Author: feedcomet
    88Author URI: http://feedcomet.com/
  • feedcomet-woo-integration/tags/1.0.2/readme.txt

    r1631951 r1632011  
    44Requires at least: 4.7
    55Tested up to: 4.7.3
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • feedcomet-woo-integration/trunk/feedcomet-api-client.php

    r1627460 r1632011  
    1010{
    1111    const BASE_DOMAIN = 'https://feedcomet.com/';
    12     const API_SOURCE_URL = self::BASE_DOMAIN . 'api/products/v1/sources/register';
    13     const API_PRODUCT_URL = self::BASE_DOMAIN . 'api/products/v1/products/';
    14     const API_TOKEN_VALID = self::BASE_DOMAIN . 'api/users/v1/users/token/valid';
     12    const API_SOURCE_URL = 'api/products/v1/sources/register';
     13    const API_PRODUCT_URL = 'api/products/v1/products/';
     14    const API_TOKEN_VALID = 'api/users/v1/users/token/valid';
    1515    const OPTION_SOURCE = 'feedcomet_source';
    1616    const OPTION_TOKEN = 'feedcomet_token';
     
    4747        if (!$source_id) {
    4848            $response = wp_remote_get(
     49                self::BASE_DOMAIN .
    4950                self::API_SOURCE_URL
    5051                    . '?eic=' . $this->get_plugin_id()
     
    8081
    8182        $response = wp_remote_get(
     83            self::BASE_DOMAIN .
    8284            self::API_TOKEN_VALID,
    8385            array(
     
    120122    {
    121123        wp_remote_request(
     124            self::BASE_DOMAIN .
    122125            self::API_PRODUCT_URL . $this->source_id . '/' . $id,
    123126            array(
     
    184187
    185188        $response = wp_remote_post(
     189            self::BASE_DOMAIN .
    186190            self::API_PRODUCT_URL . $this->source_id . '/',
    187191            array(
  • feedcomet-woo-integration/trunk/feedcomet-woocommerce-plugin.php

    r1627460 r1632011  
    44Plugin URI: http://feedcomet.com/
    55Description: feedcomet integration plugin for WooCommerce
    6 Version: 1.0.0
     6Version: 1.0.2
    77Author: feedcomet
    88Author URI: http://feedcomet.com/
  • feedcomet-woo-integration/trunk/readme.txt

    r1631951 r1632011  
    44Requires at least: 4.7
    55Tested up to: 4.7.3
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.