PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
dc-woocommerce-multi-vendor
/
classes
<?php /** * WCMp Frontend Class * * @version 2.2.0 * @package WCMp * @author WC Marketplace */ class WCMp_Seller_Review_Rating { public function __construct() { global $WCMp; $rating_settings = get_option('wcmp_general_sellerreview_settings_name'); if (get_wcmp_vendor_settings('is_sellerreview', 'general') == 'Enable') { //add_action('woocommerce_after_main_content', array($this, 'wcmp_seller_review_rating_form'), 5); add_action('woocommerce_after_shop_loop', array($this, 'wcmp_seller_review_rating_form'), 30); add_action('add_meta_boxes', array($this, 'add_wcmp_rating_meta_box')); add_action('comment_save_pre', array($this, 'save_wcmp_rating_meta_box')); add_filter('widget_comments_args', array($this, 'remove_vendor_rating_from_recent_comment'), 10); add_action('woocommerce_order_item_meta_end', array($this, 'wcmp_review_rating_link'), 10, 3); } } function wcmp_vendor_list_rating_rating_value($vendor_term_id, $vendor_id) { global $WCMp; $rating_info = wcmp_get_vendor_review_info($vendor_term_id); $WCMp->template->get_template('review/rating_vendor_lists.php', array('rating_val_array' => $rating_info)); } function wcmp_review_rating_link($item_id, $item, $order) { global $WCMp; $rating_settings = get_option('wcmp_general_sellerreview_settings_name'); $arr_values = array(); $arr_status[] = 'completed'; $arr_status[] = 'processing'; $arr_status_final = apply_filters('wcmp_rating_review_order_status_filter', $arr_status); if (get_wcmp_vendor_settings('is_sellerreview_varified', 'general') == 'Enable') { if (is_array($arr_status_final) && in_array($order->get_status(), $arr_status_final)) { if ($item['product_id']) { $product = get_post($item['product_id']); if ($product) { if (is_user_wcmp_vendor($product->post_author)) { $vendor = new WCMp_Vendor($product->post_author); $term_id = get_user_meta($vendor->id, '_vendor_term_id', true); $term = get_term_by('id', $term_id, $WCMp->taxonomy->taxonomy_name); $term_link = get_term_link($term, $WCMp->taxonomy->taxonomy_name); $review_link = trailingslashit($term_link) . '#reviews'; $arr_values['vendor_review_link'] = $review_link; $arr_values['shop_name'] = $vendor->page_title; $arr_values['product_name'] = $product->post_title; $WCMp->template->get_template('review/review-link.php', array('review_data' => $arr_values)); } } } } } else { if ($item['product_id']) { $product = get_post($item['product_id']); if ($product) { if (is_user_wcmp_vendor($product->post_author)) { $vendor = new WCMp_Vendor($product->post_author); $term_id = get_user_meta($vendor->id, '_vendor_term_id', true); $term = get_term_by('id', $term_id, $WCMp->taxonomy->taxonomy_name); $term_link = get_term_link($term, $WCMp->taxonomy->taxonomy_name); $review_link = trailingslashit($term_link) . '#reviews'; $arr_values['vendor_review_link'] = $review_link; $arr_values['shop_name'] = $vendor->page_title; $arr_values['product_name'] = $product->post_title; $WCMp->template->get_template('review/review-link.php', array('review_data' => $arr_values)); } } } } } function remove_vendor_rating_from_recent_comment($args) { $args['post__not_in'] = wcmp_vendor_dashboard_page_id(); return $args; } function wcmp_seller_review_rating_form() { global $WCMp; if (is_tax($WCMp->taxonomy->taxonomy_name)) { $queried_object = get_queried_object(); $WCMp->template->get_template('wcmp-vendor-review-form.php', array('queried_object' => $queried_object)); } } function add_wcmp_rating_meta_box() { global $comment, $WCMp; if (!empty($comment)) { if ($comment->comment_type == 'wcmp_vendor_rating') { $screens = array('comment'); foreach ($screens as $screen) { add_meta_box( 'wcmp_vendor_rating', __('Vendor Rating', 'dc-woocommerce-multi-vendor'), array($this, 'wcmp_comment_vendor_rating_callback'), $screen, 'normal', 'high' ); } } } } function wcmp_comment_vendor_rating_callback($comment) { global $WCMp; $vendor_rating_id = get_comment_meta($comment->comment_ID, 'vendor_rating_id', true); $vendor = new WCMp_Vendor($vendor_rating_id); if($vendor){ $name = $vendor->page_title; }else{ $user = new WP_User($vendor_rating_id); $name = $user->display_name; } ?> <table class="form-table"> <tbody> <?php $WCMp->wcmp_wp_fields->dc_generate_form_field($this->get_wcmp_comment_rating_field($comment), array('in_table' => 1)); ?> <tr class="vendor_rating_author_wrapper"> <th class="vendor_rating_author_label_holder"> <p class="vendor_rating_author"> <strong><?php echo __('Vendor Name.', 'dc-woocommerce-multi-vendor'); ?></strong> </p> <label for="vendor_rating_author" class="screen-reader-text"><?php echo __('Vendor Name.', 'dc-woocommerce-multi-vendor'); ?></label> </th> <td> <?php echo $name; ?> </td> </tr> </tbody> </table> <?php } function save_wcmp_rating_meta_box($comment_data) { if (isset($_POST['vendor_rating']) && !empty($_POST['vendor_rating'])) { if (isset($_POST['comment_ID']) && !empty($_POST['comment_ID'])) { update_comment_meta($_POST['comment_ID'], 'vendor_rating', $_POST['vendor_rating']); } } return $comment_data; } function get_wcmp_comment_rating_field($comment) { global $WCMp; $vendor_rating = get_comment_meta($comment->comment_ID, 'vendor_rating', true); $fields = apply_filters('wcmp_vendor_rating_field_filter', array( "vendor_rating" => array( 'label' => __('Vendor Rating.', 'dc-woocommerce-multi-vendor'), 'type' => 'select', 'desc' => __('Vendor Rating Star.', 'dc-woocommerce-multi-vendor'), 'options' => array('' => __('Please Select', 'dc-woocommerce-multi-vendor'), '1' => __('1 Star', 'dc-woocommerce-multi-vendor'), '2' => __('2 Star', 'dc-woocommerce-multi-vendor'), '3' => __('3 Star', 'dc-woocommerce-multi-vendor'), '4' => __('4 Star', 'dc-woocommerce-multi-vendor'), '5' => __('5 Star', 'dc-woocommerce-multi-vendor')), 'value' => $vendor_rating ? $vendor_rating : '', 'class' => 'user-profile-fields' ) )); return $fields; } }
[+]
..
[-] class-wcmp-calculate-commission.php
[edit]
[+]
shipping-gateways
[+]
gateways
[-] class-wcmp-ajax.php
[edit]
[-] class-wcmp-cron-job.php
[edit]
[-] class-wcmp-vendor-order-page.php
[edit]
[-] class-wcmp-coupon.php
[edit]
[+]
widgets
[-] class-wcmp-vendor-dashboard.php
[edit]
[-] class-wcmp-shipping-gateway.php
[edit]
[-] class-wcmp-payment-gateways.php
[edit]
[-] class-wcmp-email.php
[edit]
[-] class-wcmp-user.php
[edit]
[-] class-wcmp-shortcode.php
[edit]
[-] class-wcmp-widget-init.php
[edit]
[-] class-wcmp-endpoints.php
[edit]
[-] class-wcmp.php
[edit]
[-] class-wcmp-vendor-details.php
[edit]
[-] class-wcmp-seller-review-rating.php
[edit]
[-] class-wcmp-capabilities.php
[edit]
[+]
reports
[-] class-wcmp-post-commission.php
[edit]
[+]
coupons
[-] class-wcmp-post-notices.php
[edit]
[+]
products
[-] class-wcmp-payment-gateway.php
[edit]
[-] class-wcmp-post-transaction.php
[edit]
[-] class-wcmp-report.php
[edit]
[-] class-wcmp-admin.php
[edit]
[-] class-wcmp-product-qna.php
[edit]
[+]
emails
[-] class-wcmp-taxonomy.php
[edit]
[-] class-wcmp-frontend.php
[edit]
[-] class-wcmp-template.php
[edit]
[-] class-wcmp-product.php
[edit]
[-] class-wcmp-post-university.php
[edit]
[-] class-wcmp-vendor-hooks.php
[edit]
[-] class-wcmp-library.php
[edit]
[+]
shortcode