automattic / jetpack-identity-crisis
Identity Crisis.
Installs: 195 765
Dependents: 8
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 1
Type:jetpack-library
Requires
- automattic/jetpack-assets: ^1.17.34
- automattic/jetpack-connection: ^1.51.2
- automattic/jetpack-constants: ^1.6.21
- automattic/jetpack-logo: ^1.5.22
- automattic/jetpack-status: ^1.16.2
Requires (Dev)
- automattic/jetpack-changelogger: ^3.3.2
- automattic/wordbless: @dev
- yoast/phpunit-polyfills: 1.0.4
- dev-trunk / 0.8.x-dev
- v0.8.40
- v0.8.39
- v0.8.38
- v0.8.37
- v0.8.36
- v0.8.35
- v0.8.34
- v0.8.33
- v0.8.32
- v0.8.31
- v0.8.30
- v0.8.29
- v0.8.28
- v0.8.27
- v0.8.26
- v0.8.25
- v0.8.24
- v0.8.23
- v0.8.22
- v0.8.21
- v0.8.20
- v0.8.19
- v0.8.18
- v0.8.17
- v0.8.16
- v0.8.15.1
- v0.8.15
- v0.8.14
- v0.8.13
- v0.8.12
- v0.8.11
- v0.8.10
- v0.8.9
- v0.8.8
- v0.8.7
- v0.8.6
- v0.8.5
- v0.8.4
- v0.8.3
- v0.8.2
- v0.8.1
- v0.8.0
- v0.7.4
- v0.7.3
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.4
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.0
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.1
- v0.3.0
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.0
- dev-prerelease
- dev-release-v0.8.15.1
- dev-fix/slack-workflow-branch-detection
- dev-release-v0.6.1
- dev-fix/release-branch-typo
- dev-update/generate-branch-plugin
This package is auto-updated.
Last update: 2023-03-24 12:21:36 UTC
README
Identity Crisis
Usage
The Identity Crisis package can be initialized using the Config package as shown in the example below.
use Automattic\Jetpack\Config; // Configuring as early as plugins_loaded priority 1 // to make sure every action handler gets properly set. add_action( 'plugins_loaded', 'configure_identity_crisis', 1 ); function configure_identity_crisis() { $config = new Config(); $config->ensure( 'identity_crisis' ); }
The Identity Crisis package can also be initialized directly.
// Initialize Identity Crisis. add_action( 'plugins_loaded', array( 'Automattic\\Jetpack\\Identity_Crisis', 'init' ) );
Examples
Clearing IDC options.
namespace Automattic\Jetpack\Identity_Crisis; Identity_Crisis::clear_all_idc_options();