BSF_Update_Manager::bsf_update_display_license_link()
Update display license link.
Description
Source
File: admin/bsf-core/class-bsf-update-manager.php
public function bsf_update_display_license_link() { $brainstorm_all_products = $this->brainstorm_all_products(); foreach ( $brainstorm_all_products as $key => $product ) { if ( isset( $product['id'] ) ) { $id = $product['id']; if ( isset( $product['template'] ) && '' !== $product['template'] ) { $template = $product['template']; } elseif ( isset( $product['init'] ) && '' !== $product['init'] ) { $template = $product['init']; } if ( BSF_License_Manager::bsf_is_active_license( $id ) === false ) { if ( is_plugin_active( $template ) ) { add_action( "in_plugin_update_message-$template", array( $this, 'bsf_add_registration_message', ), 9, 2 ); } } else { add_action( "in_plugin_update_message-$template", array( $this, 'add_beta_update_message', ), 9, 2 ); } } } }
Expand full source code Collapse full source code View on Trac