PATH:
home
/
ajwellnessmassag
/
angelictravels.online
/
wp-content
/
plugins
/
essential-blocks
/
includes
/
Blocks
<?php namespace EssentialBlocks\Blocks; use WP_Query; use EssentialBlocks\Core\Block; use EssentialBlocks\API\Product; use EssentialBlocks\Utils\Helper; class WooProductGrid extends Block { protected $frontend_scripts = array( 'essential-blocks-woo-product-grid-frontend' ); protected $frontend_styles = array( 'essential-blocks-fontawesome' ); /** * Unique name of the block. * * @return string */ public function get_name() { return 'woo-product-grid'; } /** * Register all other scripts * * @return void */ public function register_scripts() { $this->assets_manager->register( 'woo-product-grid-frontend', $this->path() . '/frontend.js' ); } public function get_array_column( $data, $handle ) { $_no_error = true; if ( ! is_array( $data ) ) { $data = json_decode( $data, true ); $_no_error = json_last_error() === JSON_ERROR_NONE; } return $_no_error ? array_column( $data, $handle ) : $data; } /** * Render Callback * * @param mixed $attributes * @param mixed $content * @return void|string */ private $sampleData = array( ); public function render_callback( $attributes, $content ) { if ( ! function_exists( '\WC' ) || is_admin() ) { return; } $_essential_attributes = array( 'layout' => 'grid', 'gridPreset' => 'grid-preset-1', 'listPreset' => 'list-preset-1', 'saleBadgeAlign' => 'align-left', 'saleText' => 'sale', 'showRating' => true, 'ratingStyle' => 'star', 'showSoldCount' => false, 'showSoldCountBar' => false, "soldCountPrefix" => __( "Sold ", "essential-blocks" ), "soldCountSuffix" => "+", "stockPercent" => 50, "showTaxonomyFilter" => false, "selectedTaxonomy" => "", "selectedTaxonomyItems" => '[{"value":"all","label":"All"}]', 'showPrice' => true, 'showSaleBadge' => true, 'showCategory' => false, 'productDescLength' => 5, 'isCustomCartBtn' => false, 'simpleCartText' => __( "Buy Now", "essential-blocks" ), 'variableCartText' => __( "Select Options", "essential-blocks" ), 'groupedCartText' => __( "View Products", "essential-blocks" ), 'externalCartText' => __( "Buy Now", "essential-blocks" ), 'defaultCartText' => __( "Read More", "essential-blocks" ), 'showDetailBtn' => true, 'detailBtnText' => isset( $attributes[ 'detailBtnText' ] ) ? $attributes[ 'detailBtnText' ] : __( "Visit Product", "essential-blocks" ), 'titleTag' => 'h3', 'imageSize' => 'full' ); foreach ( $_essential_attributes as $key => $value ) { if ( isset( $attributes[ $key ] ) && is_bool( $attributes[ $key ] ) ) { $_essential_attributes[ $key ] = $attributes[ $key ]; } elseif ( ! empty( $attributes[ $key ] ) ) { $_essential_attributes[ $key ] = $attributes[ $key ]; } else { $_essential_attributes[ $key ] = $value; } } if ( isset( $_essential_attributes[ 'showBlockContent' ] ) && false === $_essential_attributes[ 'showBlockContent' ] ) { return; } $args = isset( $attributes[ 'queryData' ] ) ? $attributes[ 'queryData' ] : array( ); $query_type = isset( $args[ 'query_type' ] ) ? $args[ 'query_type' ] : 'custom_query'; $_normalize = array( 'orderby' => 'date', 'order' => 'desc', 'category' => array( ), 'tag' => array( ), 'include' => array( ), 'exclude' => array( ), 'excludeCategory' => array( ), 'excludeTag' => array( ) ); // var_dump($args); foreach ( $_normalize as $key => $value ) { $args[ $key ] = ! empty( $args[ $key ] ) ? implode( ',', $this->get_array_column( $args[ $key ], 'value' ) ) : $value; } // Set Orderby to Default if Pro Orderby is selected and Pro isn't active $proOrderby = array( 'rand' ); if ( isset( $args[ 'orderby' ] ) && ! ESSENTIAL_BLOCKS_IS_PRO_ACTIVE && in_array( $args[ 'orderby' ], $proOrderby ) ) { $args[ 'orderby' ] = 'date'; } $args = wp_parse_args( $args, array( 'per_page' => 10, 'offset' => 0 ) ); if ( "related_products" === $query_type ) { $product = json_decode( $args[ "product" ], true ); $product_id = isset( $product[ "value" ] ) && "current" !== $product[ "value" ] ? $product[ "value" ] : get_the_ID(); $per_page = $args[ 'per_page' ]; $exclude_products = isset( $args[ 'exclude_products' ] ) ? Helper::get_value_from_json_array( json_decode( $args[ 'exclude_products' ], true ) ) : array( ); $related_products = wc_get_related_products( $product_id, $args[ 'per_page' ], $exclude_products ); unset( $args ); $args[ 'post__in' ] = is_array( $related_products ) && count( $related_products ) > 0 ? $related_products : array( ); $args[ 'per_page' ] = $per_page; } $isCustomCartBtn = $_essential_attributes[ 'isCustomCartBtn' ]; $simpleCartText = $_essential_attributes[ 'simpleCartText' ]; $variableCartText = $_essential_attributes[ 'variableCartText' ]; $groupedCartText = $_essential_attributes[ 'groupedCartText' ]; $externalCartText = $_essential_attributes[ 'externalCartText' ]; $defaultCartText = $_essential_attributes[ 'defaultCartText' ]; $this->sampleData = array( $simpleCartText, $variableCartText, $groupedCartText, $externalCartText, $defaultCartText ); if ( $isCustomCartBtn ) { // change the cart button text according to editor change add_filter( 'woocommerce_product_add_to_cart_text', array( $this, 'eb_change_cart_button_text' ), 10, 1 ); } $query = new WP_Query( Product::query_builder( $args ) ); $blockId = isset( $attributes[ 'blockId' ] ) ? $attributes[ 'blockId' ] : ''; $classHook = isset( $attributes[ 'classHook' ] ) ? $attributes[ 'classHook' ] : ''; //Handle loadMoreOptions $loadMoreOptions = array( ); if ( isset( $attributes[ 'loadMoreOptions' ] ) ) { $loadMoreOptions = $attributes[ 'loadMoreOptions' ]; $loadMoreOptions[ 'totalPosts' ] = $query->found_posts ?? 0; } $_essential_attributes[ 'loadMoreOptions' ] = $loadMoreOptions; ob_start(); Helper::views( 'product-grid', array_merge( $_essential_attributes, array( 'blockId' => $blockId, 'classHook' => $classHook, 'query' => isset( $query ) ? $query : '', 'essentialAttr' => $_essential_attributes, 'loadMoreOptions' => $loadMoreOptions, 'queryData' => $args ) ) ); if ( $isCustomCartBtn ) { // remove our own callback from filter remove_filter( 'woocommerce_product_add_to_cart_text', array( $this, 'eb_change_cart_button_text' ), 10 ); } return ob_get_clean(); } public function eb_change_cart_button_text( $text ) { global $product; list( $simpleCartText, $variableCartText, $groupedCartText, $externalCartText, $defaultCartText ) = $this->sampleData; $product_type = $product->get_type(); $product_types = array( 'external' => $externalCartText, 'grouped' => $groupedCartText, 'simple' => $simpleCartText, 'variable' => $variableCartText ); return isset( $product_types[ $product_type ] ) ? esc_html( $product_types[ $product_type ] ) : esc_html( $defaultCartText ); } }
[-] FlexContainer.php
[edit]
[-] ProductDetails.php
[edit]
[-] WooProductGrid.php
[edit]
[-] Timeline.php
[edit]
[-] Notice.php
[edit]
[-] AdvancedImage.php
[edit]
[-] GoogleMap.php
[edit]
[-] WPForms.php
[edit]
[-] AdvancedVideo.php
[edit]
[-] ProgressBar.php
[edit]
[-] ImageComparison.php
[edit]
[-] AdvancedHeading.php
[edit]
[-] PostGrid.php
[edit]
[-] FormTextField.php
[edit]
[-] ToggleContent.php
[edit]
[-] Text.php
[edit]
[-] PricingTable.php
[edit]
[-] DualButton.php
[edit]
[-] Accordion.php
[edit]
[-] Social.php
[edit]
[-] AdvancedNavigation.php
[edit]
[-] PopUp.php
[edit]
[-] PostBlock.php
[edit]
[-] Form.php
[edit]
[-] Icon.php
[edit]
[-] Tab.php
[edit]
[-] CountDown.php
[edit]
[-] Taxonomy.php
[edit]
[-] TypingText.php
[edit]
[-] AccordionItem.php
[edit]
[-] ProductRating.php
[edit]
[-] ProductImages.php
[edit]
[-] Row.php
[edit]
[-] ShapeDivider.php
[edit]
[-] LottieAnimation.php
[edit]
[-] AddToCart.php
[edit]
[-] FlipBox.php
[edit]
[-] price.php
[edit]
[-] SocialShare.php
[edit]
[-] Slider.php
[edit]
[-] NftGallery.php
[edit]
[-] PostMeta.php
[edit]
[-] InstagramFeed.php
[edit]
[+]
..
[-] InfoBox.php
[edit]
[-] Breadcrumbs.php
[edit]
[-] PostCarousel.php
[edit]
[-] AdvancedTabs.php
[edit]
[-] ParallaxSlider.php
[edit]
[-] Wrapper.php
[edit]
[-] Button.php
[edit]
[-] Openverse.php
[edit]
[-] ImageHotspots.php
[edit]
[-] ImageGallery.php
[edit]
[-] Testimonial.php
[edit]
[-] CallToAction.php
[edit]
[-] FeatureList.php
[edit]
[-] InteractivePromo.php
[edit]
[-] NumberCounter.php
[edit]
[-] TeamMember.php
[edit]
[-] FluentForms.php
[edit]
[-] Column.php
[edit]
[-] TableOfContents.php
[edit]
[-] ProductPrice.php
[edit]