Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add/features module #1067

Merged
merged 29 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
09fc743
add features module and updated staging module
circlecube Apr 26, 2024
ade0916
features module development and integration
circlecube May 3, 2024
81a641c
Merge branch 'develop' into add/features-module
circlecube May 3, 2024
549c8f2
setup performance module with features
circlecube May 8, 2024
f911eb5
Merge branch 'main' into add/features-module
circlecube May 8, 2024
e70fe67
use features API for nav items
circlecube May 9, 2024
33a461c
add Features instantiation to plugin bootstrap
circlecube May 10, 2024
39b1704
update to released version of features module
circlecube May 13, 2024
03d3316
load required files in modules properly
circlecube May 13, 2024
1eeb8be
lint
circlecube May 13, 2024
afaa029
merge `main` into feature branch
circlecube May 15, 2024
d7446fb
Merge branch 'main' into add/features-module
circlecube May 17, 2024
1323fcc
update features module to 1.1.1
circlecube May 17, 2024
2fe32ea
update features module
circlecube May 21, 2024
30d15c3
add atomic module
circlecube May 21, 2024
dbb84a6
update feature module
circlecube May 21, 2024
fa1d6d7
update feature module
circlecube May 21, 2024
9961d86
update atomic, context, features modules
circlecube May 23, 2024
b603d2e
add feature toggles to settings page for help center and wonder blocks
circlecube May 24, 2024
a168b06
add app admin page with feature toggles
circlecube May 24, 2024
bcf7ddc
Merge branch 'develop' into add/features-module
circlecube May 24, 2024
abe8407
copy updates for new toggles and clean up admin page
circlecube May 28, 2024
ae5faad
composer updates to require branches as versions
circlecube May 28, 2024
69791f1
use error state and eslint cleanup
circlecube May 28, 2024
0dcc62a
only show help center toggle on settings if not locked
circlecube May 28, 2024
bc73580
update help and staging modules to 2.0 releases
circlecube May 29, 2024
becde49
Merge branch 'develop' into add/features-module
circlecube May 29, 2024
a2394f1
update performance and patterns modules to 2.0.0 releases
circlecube May 29, 2024
f9021a9
remove unused icon for route
circlecube May 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use NewfoldLabs\WP\ModuleLoader\Container;
use NewfoldLabs\WP\ModuleLoader\Plugin;
use NewfoldLabs\WP\Context\Context;
use NewfoldLabs\WP\Module\Features\Features;
use function NewfoldLabs\WP\ModuleLoader\container as setContainer;
use function NewfoldLabs\WP\Context\setContext;
use function NewfoldLabs\WP\Context\getContext;
Expand Down Expand Up @@ -199,3 +200,6 @@ function () {
if ( is_admin() ) {
new Admin();
}

// Instantiate the Features singleton
Features::getInstance();
16 changes: 9 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,28 +70,30 @@
"roave/security-advisories": "dev-latest",
"newfold-labs/wp-php-standards": "^1.2.3",
"wp-cli/i18n-command": "^2.6.1",
"wp-phpunit/wp-phpunit": "^6.5.2"
"wp-phpunit/wp-phpunit": "^6.5.3"
},
"require": {
"newfold-labs/wp-module-activation": "^1.0.2",
"newfold-labs/wp-module-atomic": "^1.2.0",
"newfold-labs/wp-module-coming-soon": "^1.2.3",
"newfold-labs/wp-module-context": "^1.0.0",
"newfold-labs/wp-module-context": "^1.0.1",
"newfold-labs/wp-module-data": "^2.5.0",
"newfold-labs/wp-module-deactivation": "^1.1.2",
"newfold-labs/wp-module-ecommerce": "^1.3.31",
"newfold-labs/wp-module-features": "^1.4.1",
"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.25",
"newfold-labs/wp-module-facebook": "^1.0.7",
"newfold-labs/wp-module-help-center": "^2.0.0",
"newfold-labs/wp-module-loader": "^1.0.10",
"newfold-labs/wp-module-marketplace": "^2.2.4",
"newfold-labs/wp-module-notifications": "^1.3.0",
"newfold-labs/wp-module-onboarding": "^2.3.2",
"newfold-labs/wp-module-patterns": "^1.0.0",
"newfold-labs/wp-module-performance": "^1.4.1",
"newfold-labs/wp-module-patterns": "2.0.0 as 1.9.9",
"newfold-labs/wp-module-performance": "2.0.0 as 1.9.9",
"newfold-labs/wp-module-runtime": "^1.0.11",
"newfold-labs/wp-module-secure-passwords": "^1.1.1",
"newfold-labs/wp-module-sso": "^1.0.5",
"newfold-labs/wp-module-staging": "^1.3.3",
"newfold-labs/wp-module-staging": "^2.0.0",
"wp-forge/wp-update-handler": "^1.0.2",
"wp-forge/wp-upgrade-handler": "^1.0"
}
Expand Down
Loading
Loading