Created
May 17, 2017 15:40
-
-
Save DanielSantoro/032d97bb0663cc306404100cd734ff39 to your computer and use it in GitHub Desktop.
576252
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; // Exit if accessed directly | |
} | |
/** | |
* Simple Product Class. | |
* | |
* The default product type kinda product. | |
* | |
* @class WC_Product_Simple | |
* @package WooCommerce/Classes/Products | |
* @category Class | |
* @author WooThemes | |
*/ | |
class WC_Product_Simple extends WC_Product { | |
/** | |
* Initialize simple product. | |
* | |
* @param mixed $product | |
*/ | |
public function __construct( $product = 0 ) { | |
$this->supports[] = 'ajax_add_to_cart'; | |
parent::__construct( $product ); | |
} | |
/** | |
* Get internal type. | |
* @return string | |
*/ | |
public function get_type() { | |
return 'simple'; | |
} | |
/** | |
* Get the add to url used mainly in loops. | |
* | |
* @return string | |
*/ | |
public function add_to_cart_url() { | |
$url = $this->is_purchasable() && $this->is_in_stock() ? remove_query_arg( 'added-to-cart', add_query_arg( 'add-to-cart', $this->id ) ) : get_permalink( $this->id ); | |
return apply_filters( 'woocommerce_product_add_to_cart_url', $url, $this ); | |
} | |
/** | |
* Get the add to cart button text. | |
* | |
* @return string | |
*/ | |
public function add_to_cart_text() { | |
$text = $this->is_purchasable() && $this->is_in_stock() ? __( 'Add to cart', 'woocommerce' ) : __( 'Read more', 'woocommerce' ); | |
return apply_filters( 'woocommerce_product_add_to_cart_text', $text, $this ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
576252