Changeset 2893866
- Timestamp:
- 04/04/2023 07:55:49 PM (3 years ago)
- Location:
- central-connect
- Files:
-
- 8 edited
- 1 copied
-
tags/2.0.3 (copied) (copied from central-connect/trunk)
-
tags/2.0.3/central-connect.php (modified) (1 diff)
-
tags/2.0.3/includes/class-central-connect-login.php (modified) (2 diffs)
-
tags/2.0.3/readme.txt (modified) (2 diffs)
-
tags/2.0.3/src/Health/Stats.php (modified) (1 diff)
-
trunk/central-connect.php (modified) (1 diff)
-
trunk/includes/class-central-connect-login.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Health/Stats.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
central-connect/tags/2.0.3/central-connect.php
r2845584 r2893866 16 16 * Plugin URI: https://central.inmotionhosting.com 17 17 * 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. 118 * Version: 2.0.3 19 19 * Author: InMotion Hosting 20 20 * Author URI: https://inmotionhosting.com -
central-connect/tags/2.0.3/includes/class-central-connect-login.php
r2845584 r2893866 103 103 if ( ! empty( $_REQUEST['environment_id'] ) ) { 104 104 $environment_id = sanitize_text_field( wp_unslash( $_REQUEST['environment_id'] ) ); 105 $tokenValidator = new \ BoldGrid\Connect\Authentication\Token();105 $tokenValidator = new \Central\Connect\Authentication\Token(); 106 106 if ( ! empty( $_REQUEST['has_access_token'] ) ) { 107 107 $user = $tokenValidator->getValidUser( $token ); … … 167 167 do_action( 'bgc_remote_validate' ); 168 168 169 $configs = Boldgrid_Connect_Service::get( 'configs' );169 $configs = \Central_Connect_Service::get( 'configs' ); 170 170 $url = $configs['asset_server'] . $configs['ajax_calls']['verify_site_token']; 171 171 $args = array( -
central-connect/tags/2.0.3/readme.txt
r2845588 r2893866 5 5 Tested up to: 6.1 6 6 Requires PHP: 5.4 7 Stable tag: 2.0. 27 Stable tag: 2.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 28 28 == Changelog == 29 29 30 = 2.0. 2=30 = 2.0.3 = 31 31 32 Release Date: January 9th, 202332 Release Date: April 4th, 2023 33 33 34 * Update: Updated plugin for wp.org submission.34 * Bug Fix: Resolve correct class names for repo changes. 35 35 36 36 = 2.0.1 = -
central-connect/tags/2.0.3/src/Health/Stats.php
r2845584 r2893866 6 6 * 7 7 * @since 2.0.0 8 * @package BoldGrid\Connect\Rest9 * @author BoldGrid <support@boldgrid.com>8 * @package Central\Connect\Rest 9 * @author InMotion Hosting <central-dev@inmotionhosting.com> 10 10 * @link https://boldgrid.com 11 11 */ 12 12 13 namespace BoldGrid\Connect\Health;13 namespace Central\Connect\Health; 14 14 15 15 /** -
central-connect/trunk/central-connect.php
r2845584 r2893866 16 16 * Plugin URI: https://central.inmotionhosting.com 17 17 * 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. 118 * Version: 2.0.3 19 19 * Author: InMotion Hosting 20 20 * Author URI: https://inmotionhosting.com -
central-connect/trunk/includes/class-central-connect-login.php
r2845584 r2893866 103 103 if ( ! empty( $_REQUEST['environment_id'] ) ) { 104 104 $environment_id = sanitize_text_field( wp_unslash( $_REQUEST['environment_id'] ) ); 105 $tokenValidator = new \ BoldGrid\Connect\Authentication\Token();105 $tokenValidator = new \Central\Connect\Authentication\Token(); 106 106 if ( ! empty( $_REQUEST['has_access_token'] ) ) { 107 107 $user = $tokenValidator->getValidUser( $token ); … … 167 167 do_action( 'bgc_remote_validate' ); 168 168 169 $configs = Boldgrid_Connect_Service::get( 'configs' );169 $configs = \Central_Connect_Service::get( 'configs' ); 170 170 $url = $configs['asset_server'] . $configs['ajax_calls']['verify_site_token']; 171 171 $args = array( -
central-connect/trunk/readme.txt
r2845588 r2893866 5 5 Tested up to: 6.1 6 6 Requires PHP: 5.4 7 Stable tag: 2.0. 27 Stable tag: 2.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 28 28 == Changelog == 29 29 30 = 2.0. 2=30 = 2.0.3 = 31 31 32 Release Date: January 9th, 202332 Release Date: April 4th, 2023 33 33 34 * Update: Updated plugin for wp.org submission.34 * Bug Fix: Resolve correct class names for repo changes. 35 35 36 36 = 2.0.1 = -
central-connect/trunk/src/Health/Stats.php
r2845584 r2893866 6 6 * 7 7 * @since 2.0.0 8 * @package BoldGrid\Connect\Rest9 * @author BoldGrid <support@boldgrid.com>8 * @package Central\Connect\Rest 9 * @author InMotion Hosting <central-dev@inmotionhosting.com> 10 10 * @link https://boldgrid.com 11 11 */ 12 12 13 namespace BoldGrid\Connect\Health;13 namespace Central\Connect\Health; 14 14 15 15 /**
Note: See TracChangeset
for help on using the changeset viewer.