Plugin Directory

Changeset 2893866


Ignore:
Timestamp:
04/04/2023 07:55:49 PM (3 years ago)
Author:
inmotionhosting
Message:

version 2.0.3

Location:
central-connect
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • central-connect/tags/2.0.3/central-connect.php

    r2845584 r2893866  
    1616 * Plugin URI:        https://central.inmotionhosting.com
    1717 * Description:       Safe and easy management for all of your WordPress websites. SEO, Backups, 1-click login, site transfers, and more on one dashboard.
    18  * Version:           2.0.1
     18 * Version:           2.0.3
    1919 * Author:            InMotion Hosting
    2020 * Author URI:        https://inmotionhosting.com
  • central-connect/tags/2.0.3/includes/class-central-connect-login.php

    r2845584 r2893866  
    103103            if ( ! empty( $_REQUEST['environment_id'] ) ) {
    104104                $environment_id = sanitize_text_field( wp_unslash( $_REQUEST['environment_id'] ) );
    105                 $tokenValidator = new \BoldGrid\Connect\Authentication\Token();
     105                $tokenValidator = new \Central\Connect\Authentication\Token();
    106106                if ( ! empty( $_REQUEST['has_access_token'] ) ) {
    107107                    $user = $tokenValidator->getValidUser( $token );
     
    167167        do_action( 'bgc_remote_validate' );
    168168
    169         $configs   = Boldgrid_Connect_Service::get( 'configs' );
     169        $configs   = \Central_Connect_Service::get( 'configs' );
    170170        $url       = $configs['asset_server'] . $configs['ajax_calls']['verify_site_token'];
    171171        $args      = array(
  • central-connect/tags/2.0.3/readme.txt

    r2845588 r2893866  
    55Tested up to: 6.1
    66Requires PHP: 5.4
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2828== Changelog ==
    2929
    30 = 2.0.2 =
     30= 2.0.3 =
    3131
    32 Release Date: January 9th, 2023
     32Release Date: April 4th, 2023
    3333
    34 * Update: Updated plugin for wp.org submission.
     34* Bug Fix: Resolve correct class names for repo changes.
    3535
    3636= 2.0.1 =
  • central-connect/tags/2.0.3/src/Health/Stats.php

    r2845584 r2893866  
    66 *
    77 * @since      2.0.0
    8  * @package    BoldGrid\Connect\Rest
    9  * @author     BoldGrid <support@boldgrid.com>
     8 * @package    Central\Connect\Rest
     9 * @author     InMotion Hosting <central-dev@inmotionhosting.com>
    1010 * @link       https://boldgrid.com
    1111 */
    1212
    13 namespace BoldGrid\Connect\Health;
     13namespace Central\Connect\Health;
    1414
    1515/**
  • central-connect/trunk/central-connect.php

    r2845584 r2893866  
    1616 * Plugin URI:        https://central.inmotionhosting.com
    1717 * Description:       Safe and easy management for all of your WordPress websites. SEO, Backups, 1-click login, site transfers, and more on one dashboard.
    18  * Version:           2.0.1
     18 * Version:           2.0.3
    1919 * Author:            InMotion Hosting
    2020 * Author URI:        https://inmotionhosting.com
  • central-connect/trunk/includes/class-central-connect-login.php

    r2845584 r2893866  
    103103            if ( ! empty( $_REQUEST['environment_id'] ) ) {
    104104                $environment_id = sanitize_text_field( wp_unslash( $_REQUEST['environment_id'] ) );
    105                 $tokenValidator = new \BoldGrid\Connect\Authentication\Token();
     105                $tokenValidator = new \Central\Connect\Authentication\Token();
    106106                if ( ! empty( $_REQUEST['has_access_token'] ) ) {
    107107                    $user = $tokenValidator->getValidUser( $token );
     
    167167        do_action( 'bgc_remote_validate' );
    168168
    169         $configs   = Boldgrid_Connect_Service::get( 'configs' );
     169        $configs   = \Central_Connect_Service::get( 'configs' );
    170170        $url       = $configs['asset_server'] . $configs['ajax_calls']['verify_site_token'];
    171171        $args      = array(
  • central-connect/trunk/readme.txt

    r2845588 r2893866  
    55Tested up to: 6.1
    66Requires PHP: 5.4
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2828== Changelog ==
    2929
    30 = 2.0.2 =
     30= 2.0.3 =
    3131
    32 Release Date: January 9th, 2023
     32Release Date: April 4th, 2023
    3333
    34 * Update: Updated plugin for wp.org submission.
     34* Bug Fix: Resolve correct class names for repo changes.
    3535
    3636= 2.0.1 =
  • central-connect/trunk/src/Health/Stats.php

    r2845584 r2893866  
    66 *
    77 * @since      2.0.0
    8  * @package    BoldGrid\Connect\Rest
    9  * @author     BoldGrid <support@boldgrid.com>
     8 * @package    Central\Connect\Rest
     9 * @author     InMotion Hosting <central-dev@inmotionhosting.com>
    1010 * @link       https://boldgrid.com
    1111 */
    1212
    13 namespace BoldGrid\Connect\Health;
     13namespace Central\Connect\Health;
    1414
    1515/**
Note: See TracChangeset for help on using the changeset viewer.