Submit
Path:
~
/
home
/
getwphos
/
public_html
/
ppine
/
wp-content
/
plugins
/
woocommerce
/
includes
/
File Content:
class-wc-embed.php
<?php /** * WooCommerce product embed * * @version 2.4.11 * @package WooCommerce\Classes\Embed */ use Automattic\WooCommerce\Enums\ProductType; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Embed Class which handles any WooCommerce Products that are embedded on this site or another site. */ class WC_Embed { /** * Init embed class. * * @since 2.4.11 */ public static function init() { // Filter all of the content that's going to be embedded. add_filter( 'the_excerpt_embed', array( __CLASS__, 'the_excerpt' ), 10 ); // Make sure no comments display. Doesn't make sense for products. add_action( 'embed_content_meta', array( __CLASS__, 'remove_comments_button' ), 5 ); // In the comments place let's display the product rating. add_action( 'embed_content_meta', array( __CLASS__, 'get_ratings' ), 5 ); // Add some basic styles. add_action( 'embed_head', array( __CLASS__, 'print_embed_styles' ) ); } /** * Remove comments button on product embeds. * * @since 2.6.0 */ public static function remove_comments_button() { if ( self::is_embedded_product() ) { remove_action( 'embed_content_meta', 'print_embed_comments_button' ); } } /** * Check if this is an embedded product - to make sure we don't mess up regular posts. * * @since 2.4.11 * @return bool */ public static function is_embedded_product() { if ( function_exists( 'is_embed' ) && is_embed() && is_product() ) { return true; } return false; } /** * Create the excerpt for embedded products - we want to add the buy button to it. * * @since 2.4.11 * @param string $excerpt Embed short description. * @return string */ public static function the_excerpt( $excerpt ) { global $post; // Get product. $_product = wc_get_product( get_the_ID() ); // Make sure we're only affecting embedded products. if ( self::is_embedded_product() ) { echo '<p><span class="wc-embed-price">' . $_product->get_price_html() . '</span></p>'; // WPCS: XSS ok. if ( ! empty( $post->post_excerpt ) ) { ob_start(); woocommerce_template_single_excerpt(); $excerpt = ob_get_clean(); } // Add the button. $excerpt .= self::product_buttons(); } return $excerpt; } /** * Create the button to go to the product page for embedded products. * * @since 2.4.11 * @return string */ public static function product_buttons() { $_product = wc_get_product( get_the_ID() ); $buttons = array(); $button = '<a href="%s" class="wp-embed-more wc-embed-button">%s</a>'; if ( $_product->is_type( ProductType::SIMPLE ) && $_product->is_purchasable() && $_product->is_in_stock() ) { $buttons[] = sprintf( $button, esc_url( add_query_arg( 'add-to-cart', get_the_ID(), wc_get_cart_url() ) ), esc_html__( 'Buy now', 'woocommerce' ) ); } $buttons[] = sprintf( $button, get_the_permalink(), esc_html__( 'Read more', 'woocommerce' ) ); return '<p>' . implode( ' ', $buttons ) . '</p>'; } /** * Prints the markup for the rating stars. * * @since 2.4.11 */ public static function get_ratings() { // Make sure we're only affecting embedded products. if ( ! self::is_embedded_product() ) { return; } $_product = wc_get_product( get_the_ID() ); if ( $_product && $_product->get_average_rating() > 0 ) { ?> <div class="wc-embed-rating"> <?php printf( /* translators: %s: average rating */ esc_html__( 'Rated %s out of 5', 'woocommerce' ), esc_html( $_product->get_average_rating() ) ); ?> </div> <?php } } /** * Basic styling. */ public static function print_embed_styles() { if ( ! self::is_embedded_product() ) { return; } ?> <style type="text/css"> a.wc-embed-button { border-radius: 4px; border: 1px solid #ddd; box-shadow: 0px 1px 0 0px rgba(0, 0, 0, 0.05); display:inline-block; padding: .5em; } a.wc-embed-button:hover, a.wc-embed-button:focus { border: 1px solid #ccc; box-shadow: 0px 1px 0 0px rgba(0, 0, 0, 0.1); color: #999; text-decoration: none; } .wp-embed-excerpt p { margin: 0 0 1em; } .wc-embed-price { display: block; opacity: .75; font-weight: 700; margin-top: -.75em; } .wc-embed-rating { display: inline-block; } </style> <?php } } WC_Embed::init();
Submit
FILE
FOLDER
Name
Size
Permission
Action
abstracts
---
0755
admin
---
0755
blocks
---
0755
cli
---
0755
customizer
---
0755
data-stores
---
0755
emails
---
0755
export
---
0755
gateways
---
0755
import
---
0755
integrations
---
0755
interfaces
---
0755
legacy
---
0755
libraries
---
0755
log-handlers
---
0755
payment-tokens
---
0755
product-usage
---
0755
queue
---
0755
react-admin
---
0755
rest-api
---
0755
shipping
---
0755
shortcodes
---
0755
theme-support
---
0755
tracks
---
0755
traits
---
0755
walkers
---
0755
wccom-site
---
0755
widgets
---
0755
class-wc-ajax.php
122567 bytes
0644
class-wc-auth.php
12995 bytes
0644
class-wc-autoloader.php
3401 bytes
0644
class-wc-background-emailer.php
4685 bytes
0644
class-wc-background-updater.php
3535 bytes
0644
class-wc-brands-brand-settings-manager.php
1826 bytes
0644
class-wc-brands-coupons.php
7059 bytes
0644
class-wc-brands.php
34095 bytes
0644
class-wc-breadcrumb.php
9722 bytes
0644
class-wc-cache-helper.php
11438 bytes
0644
class-wc-cart-fees.php
3448 bytes
0644
class-wc-cart-session.php
20140 bytes
0644
class-wc-cart-totals.php
29166 bytes
0644
class-wc-cart.php
72605 bytes
0644
class-wc-checkout.php
51349 bytes
0644
class-wc-cli.php
2935 bytes
0644
class-wc-comments.php
23066 bytes
0644
class-wc-countries.php
50342 bytes
0644
class-wc-coupon.php
40825 bytes
0644
class-wc-customer-download-log.php
3452 bytes
0644
class-wc-customer-download.php
10587 bytes
0644
class-wc-customer.php
33300 bytes
0644
class-wc-data-exception.php
1321 bytes
0644
class-wc-data-store.php
6752 bytes
0644
class-wc-datetime.php
2310 bytes
0644
class-wc-deprecated-action-hooks.php
6746 bytes
0644
class-wc-deprecated-filter-hooks.php
7518 bytes
0644
class-wc-discounts.php
37476 bytes
0644
class-wc-download-handler.php
29053 bytes
0644
class-wc-emails.php
34457 bytes
0644
class-wc-embed.php
4342 bytes
0644
class-wc-form-handler.php
46932 bytes
0644
class-wc-frontend-scripts.php
28511 bytes
0644
class-wc-geo-ip.php
31139 bytes
0644
class-wc-geolite-integration.php
2036 bytes
0644
class-wc-geolocation.php
11594 bytes
0644
class-wc-https.php
4439 bytes
0644
class-wc-install.php
109669 bytes
0644
class-wc-integrations.php
1308 bytes
0644
class-wc-log-levels.php
3992 bytes
0644
class-wc-logger.php
9601 bytes
0644
class-wc-meta-data.php
2260 bytes
0644
class-wc-order-factory.php
8728 bytes
0644
class-wc-order-item-coupon.php
4175 bytes
0644
class-wc-order-item-fee.php
9431 bytes
0644
class-wc-order-item-meta.php
5942 bytes
0644
class-wc-order-item-shipping.php
9013 bytes
0644
class-wc-order-item-tax.php
6644 bytes
0644
class-wc-order-item.php
18990 bytes
0644
class-wc-order-query.php
2615 bytes
0644
class-wc-order-refund.php
6135 bytes
0644
class-wc-order.php
76529 bytes
0644
class-wc-payment-gateways.php
16110 bytes
0644
class-wc-payment-tokens.php
6390 bytes
0644
class-wc-post-data.php
22246 bytes
0644
class-wc-post-types.php
32771 bytes
0644
class-wc-privacy-background-process.php
1833 bytes
0644
class-wc-privacy-erasers.php
13935 bytes
0644
class-wc-privacy-exporters.php
15044 bytes
0644
class-wc-privacy.php
17629 bytes
0644
class-wc-product-download.php
12547 bytes
0644
class-wc-query.php
34161 bytes
0644
class-wc-rate-limiter.php
4100 bytes
0644
class-wc-regenerate-images-request.php
7923 bytes
0644
class-wc-regenerate-images.php
15806 bytes
0644
class-wc-register-wp-admin-settings.php
5171 bytes
0644
class-wc-rest-authentication.php
22068 bytes
0644
class-wc-rest-exception.php
276 bytes
0644
class-wc-session-handler.php
21358 bytes
0644
class-wc-shipping-rate.php
9566 bytes
0644
class-wc-shipping-zone.php
13392 bytes
0644
class-wc-shipping-zones.php
4106 bytes
0644
class-wc-shipping.php
13160 bytes
0644
class-wc-shortcodes.php
19274 bytes
0644
class-wc-structured-data.php
24367 bytes
0644
class-wc-tax.php
37969 bytes
0644
class-wc-template-loader.php
21893 bytes
0644
class-wc-tracker.php
50557 bytes
0644
class-wc-validation.php
5929 bytes
0644
class-wc-webhook.php
30111 bytes
0644
class-woocommerce.php
51138 bytes
0644
wc-account-functions.php
14449 bytes
0644
wc-attribute-functions.php
21687 bytes
0644
wc-brands-functions.php
4270 bytes
0644
wc-cart-functions.php
21080 bytes
0644
wc-conditional-functions.php
14916 bytes
0644
wc-core-functions.php
88756 bytes
0644
wc-coupon-functions.php
3169 bytes
0644
wc-deprecated-functions.php
39030 bytes
0644
wc-formatting-functions.php
50031 bytes
0644
wc-notice-functions.php
8277 bytes
0644
wc-order-functions.php
41609 bytes
0644
wc-order-item-functions.php
5153 bytes
0644
wc-order-step-logger-functions.php
5135 bytes
0644
wc-page-functions.php
9657 bytes
0644
wc-product-functions.php
59920 bytes
0644
wc-stock-functions.php
17544 bytes
0644
wc-template-functions.php
135937 bytes
0644
wc-template-hooks.php
12957 bytes
0644
wc-term-functions.php
24381 bytes
0644
wc-update-functions.php
95221 bytes
0644
wc-webhook-functions.php
5905 bytes
0644
wc-widget-functions.php
2063 bytes
0644
N4ST4R_ID | Naxtarrr