PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
wc-frontend-manager
/
controllers
/
coupons
<?php /** * WCFM plugin controllers * * Plugin Coupons Controller * * @author WC Lovers * @package wcfm/controllers * @version 1.0.0 */ class WCFM_Coupons_Controller { public function __construct() { global $WCFM; $this->processing(); } public function processing() { global $WCFM, $wpdb, $_POST; $length = $_POST['length']; $offset = $_POST['start']; $args = array( 'posts_per_page' => $length, 'offset' => $offset, 'category' => '', 'category_name' => '', 'orderby' => 'date', 'order' => 'DESC', 'include' => '', 'exclude' => '', 'meta_key' => '', 'meta_value' => '', 'post_type' => 'shop_coupon', 'post_mime_type' => '', 'post_parent' => '', //'author' => get_current_user_id(), 'post_status' => array('draft', 'pending', 'publish'), 'suppress_filters' => 0 ); if( isset( $_POST['search'] ) && !empty( $_POST['search']['value'] )) $args['s'] = $_POST['search']['value']; $args = apply_filters( 'wcfm_coupons_args', $args ); if( isset($_POST['coupon_vendor']) && !empty($_POST['coupon_vendor']) ) { $is_marketplace = wcfm_is_marketplace(); if( $is_marketplace ) { if( !wcfm_is_vendor() ) { $args['author'] = absint( $_POST['coupon_vendor'] ); } } } $wcfm_coupons_array = get_posts( $args ); // Get Coupon Count $coupon_count = 0; $filtered_coupon_count = 0; $wcfm_coupons_count = wp_count_posts('shop_coupon'); $coupon_count = ( $wcfm_coupons_count->publish + $wcfm_coupons_count->pending + $wcfm_coupons_count->draft ); // Get Filtered Post Count $args['posts_per_page'] = -1; $args['offset'] = 0; $wcfm_filterd_coupons_array = get_posts( $args ); $filtered_coupon_count = count($wcfm_filterd_coupons_array); // Generate Coupons JSON $wcfm_coupons_json = ''; $wcfm_coupons_json = '{ "draw": ' . $_POST['draw'] . ', "recordsTotal": ' . $coupon_count . ', "recordsFiltered": ' . $filtered_coupon_count . ', "data": '; if(!empty($wcfm_coupons_array)) { $index = 0; $wcfm_coupons_json_arr = array(); foreach($wcfm_coupons_array as $wcfm_coupons_single) { $wc_coupon = new WC_Coupon( $wcfm_coupons_single->ID ); // Code if( $wcfm_coupons_single->post_status != 'publish' ) { $wcfm_coupons_json_arr[$index][] = '<a href="' . get_wcfm_coupons_manage_url($wcfm_coupons_single->ID) . '" class="wcfm_dashboard_item_title">' . $wcfm_coupons_single->post_title . '</a>' . ' -- ' . __( ucfirst( $wcfm_coupons_single->post_status ), 'wc-frontend-manager' ); } elseif( current_user_can( 'edit_published_shop_coupons' ) && apply_filters( 'wcfm_is_allow_edit_coupons', true ) ) { $wcfm_coupons_json_arr[$index][] = '<a href="' . get_wcfm_coupons_manage_url($wcfm_coupons_single->ID) . '" class="wcfm_dashboard_item_title">' . $wcfm_coupons_single->post_title . '</a>'; } else { $wcfm_coupons_json_arr[$index][] = '<span class="wcfm_dashboard_item_title">' . $wcfm_coupons_single->post_title . '</span>'; } // Type $wcfm_coupons_json_arr[$index][] = '<span class="coupon-types coupon-types-' . $wc_coupon->get_discount_type() . '">' . esc_html( wc_get_coupon_type( $wc_coupon->get_discount_type() ) ) . '</span>'; // Coupon Amount $wcfm_coupons_json_arr[$index][] = esc_html( wc_format_localized_price( $wc_coupon->get_amount() ) ); // Store if( !wcfm_is_vendor() ) { $coupon_author = $wcfm_coupons_single->post_author; if( wcfm_is_vendor( $coupon_author ) ) { $wcfm_coupons_json_arr[$index][] = $WCFM->wcfm_vendor_support->wcfm_get_vendor_store_by_vendor( $coupon_author ); } else { $wcfm_coupons_json_arr[$index][] = '–'; } } else { $wcfm_coupons_json_arr[$index][] = '–'; } // Usage Limit $wcfm_coupons_json_arr[$index][] = $wc_coupon->get_usage_limit() ? $wc_coupon->get_usage_limit() : '–'; // Expire Date $wcfm_coupons_json_arr[$index][] = $wc_coupon->get_date_expires() ? $wc_coupon->get_date_expires()->date_i18n( 'F j, Y' ) : '–'; // Action $actions = ''; if( $wcfm_coupons_single->post_status == 'publish' ) { $actions .= ( current_user_can( 'edit_published_shop_coupons' ) && apply_filters( 'wcfm_is_allow_edit_coupons', true ) ) ? '<a class="wcfm-action-icon" href="' . get_wcfm_coupons_manage_url($wcfm_coupons_single->ID) . '"><span class="wcfmfa fa-edit text_tip" data-tip="' . esc_attr__( 'Edit', 'wc-frontend-manager' ) . '"></span></a>' : ''; } else { $actions .= '<a class="wcfm-action-icon" href="' . get_wcfm_coupons_manage_url($wcfm_coupons_single->ID) . '"><span class="wcfmfa fa-edit text_tip" data-tip="' . esc_attr__( 'Edit', 'wc-frontend-manager' ) . '"></span></a>'; } $wcfm_coupons_json_arr[$index][] = apply_filters ( 'wcfm_coupons_actions', $actions, $wcfm_coupons_single ); $index++; } } if( !empty($wcfm_coupons_json_arr) ) $wcfm_coupons_json .= json_encode($wcfm_coupons_json_arr); else $wcfm_coupons_json .= '[]'; $wcfm_coupons_json .= ' }'; echo $wcfm_coupons_json; } }
[+]
..
[-] wcfm-controller-coupons-manage.php
[edit]
[-] wcfm-controller-coupons.php
[edit]