Plugin Directory

Changeset 3203222


Ignore:
Timestamp:
12/05/2024 06:48:40 PM (15 months ago)
Author:
louiscollarsmith
Message:

v1.0.17

Location:
quiver-delivery
Files:
7 added
5 edited

Legend:

Unmodified
Added
Removed
  • quiver-delivery/trunk/includes/class-quiver-delivery-logger.php

    r2624465 r3203222  
    11<?php
    22
    3 if ( ! defined( 'ABSPATH' ) ) {
    4     exit;
    5 } // Exit if accessed directly
     3if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    64
    75class QuiverDeliveryLogger {
  • quiver-delivery/trunk/includes/class-quiver-delivery-shipping-method.php

    r2945690 r3203222  
    11<?php
    22
     3if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     4
    35// Exit if accessed directly or class already exists
    4 if (!defined('ABSPATH') || class_exists('Quiver_Delivery_Shipping_Method', false)) {
    5     return;
     6if (class_exists('Quiver_Delivery_Shipping_Method', false)) {
     7    exit;
    68}
    79
     
    3840        $this->id = $this->METHOD_ID;
    3941        $this->instance_id = absint($instance_id);
    40         $this->method_title = __('Quiver Delivery', $this->METHOD_ID);
     42        $this->method_title = __('Quiver Delivery', 'quiver_delivery');
    4143        $this->method_description = $this->METHOD_ID;
    4244
     
    6668        $this->form_fields = array(
    6769            'api_key' => array(
    68                 'title'             => __('API Key', $this->METHOD_ID),
     70                'title'             => __('API Key'. 'quiver_delivery'),
    6971                'type'              => 'text',
    70                 'description'       => __('This can be found by visiting app.quiver.co.uk and navigating to the Settings page.', $this->METHOD_ID),
     72                'description'       => __('This can be found by visiting app.quiver.co.uk and navigating to the Settings page.', 'quiver_delivery'),
    7173                'desc_tip'          => true,
    7274                'default'           => '',
     
    309311        }
    310312
    311         $today = date('Y-m-d');
    312         return date('Y-m-d', strtotime($today. $dateIncrement));
     313        $today = gmdate('Y-m-d');
     314        return gmdate('Y-m-d', strtotime($today. $dateIncrement));
    313315    }
    314316   
     
    320322        $preformattedDate = str_replace('/', '-', $value);
    321323        $unixTimestamp = strtotime($preformattedDate);
    322         return date('Y-m-d', $unixTimestamp);
     324        return gmdate('Y-m-d', $unixTimestamp);
    323325    }
    324326
  • quiver-delivery/trunk/quiver-delivery.php

    r2945690 r3203222  
    22
    33/**
    4  * Plugin Name: Quiver Delivery
    5  * Plugin URI: https://wordpress.org/plugins/quiver-delivery/
    6  * Description: Quiver provides fast and emissionless urban delivery. Magic.
    7  * Version: 1.0.16
    8  * Author: Quiver
    9  * Author URI: https://quiver.co.uk/
    10  * Text Domain: quiver-delivery
    11  * Domain Path: /languages
    12  * Requires at least: 4.6
    13  * Requires PHP: 7.0
     4 * Plugin Name:         Quiver Delivery
     5 * Plugin URI:          https://wordpress.org/plugins/quiver-delivery/
     6 * Description:         Faster, emissionless deliveries - it's magic.
     7 * Version:             1.0.17
     8 * Author:              Quiver
     9 * Author URI:          https://quiver.co.uk/
     10 * Text Domain:         quiver-delivery
     11 * Domain Path:         /languages
     12 * Requires at least:   4.6
     13 * Requires PHP:        7.0
     14 * License:             GPL v2 or later
     15 * License URI:         https://www.gnu.org/licenses/gpl-2.0.html
    1416 */
    1517
    1618
    17 if (!defined('ABSPATH')) {
    18     exit; // Exit if accessed directly.
    19 }
     19if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    2020
    2121if (!class_exists('Quiver_Delivery')) :
     
    2424    {
    2525
    26         private $version = "1.0.16";
     26        private $version = "1.0.17";
    2727
    2828        /**
  • quiver-delivery/trunk/readme.md

    r2945690 r3203222  
    22Contributors: Quiver, louiscollarsmith
    33Donate link:
    4 Tags: Quiver, Shipping, WooCommerce, Fulfilment, London, Courier, Carrier, Immediate, Fast
     4Tags: Quiver, WooCommerce Shipping, WooCommerce Fulfilment, Same Day, Carrier
    55Requires at least: 4.6
    6 Tested up to: 6.0
     6Tested up to: 6.7.1
    77Requires PHP: 7.0
    8 Stable tag: 1.0.16
     8Stable tag: 1.0.17
    99WC requires at least: 3.0.0
    1010WC tested up to: 6.6.1
     
    71711. screenshot-4.jpg
    72721. screenshot-5.jpg
     73
     74== External services ==
     75
     76When installed on WooCommerce store, this plugin uses Quiver's API suite to book deliveries. A customer's order + shipping details are used to call the API.
     77
     78Please consult Quiver's privacy policy, https://quiver.co.uk/privacy, for more details.
    7379
    7480== Changelog ==
     
    140146
    141147- Quiver API compatibility updates
     148
     149= 1.0.17 =
     150
     151- Fixed WordPress compatibility Issue
  • quiver-delivery/trunk/readme.txt

    r2945690 r3203222  
    22Contributors: Quiver, louiscollarsmith
    33Donate link:
    4 Tags: Quiver, Shipping, WooCommerce, Fulfilment, London, Courier, Carrier, Immediate, Fast
     4Tags: Quiver, WooCommerce Shipping, WooCommerce Fulfilment, Same Day, Carrier
    55Requires at least: 4.6
    6 Tested up to: 6.0
     6Tested up to: 6.7.1
    77Requires PHP: 7.0
    8 Stable tag: 7
     8Stable tag: 1.0.17
    99WC requires at least: 3.0.0
    1010WC tested up to: 6.6.1
     
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1313
    14 Quiver provides fast and emissionless urban delivery. Magic.
     14Faster, emissionless deliveries - it's magic.
    1515
    1616== Description ==
     
    71711. screenshot-4.jpg
    72721. screenshot-5.jpg
     73
     74== External services ==
     75
     76When installed on WooCommerce store, this plugin uses Quiver's API suite to book deliveries. A customer's order + shipping details are used to call the API.
     77
     78Please consult Quiver's privacy policy, https://quiver.co.uk/privacy, for more details.
    7379
    7480== Changelog ==
     
    140146
    141147- Quiver API compatibility updates
     148
     149= 1.0.17 =
     150
     151- Fixed WordPress compatibility Issue
Note: See TracChangeset for help on using the changeset viewer.