automattic / jetpack-identity-crisis
Identity Crisis.
Installs: 537 362
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 5
Forks: 1
Type:jetpack-library
Requires
- php: >=7.0
- automattic/jetpack-connection: ^2.9.0
Requires (Dev)
- automattic/jetpack-changelogger: ^4.2.4
Suggests
- automattic/jetpack-autoloader: Allow for better interoperability with other plugins that use this package.
- dev-trunk / 0.21.x-dev
- v0.21.0
- v0.20.0
- v0.19.0
- v0.18.6
- v0.18.5
- v0.18.4
- v0.18.3
- v0.18.2
- v0.18.1
- v0.18.0
- v0.17.6
- v0.17.5
- v0.17.4
- v0.17.3
- v0.17.2
- v0.17.1
- v0.17.0
- v0.16.0
- v0.15.1
- v0.15.0
- v0.14.1
- v0.14.0
- v0.13.0
- v0.12.1
- v0.12.0
- v0.11.3
- v0.11.2
- v0.11.1
- v0.11.0
- v0.10.7
- v0.10.6
- v0.10.5
- v0.10.4
- v0.10.3
- v0.10.2
- v0.10.1
- v0.10.0
- v0.9.0
- v0.8.52
- v0.8.51
- v0.8.50
- v0.8.49
- v0.8.48
- v0.8.47
- v0.8.46
- v0.8.45
- v0.8.44
- v0.8.43
- v0.8.42
- v0.8.41
- 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-release-v0.8.41
- 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: 2024-05-30 21:26: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();
Using this package in your WordPress plugin
If you plan on using this package in your WordPress plugin, we would recommend that you use Jetpack Autoloader as your autoloader. This will allow for maximum interoperability with other plugins that use this package as well.
Security
Need to report a security vulnerability? Go to https://automattic.com/security/ or directly to our security bug bounty site https://hackerone.com/automattic.
License
jetpack-identity-crisis is licensed under GNU General Public License v2 (or later)