is_active( static::$module_name ); } return true; } /** * Checks whether the Product is active * * @return boolean */ public static function is_active() { return parent::is_active() && static::is_module_active(); } /** * Activates the plugin * * @return null|WP_Error Null on success, WP_Error on invalid file. */ public static function activate_plugin() { /* * Activate self-installed plugin if it's installed. */ if ( parent::is_plugin_installed() ) { return activate_plugin( static::get_installed_plugin_filename() ); } /* * Otherwise, activate Jetpack plugin. * Silent mode True to avoid redirects. */ if ( static::is_jetpack_plugin_installed() ) { return activate_plugin( static::get_installed_plugin_filename( 'jetpack' ) ); } return new WP_Error( 'plugin_not_found', __( 'Activation failed. Plugin is not installed', 'jetpack-my-jetpack' ) ); } /** * Activates the product. If the Hybrid product has declared a jetpack module name, let's try to activate it if Jetpack plugin is active * * @param bool|WP_Error $product_activation Is the result of the top level activation actions. You probably won't do anything if it is an WP_Error. * @return bool|WP_Error */ public static function do_product_specific_activation( $product_activation ) { if ( is_wp_error( $product_activation ) ) { // If we failed to install the stand-alone plugin because the package was not found, let's try and install Jetpack plugin instead. // This might happens, for example, while the stand-alone plugin was not released to the WP.org repository yet. if ( 'no_package' === $product_activation->get_error_code() ) { $product_activation = Plugins_Installer::install_plugin( self::JETPACK_PLUGIN_SLUG ); if ( ! is_wp_error( $product_activation ) ) { $product_activation = static::activate_plugin(); } } if ( is_wp_error( $product_activation ) ) { return $product_activation; } } if ( ! empty( static::$module_name ) ) { if ( ! static::has_required_plan() ) { // translators: %s is the product name. e.g. Jetpack Search. return new WP_Error( 'not_supported', sprintf( __( 'Your plan does not support %s.', 'jetpack-my-jetpack' ), static::get_title() ) ); } $module_activation = ( new Modules() )->activate( static::$module_name, false, false ); if ( ! $module_activation ) { return new WP_Error( 'module_activation_failed', __( 'Error activating Jetpack module', 'jetpack-my-jetpack' ) ); } return $module_activation; } return true; } }