Add_Facebook_Integration
Adds Integration to Automator.
Source Source
File: src/integrations/facebook/add-facebook-integration.php
class Add_Facebook_Integration { /** * Integration Identifier * * @var string * @since 2.4.0 */ public static $integration = 'FACEBOOK'; /** * Connected status * * @var bool */ public $connected = false; /** * Constructs the class. * * @since 2.4.0 */ public function __construct() { } /** * Registers Integration. * * @since 2.4.0 */ public function add_integration_func() { $facebook_options_user = get_option( '_uncannyowl_facebook_settings', array() ); $facebook_options_pages = get_option( '_uncannyowl_facebook_pages_settings', array() ); if ( ! empty( $facebook_options_user ) && ! empty( $facebook_options_pages ) ) { $this->connected = true; } // set up configuration. $integration_config = array( 'name' => 'Facebook', 'icon_svg' => Utilities::automator_get_integration_icon( __DIR__ . '/img/facebook-icon.svg' ), 'connected' => $this->connected, // 'settings_url' => admin_url( 'edit.php' ) . '?post_type=uo-recipe&page=uncanny-automator-settings&tab=facebook_api', ); // register integration into automator. Automator()->register->integration( self::$integration, $integration_config ); } /** * Set the directories that the auto loader will run in. * * @param $directory * * @return array */ public function add_integration_directory_func( $directory ) { $directory[] = dirname( __FILE__ ) . '/helpers'; $directory[] = dirname( __FILE__ ) . '/actions'; return $directory; } /** * This integration doesn't require any third-party plugins too be active, so the following function will always * return true. * * @param $status * @param $code * * @return bool */ public function plugin_active( $status, $code ) { return true; } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Constructs the class.
- add_integration_directory_func — Set the directories that the auto loader will run in.
- add_integration_func — Registers Integration.
- plugin_active — This integration doesn't require any third-party plugins too be active, so the following function will always return true.
Changelog Changelog
Version | Description |
---|---|
2.4.0 | Introduced. |