Plugin Directory

Changeset 2748389


Ignore:
Timestamp:
06/27/2022 09:26:19 AM (4 years ago)
Author:
wilsos6
Message:

Commit for V2.3.0

Location:
joy-of-text/trunk
Files:
2 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • joy-of-text/trunk/classes/class-jot-plugin-settings.php

    r2600087 r2748389  
    515515        //$html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("The terms and conditions of Twilio's referral program are available %s.","jot-plugin"), $twilio_referral_tcs_url) . "</span>" . "</li>";
    516516        $html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("Register an account at %s, purchase a phone number and get your unique 'Twilio Account SID' and 'Twilio Auth Token'.","jot-plugin"), $twilio_url) . "</span>" . "</li>";
     517           
     518            $twilio_10dlc_url = "<a href='https://support.twilio.com/hc/en-us/articles/1260800720410-What-is-A2P-10DLC-' target='_blank'>" . __("Twilio's","jot-plugin") .  "</a>";
     519            $html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("If you are in the US or will be sending messages to US based numbers, then you may need to register your messaging campaigns. Check %s guidance to see if this applies to you.","jot-plugin"), $twilio_10dlc_url) . "</span>" . "</li>";
     520                       
    517521            $url = "<a href='" . admin_url() .   "admin.php?page=jot-plugin&tab=smsprovider&section=twiliosettings' target='_blank'>" . __("Messaging-Settings-Twilio Settings","jot-plugin") .  "</a>";
    518522            $html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("Go to %s and enter your 'Twilio Account SID' and 'Twilio Auth Token' and press the 'Save Settings' button.","jot-plugin"), $url) . "</span>" . "</li>";
  • joy-of-text/trunk/classes/smsproviders/class-jot-provider-twilio.php

    r2597353 r2748389  
    338338                $data = array();
    339339                $url = "https://api.twilio.com/2010-04-01/Accounts/$sid/Balance.json";
    340                 $jot_response = Joy_Of_Text_Plugin()->messenger->call_curl($url,$data,'get');   
    341                
     340                $jot_response = Joy_Of_Text_Plugin()->messenger->call_curl($url,$data,'get');                
     341             
    342342                return $jot_response;                 
    343343           
     
    360360                $data = array();
    361361                $url = "https://api.twilio.com/2010-04-01/Accounts/$sid.json";
    362                 $jot_response = Joy_Of_Text_Plugin()->messenger->call_curl($url,$data,'get');   
    363                
     362                $jot_response = Joy_Of_Text_Plugin()->messenger->call_curl($url,$data,'get');
     363                
    364364                return $jot_response;                 
    365365           
  • joy-of-text/trunk/joy-of-text.php

    r2600087 r2748389  
    1717 * Plugin URI:        http://www.getcloudsms.com
    1818 * Description:       Send SMS and text-to-voice messages to your customers, subscribers, followers, members and friends.
    19  * Version:           2.2.9.1
     19 * Version:           2.3.0
    2020 * Author:            Stuart Wilson
    2121 * Author URI:        http://www.getcloudsms.com
     
    3232  *
    3333  * Version
     34  * 2.3.0 - Added Application-to-Person (A2P) registration guidance.
    3435  * 2.2.9.1 - Added code to sanitise text area input
    3536  * 2.2.9 - Added Twilio account details to Messaging-Settings-Twilio Settings tab
     
    123124            $this->product = "JOT Lite";                       
    124125            $this->token = 'jot-plugin';
    125             $this->version = '2.2.9.1';
     126            $this->version = '2.3.0';
    126127            $this->debug = false;           
    127128           
  • joy-of-text/trunk/readme.txt

    r2597353 r2748389  
    44Tags:  twilio, message, sms, mms, text, mobile, sms scheduler, scheduler, woocommerce, membermouse, voice message, notification, subscribe, buddypress, gravity forms
    55Requires at least: 3.0.1
    6 Tested up to: 5.8.1
    7 Stable tag: 2.2.9.1
     6Tested up to: 6.0
     7Stable tag: 2.3.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    260260== Changelog ==
    261261
    262 = 2.2.9.1 =
    263 * Improved data validation and sanitization.
     262= 2.3.0 =
     263* Added Application-to-Person (A2P) registration guidance.
    264264
    265265= 2.2.9 =
     
    396396== Upgrade Notice ==
    397397
    398 = 2.2.9.1 =
    399 * Improved data validation and sanitization.
     398= 2.3.0 =
     399* Added Application-to-Person (A2P) registration guidance.
     400
Note: See TracChangeset for help on using the changeset viewer.