Current File : /home/getxxhzo/xpertbee.com/wp-content/plugins/tutor/templates/loop/add-to-cart-edd.php |
<?php
/**
* Edd price template for the course list page
*
* @package Tutor\Templates
* @subpackage EDDIntegration
* @author Themeum <support@themeum.com>
* @link https://themeum.com
* @since 1.4.3
*/
$product_id = tutor_utils()->get_course_product_id();
$download = new EDD_Download( $product_id );
if ( $download->ID ) {
if ( ! is_user_logged_in() ) {
/**
* Add required logged in class
*
* @since v 1.5.5
*/
$button_behavior = edd_get_download_button_behavior( $download->ID );
$args = apply_filters(
'edd_purchase_link_defaults',
array(
'text' => 'direct' == $button_behavior ? edd_get_option( 'buy_now_text', __( 'Buy Now', 'easy-digital-downloads' ) ) : edd_get_option( 'add_to_cart_text', __( 'Purchase', 'easy-digital-downloads' ) ),
'style' => edd_get_option( 'button_style', 'button' ),
'color' => edd_get_option( 'checkout_color', 'blue' ),
'class' => 'edd-submit tutor-open-login-modal',
)
);
$button_text = edd_currency_filter( edd_format_amount( $download->price ) ) . ' – ' . $args['text'];
$button_class = implode( ' ', array( $args['style'], $args['color'], $args['class'] ) );
echo '<button class="' . esc_attr( $button_class ) . '">' . $button_text . '</button>'; //phpcs:ignore
} else {
echo edd_get_purchase_link( array( 'download_id' => $download->ID ) ); //phpcs:ignore
}
}