automattic / jetpack-identity-crisis
Identity Crisis.
Installs: 95 183
Dependents: 7
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Type:jetpack-library
Requires
- automattic/jetpack-assets: ^1.17
- automattic/jetpack-connection: ^1.42
- automattic/jetpack-constants: ^1.6
- automattic/jetpack-logo: ^1.5
- automattic/jetpack-status: ^1.14
Requires (Dev)
- automattic/jetpack-changelogger: ^3.2
- automattic/wordbless: @dev
- yoast/phpunit-polyfills: 1.0.3
- dev-trunk / 0.8.x-dev
- 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-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: 2022-08-05 18:58:11 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();