Add_Edd_Integration::plugin_active()
Return Return
(bool)
Source Source
File: src/integrations/edd/add-edd-integration.php
public function plugin_active( $status, $plugin ) { if ( self::$integration === $plugin ) { if ( function_exists( 'EDD' ) ) { $status = true; } else { $status = false; } } return $status; }
Expand full source code Collapse full source code View on Github