Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Merge branch 'develop' into add/facebook-module
Browse files Browse the repository at this point in the history
  • Loading branch information
ramyakrishnai committed Apr 23, 2024
2 parents 032baaf + 0cb4a2b commit cf5a18e
Show file tree
Hide file tree
Showing 13 changed files with 4,793 additions and 3,309 deletions.
6 changes: 3 additions & 3 deletions bluehost-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
*
* @package WPPluginBluehost
* @author Newfold Digital
* @copyright Copyright 2023 by Newfold Digital - All rights reserved.
* @copyright Copyright 2024 by Newfold Digital - All rights reserved.
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: The Bluehost Plugin
* Plugin URI: https://bluehost.com
* Update URI: https://github.com/bluehost/bluehost-wordpress-plugin
* Description: WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.
* Version: 3.9.3
* Version: 3.9.4
* Requires at least: 6.0
* Requires PHP: 7.1
* Tested up to: 6.5.2
Expand All @@ -32,7 +32,7 @@
}

// Define constants
define( 'BLUEHOST_PLUGIN_VERSION', '3.9.3' );
define( 'BLUEHOST_PLUGIN_VERSION', '3.9.4' );
define( 'BLUEHOST_PLUGIN_FILE', __FILE__ );
define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,30 +61,30 @@
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"newfold-labs/wp-php-standards": "^1.2",
"wp-cli/i18n-command": "^2.5.0",
"wp-phpunit/wp-phpunit": "^6.4.2"
"newfold-labs/wp-php-standards": "^1.2.2",
"wp-cli/i18n-command": "^2.6.1",
"wp-phpunit/wp-phpunit": "^6.5.2"
},
"require": {
"newfold-labs/wp-module-activation": "^1.0.1",
"newfold-labs/wp-module-coming-soon": "^1.2.3",
"newfold-labs/wp-module-context": "^1.0.0",
"newfold-labs/wp-module-data": "^2.4.20",
"newfold-labs/wp-module-data": "^2.4.24",
"newfold-labs/wp-module-deactivation": "^1.1.1",
"newfold-labs/wp-module-ecommerce": "^1.3.27",
"newfold-labs/wp-module-ecommerce": "^1.3.28",
"newfold-labs/wp-module-global-ctb": "^1.0.11",
"newfold-labs/wp-module-facebook": "^1.0.6",
"newfold-labs/wp-module-help-center": "^1.0.24",
"newfold-labs/wp-module-loader": "^1.0.10",
"newfold-labs/wp-module-marketplace": "^2.2.4",
"newfold-labs/wp-module-notifications": "^1.2.5",
"newfold-labs/wp-module-onboarding": "^2.1.9",
"newfold-labs/wp-module-patterns": "^0.1.15",
"newfold-labs/wp-module-patterns": "^0.1.18",
"newfold-labs/wp-module-performance": "^1.4.0",
"newfold-labs/wp-module-runtime": "^1.0.10",
"newfold-labs/wp-module-secure-passwords": "^1.1.1",
"newfold-labs/wp-module-sso": "^1.0.4",
"newfold-labs/wp-module-staging": "^1.3.0",
"newfold-labs/wp-module-sso": "^1.0.5",
"newfold-labs/wp-module-staging": "^1.3.3",
"wp-forge/wp-update-handler": "^1.0.2",
"wp-forge/wp-upgrade-handler": "^1.0"
}
Expand Down
49 changes: 26 additions & 23 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions inc/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ public static function subpages() {
$home = array(
'bluehost#/home' => __( 'Home', 'wp-plugin-bluehost' ),
);
$pagesAndPosts = array(
'bluehost#/pages-and-posts' => __( 'Pages & Posts', 'wp-plugin-bluehost' ),
);
$store = array(
'bluehost#/store' => __( 'Store', 'wp-plugin-bluehost' ),
);
Expand All @@ -89,6 +92,7 @@ public static function subpages() {
if ( 'atomic' === getContext( 'platform' ) ) {
return array_merge(
$home,
$pagesAndPosts,
$store,
$marketplace,
$settings,
Expand All @@ -98,6 +102,7 @@ public static function subpages() {

return array_merge(
$home,
$pagesAndPosts,
$store,
$marketplace,
$performance,
Expand Down
Loading

0 comments on commit cf5a18e

Please sign in to comment.