Plugin Directory

Changeset 3316514


Ignore:
Timestamp:
06/23/2025 07:13:56 PM (9 months ago)
Author:
jrmoser
Message:

version 2.2.3

Location:
box-tracker
Files:
3 edited
11 copied

Legend:

Unmodified
Added
Removed
  • box-tracker/tags/2.2.3/box-tracker-online.php

    r3311245 r3316514  
    88Plugin URI: https://www.dumpster.software/api/word-press-plugin.html
    99Description: The Box Tracker plugin facilitates online ordering for waste haulers.  Depending on configuration, orders will result either in service requests on the customer screen or fully booked work orders on dispatch.  Using the Web API tab on Box Tracker's Preferences app, you can prevent over booking, control which days of the week online orders will be accepted, and prevent same day ordering.  For more information about Box Tracker or this plugin please contact support at 603 546 6751 option 2 or support@cairnapps.com
    10 Version: 2.2.2
     10Version: 2.2.3
    1111Author: Cairn Applications Inc
    1212Author URI: https://www.cloud-computing.rocks/
  • box-tracker/tags/2.2.3/javascript/address-validation-script.js

    r3311245 r3316514  
    265265          //check if the address is rooftop
    266266          let b0xT_verified = 0;
    267           if(b0xT_place.types.includes('premise') || b0xT_place.location.location_type == 'ROOFTOP' || b0xT_postal_suffix.shortText.length) {
     267          if(b0xT_place.types.includes('premise') || b0xT_place.location_type == 'ROOFTOP' || b0xT_postal_suffix.shortText.length) {
    268268               //TODO::
    269269               b0xT_verified = 1;
     
    274274
    275275                    if(!b0xT_place.location) { return 0; }
    276                     if(!b0xT_place.location.location) { return 0; }
    277 
    278                     let b0xT_lat = b0xT_place.location.location.lat() * 1;
    279                     let b0xT_lng = b0xT_place.location.location.lng() * 1;
     276                    if(!b0xT_place.location) { return 0; }
     277
     278                    let b0xT_lat = b0xT_place.location.lat() * 1;
     279                    let b0xT_lng = b0xT_place.location.lng() * 1;
    280280
    281281                    if(!b0xT_pattern.exec(b0xT_lat)) { return 0; }
  • box-tracker/tags/2.2.3/readme.txt

    r3311245 r3316514  
    44Requires PHP: 5.6.4
    55Tested up to: 6.8
    6 Stable tag: 2.2.2
     6Stable tag: 2.2.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • box-tracker/trunk/box-tracker-online.php

    r3311245 r3316514  
    88Plugin URI: https://www.dumpster.software/api/word-press-plugin.html
    99Description: The Box Tracker plugin facilitates online ordering for waste haulers.  Depending on configuration, orders will result either in service requests on the customer screen or fully booked work orders on dispatch.  Using the Web API tab on Box Tracker's Preferences app, you can prevent over booking, control which days of the week online orders will be accepted, and prevent same day ordering.  For more information about Box Tracker or this plugin please contact support at 603 546 6751 option 2 or support@cairnapps.com
    10 Version: 2.2.2
     10Version: 2.2.3
    1111Author: Cairn Applications Inc
    1212Author URI: https://www.cloud-computing.rocks/
  • box-tracker/trunk/javascript/address-validation-script.js

    r3311245 r3316514  
    265265          //check if the address is rooftop
    266266          let b0xT_verified = 0;
    267           if(b0xT_place.types.includes('premise') || b0xT_place.location.location_type == 'ROOFTOP' || b0xT_postal_suffix.shortText.length) {
     267          if(b0xT_place.types.includes('premise') || b0xT_place.location_type == 'ROOFTOP' || b0xT_postal_suffix.shortText.length) {
    268268               //TODO::
    269269               b0xT_verified = 1;
     
    274274
    275275                    if(!b0xT_place.location) { return 0; }
    276                     if(!b0xT_place.location.location) { return 0; }
    277 
    278                     let b0xT_lat = b0xT_place.location.location.lat() * 1;
    279                     let b0xT_lng = b0xT_place.location.location.lng() * 1;
     276                    if(!b0xT_place.location) { return 0; }
     277
     278                    let b0xT_lat = b0xT_place.location.lat() * 1;
     279                    let b0xT_lng = b0xT_place.location.lng() * 1;
    280280
    281281                    if(!b0xT_pattern.exec(b0xT_lat)) { return 0; }
  • box-tracker/trunk/readme.txt

    r3311245 r3316514  
    44Requires PHP: 5.6.4
    55Tested up to: 6.8
    6 Stable tag: 2.2.2
     6Stable tag: 2.2.3
    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.