Advertisement
Guest User

product_snippet_button.php

a guest
May 9th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.64 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Product Purchase Button
  4.  *
  5.  * Display the "Add to cart" button for the current product
  6.  */
  7. if ( ! defined( 'ABSPATH' ) ) {  exit;  }    // Exit if accessed directly
  8.  
  9.  
  10. if( !class_exists( 'woocommerce' ) )
  11. {
  12.     add_shortcode('av_product_button', 'avia_please_install_woo');
  13.     return;
  14. }
  15.  
  16. if ( !class_exists( 'avia_sc_produc_button' ) )
  17. {
  18.     class avia_sc_produc_button extends aviaShortcodeTemplate
  19.     {
  20.         /**
  21.          * Create the config array for the shortcode button
  22.          */
  23.         function shortcode_insert_button()
  24.         {
  25.             $this->config['self_closing']   =   'yes';
  26.            
  27.             $this->config['name']       = __('Product Purchase Button', 'avia_framework' );
  28.             $this->config['tab']        = __('Plugin Additions', 'avia_framework' );
  29.             $this->config['icon']       = AviaBuilder::$path['imagesURL']."sc-button.png";
  30.             $this->config['order']      = 20;
  31.             $this->config['target']     = 'avia-target-insert';
  32.             $this->config['shortcode']  = 'av_product_button';
  33.             $this->config['tooltip']    = __('Display the "Add to cart" button for the current product', 'avia_framework' );
  34.             $this->config['drag-level'] = 3;
  35.             $this->config['tinyMCE']    = array('disable' => "true");
  36.             $this->config['posttype']   = array('product',__('This element can only be used on single product pages','avia_framework'));
  37.         }
  38.  
  39.  
  40.         /**
  41.          * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
  42.          * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
  43.          * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
  44.          *
  45.          *
  46.          * @param array $params this array holds the default values for $content and $args.
  47.          * @return $params the return array usually holds an innerHtml key that holds item specific markup.
  48.          */
  49.         function editor_element($params)
  50.         {
  51.             $params['innerHtml'] = "<img src='".$this->config['icon']."' title='".$this->config['name']."' />";
  52.             $params['innerHtml'].= "<div class='avia-element-label'>".$this->config['name']."</div>";
  53.            
  54.             $params['innerHtml'].= "<div class='avia-flex-element'>";
  55.             $params['innerHtml'].=      __( 'Display the &quot;Add to cart&quot; button including prices and variations but no product description.', 'avia_framework' );
  56.             $params['innerHtml'].= "</div>";
  57.            
  58.             return $params;
  59.         }
  60.  
  61.  
  62.  
  63.         /**
  64.          * Frontend Shortcode Handler
  65.          *
  66.          * @param array $atts array of attributes
  67.          * @param string $content text within enclosing form of shortcode element
  68.          * @param string $shortcodename the shortcode found, when == callback name
  69.          * @return string $output returns the modified html string
  70.          */
  71.         function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
  72.         {
  73.             $output = "";
  74.             $meta['el_class'];
  75.            
  76.             global $woocommerce, $product;
  77.             if(!is_object($woocommerce) || !is_object($woocommerce->query) || empty($product) || is_admin() ) return;
  78.  
  79.             /**
  80.              * @since WC 3.0
  81.              */
  82.             $wc_structured_data = isset( WC()->structured_data ) ? WC()->structured_data : null;
  83.            
  84.             /**
  85.              *  Remove default WC actions
  86.              */
  87.             remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
  88.             remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 );
  89.             remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
  90.             remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
  91.             remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
  92.             remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing', 50 );
  93.  
  94.             // produces an endless loop because $wc_structured_data uses 'content' filter and do_shortcode !!
  95.             if( ! is_null( $wc_structured_data ) )
  96.             {
  97.                 remove_action( 'woocommerce_single_product_summary', array( $wc_structured_data, 'generate_product_data' ), 60 );
  98.             }
  99.            
  100.             // $product = wc_get_product();
  101.             $output .= "<div class='av-woo-purchase-button ".$meta['el_class']."'>";
  102.            
  103.             /**
  104.              * Fix for plugin German Market that outputs the price (not a clean solution but easier to maintain). Can alos be placed in shortcode.css.
  105.              */
  106.             $output .= '<style>';
  107.             $output .=      '#top .av-woo-purchase-button > div > p.price {display: none;}';
  108.             $output .= '</style>';
  109.            
  110.             $output .=      '<p class="price">' . $product->get_price_html() . '</p>';
  111.            
  112.             ob_start();
  113.             wc_clear_notices();
  114.            
  115.             /**
  116.              * hooked by: add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
  117.              */
  118.             if( defined('WOO_EVENT_PATH') ) {
  119.                 woocommerce_template_single_add_to_cart();
  120.             } else {
  121.                 do_action( 'woocommerce_single_product_summary' );
  122.             }
  123.            
  124.             $output .= ob_get_clean();
  125.            
  126.             $output .= "</div>";
  127.            
  128.             add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
  129.             add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 );
  130.             add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
  131.             add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
  132.             add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
  133.             add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing', 50 );
  134.             if( ! is_null( $wc_structured_data ) )
  135.             {
  136.                 add_action( 'woocommerce_single_product_summary', array( $wc_structured_data, 'generate_product_data' ), 60 );
  137.             }
  138.            
  139.             return $output;
  140.         }
  141.     }
  142. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement