Add_Wc_Memberships_Integration
Source Source
File: src/integrations/wc-memberships/add-wc-memberships-integration.php
class Add_Wc_Memberships_Integration { /** * Integration code * @var string */ public static $integration = 'WCMEMBERSHIPS'; /** * Add_Integration constructor. */ public function __construct() { } /** * Only load this integration and its triggers and actions if the related plugin is active * * @param $status * @param $plugin * * @return bool */ public function plugin_active( $status, $plugin ) { if ( self::$integration === $plugin ) { if ( class_exists( 'WC_Memberships_Loader' ) ) { $status = true; } else { $status = false; } } return $status; } /** * 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'; $directory[] = dirname( __FILE__ ) . '/triggers'; $directory[] = dirname( __FILE__ ) . '/tokens'; return $directory; } /** * Register the integration by pushing it into the global automator object */ public function add_integration_func() { Automator()->register->integration( self::$integration, array( 'name' => 'Woo Memberships', 'icon_svg' => Utilities::automator_get_integration_icon( __DIR__ . '/img/woocommerce-icon.svg' ), ) ); } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Add_Wc_Memberships_Integration constructor.
- add_integration_directory_func — Set the directories that the auto loader will run in
- add_integration_func — Register the integration by pushing it into the global automator object
- plugin_active
- setup