automator_integration_exists( $integration )
Check if integration exists
Parameters Parameters
- $integration
-
(Required)
Return Return
(bool)
Source Source
File: src/global-functions.php
function automator_integration_exists( string $integration ) { $integration = strtolower( $integration ); if ( ! isset( Set_Up_Automator::$all_integrations[ $integration ] ) ) { return false; } return true; }
Expand full source code Collapse full source code View on Github
Changelog Changelog
Version | Description |
---|---|
3.0 | Introduced. |