is_activated( $plugin['slug'] ) ) {
$btn_class = 'hester-btn secondary';
$btn_text = esc_html__( 'Deactivate', 'bloglo' );
$action = 'deactivate';
$notice = '
' . esc_html__( 'Plugin activated', 'bloglo' ) . '';
} elseif ( bloglo_plugin_utilities()->is_installed( $plugin['slug'] ) ) {
$btn_class = 'hester-btn primary';
$btn_text = esc_html__( 'Activate', 'bloglo' );
$action = 'activate';
$notice = '';
} else {
$btn_class = 'hester-btn primary';
$btn_text = esc_html__( 'Install & Activate', 'bloglo' );
$action = 'install';
$notice = '';
}
?>