PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
wc-frontend-manager
/
views
/
products
<?php global $WCFM, $wp_query; $wcfm_is_allow_manage_products = apply_filters( 'wcfm_is_allow_manage_products', true ); if( !current_user_can( 'edit_products' ) || !$wcfm_is_allow_manage_products ) { wcfm_restriction_message_show( "Products" ); return; } $wcfmu_products_menus = apply_filters( 'wcfmu_products_menus', array( 'any' => __( 'All', 'wc-frontend-manager'), 'publish' => __( 'Published', 'wc-frontend-manager'), 'draft' => __( 'Draft', 'wc-frontend-manager'), 'pending' => __( 'Pending', 'wc-frontend-manager') ) ); $product_status = ! empty( $_GET['product_status'] ) ? sanitize_text_field( $_GET['product_status'] ) : 'any'; $current_user_id = apply_filters( 'wcfm_current_vendor_id', get_current_user_id() ); if( !wcfm_is_vendor() ) $current_user_id = 0; $count_products = array(); $count_products['publish'] = wcfm_get_user_posts_count( $current_user_id, 'product', 'publish' ); $count_products['pending'] = wcfm_get_user_posts_count( $current_user_id, 'product', 'pending' ); $count_products['draft'] = wcfm_get_user_posts_count( $current_user_id, 'product', 'draft' ); $count_products['private'] = wcfm_get_user_posts_count( $current_user_id, 'product', 'private' ); $count_products = apply_filters( 'wcfmu_products_menus_count', $count_products, $current_user_id ); $count_products['any'] = 0; foreach( $count_products as $count_product ) { $count_products['any'] += $count_product; } ?> <div class="collapse wcfm-collapse" id="wcfm_products_listing"> <div class="wcfm-page-headig"> <span class="wcfmfa fa-cube"></span> <span class="wcfm-page-heading-text"><?php _e( 'Products', 'wc-frontend-manager' ); ?></span> <?php do_action( 'wcfm_page_heading' ); ?> </div> <div class="wcfm-collapse-content"> <div id="wcfm_page_load"></div> <?php do_action( 'before_wcfm_products' ); ?> <div class="wcfm-container wcfm-top-element-container"> <ul class="wcfm_products_menus"> <?php $is_first = true; foreach( $wcfmu_products_menus as $wcfmu_products_menu_key => $wcfmu_products_menu) { ?> <li class="wcfm_products_menu_item"> <?php if($is_first) $is_first = false; else echo " | "; ?> <a class="<?php echo ( $wcfmu_products_menu_key == $product_status ) ? 'active' : ''; ?>" href="<?php echo get_wcfm_products_url( $wcfmu_products_menu_key ); ?>"><?php echo $wcfmu_products_menu . ' ('. $count_products[$wcfmu_products_menu_key] .')'; ?></a> </li> <?php } ?> </ul> <?php if( $allow_wp_admin_view = apply_filters( 'wcfm_allow_wp_admin_view', true ) ) { if( !WCFM_Dependencies::wcfmu_plugin_active_check() ) { if( $is_wcfmu_inactive_notice_show = apply_filters( 'is_wcfmu_inactive_notice_show', true ) ) { ?> <span class="wcfm_screen_manager_dummy text_tip" data-tip="<?php wcfmu_feature_help_text_show( 'Screen Manager', false, true ); ?>"><span class="wcfmfa fa-tv"></span></span> <?php } } else { ?> <a class="wcfm_screen_manager text_tip" href="#" data-screen="product" data-tip="<?php _e( 'Screen Manager', 'wc-frontend-manager' ); ?>"><span class="wcfmfa fa-tv"></span></a> <?php } ?> <a target="_blank" class="wcfm_wp_admin_view text_tip" href="<?php echo admin_url('edit.php?post_type=product'); ?>" data-tip="<?php _e( 'WP Admin View', 'wc-frontend-manager' ); ?>"><span class="fab fa-wordpress fa-wordpress-simple"></span></a> <?php } if( $is_allow_products_export = apply_filters( 'wcfm_is_allow_products_export', true ) ) { ?> <a class="add_new_wcfm_ele_dashboard text_tip" href="<?php echo get_wcfm_export_product_url(); ?>" data-screen="product" data-tip="<?php _e( 'Products Export', 'wc-frontend-manager' ); ?>"><span class="wcfmfa fa-download"><span class="text hidden-text"><?php _e( 'Products Export', 'wc-frontend-manager'); ?></span></span></a> <?php } if( $is_allow_products_import = apply_filters( 'wcfm_is_allow_products_import', true ) ) { if( !WCFM_Dependencies::wcfmu_plugin_active_check() ) { if( $is_wcfmu_inactive_notice_show = apply_filters( 'is_wcfmu_inactive_notice_show', true ) ) { ?> <a class="add_new_wcfm_ele_dashboard text_tip" href="#" onclick="return false;" data-tip="<?php wcfmu_feature_help_text_show( 'Products Import', false, true ); ?>"><span class="wcfmfa fa-upload"><span class="text hidden-text"><?php _e( 'Products Import', 'wc-frontend-manager'); ?></span></span></a> <?php } } else { ?> <a class="wcfm_import_export text_tip" href="<?php echo get_wcfm_import_product_url(); ?>" data-tip="<?php _e( 'Products Import', 'wc-frontend-manager' ); ?>"><span class="wcfmfa fa-upload"></span><span class="text hidden-text"><?php _e( 'Products Import', 'wc-frontend-manager'); ?></span></a> <?php } } if( apply_filters( 'wcfm_is_allow_inventory', true ) && apply_filters( 'wcfm_is_allow_stock_manager', true ) ) { if( !WCFM_Dependencies::wcfmu_plugin_active_check() ) { if( $is_wcfmu_inactive_notice_show = apply_filters( 'is_wcfmu_inactive_notice_show', true ) ) { ?> <a class="add_new_wcfm_ele_dashboard text_tip" href="#" onclick="return false;" data-tip="<?php wcfmu_feature_help_text_show( 'Stock Manager', false, true ); ?>"><span class="wcfmfa fa-database"></span><span class="text hidden-text"><?php _e( 'Stock Manager', 'wc-frontend-manager'); ?></span></a> <?php } } else { ?> <a class="wcfm_import_export text_tip" href="<?php echo get_wcfm_stock_manage_url(); ?>" data-tip="<?php _e( 'Stock Manager', 'wc-frontend-manager' ); ?>"><span class="wcfmfa fa-database"></span><span class="text hidden-text"><?php _e( 'Stock Manager', 'wc-frontend-manager'); ?></span></a> <?php } } if( $has_new = apply_filters( 'wcfm_add_new_product_sub_menu', true ) ) { echo '<a id="add_new_product_dashboard" class="add_new_wcfm_ele_dashboard text_tip" href="'.get_wcfm_edit_product_url().'" data-tip="' . __('Add New Product', 'wc-frontend-manager') . '"><span class="wcfmfa fa-cube"></span><span class="text">' . __( 'Add New', 'wc-frontend-manager') . '</span></a>'; } ?> <?php echo apply_filters( 'wcfm_products_limit_label', '' ); ?> <?php do_action( 'wcfm_products_quick_actions' ); ?> <div class="wcfm-clearfix"></div> </div> <div class="wcfm-clearfix"></div><br /> <div class="wcfm_products_filter_wrap wcfm_filters_wrap"> <?php // Buk Edit Button action do_action( 'wcfm_product_filters_before' ); // Category Filtering if( apply_filters( 'wcfm_is_products_taxonomy_filter', true, 'product_cat' ) && apply_filters( 'wcfm_is_products_category_filter', true ) ) { $product_categories = get_terms( 'product_cat', 'orderby=name&hide_empty=0&parent=0' ); $categories = array(); $WCFM->wcfm_fields->wcfm_generate_form_field( array( "dropdown_product_cat" => array( 'type' => 'select', 'options' => $categories, 'custom_attributes' => array( 'taxonomy' => 'product_cat', 'parent' => '' ), 'attributes' => array( 'style' => 'width: 150px;' ) ) ) ); } // Custom Taxonomy Filtering if( apply_filters( 'wcfm_is_products_custom_taxonomy_filter', true ) ) { $product_taxonomies = get_object_taxonomies( 'product', 'objects' ); if( !empty( $product_taxonomies ) ) { foreach( $product_taxonomies as $product_taxonomy ) { if( !in_array( $product_taxonomy->name, array( 'product_cat', 'product_tag', 'wcpv_product_vendors' ) ) ) { if( $product_taxonomy->public && $product_taxonomy->show_ui && $product_taxonomy->meta_box_cb && $product_taxonomy->hierarchical ) { if( apply_filters( 'wcfm_is_products_taxonomy_filter', true, $product_taxonomy->name ) && apply_filters( 'wcfm_is_products_custom_taxonomy_filter_'.$product_taxonomy->name, true ) ) { $product_categories = get_terms( $product_taxonomy->name, 'orderby=name&hide_empty=0&parent=0' ); echo '<select id="dropdown_product_' . $product_taxonomy->name . '" data-taxonomy="'.$product_taxonomy->name.'" name="dropdown_product_' . $product_taxonomy->name . '" class="dropdown_product_'. $product_taxonomy->name . ' dropdown_product_custom_taxonomy" style="width: 150px;">'; echo '<option value="" selected="selected">' . __( 'Show all ', 'wc-frontend-manager' ) . $product_taxonomy->label . '</option>'; if ( $product_categories ) { $WCFM->library->generateTaxonomyHTML( $product_taxonomy->name, $product_categories, array() ); } echo '</select>'; } } } } } } // Type filtering if( $wcfm_is_products_type_filter = apply_filters( 'wcfm_is_products_type_filter', true ) ) { $product_types = apply_filters( 'wcfm_product_types', array('simple' => __('Simple Product', 'wc-frontend-manager'), 'variable' => __('Variable Product', 'wc-frontend-manager'), 'grouped' => __('Grouped Product', 'wc-frontend-manager'), 'external' => __('External/Affiliate Product', 'wc-frontend-manager') ) ); $output = '<select name="product_type" id="dropdown_product_type" style="width: 160px;">'; $output .= '<option value="">' . __( 'Show all product types', 'wc-frontend-manager' ) . '</option>'; foreach ( $product_types as $product_type_name => $product_type_label ) { $output .= '<option value="' . $product_type_name . '">' . $product_type_label . '</option>'; if ( 'simple' == $product_type_name ) { $product_type_options = apply_filters( 'wcfm_non_allowd_product_type_options', array( 'virtual' => 'virtual', 'downloadable' => 'downloadable' ) ); if( !empty( $product_type_options['downloadable'] ) ) { $output .= '<option value="downloadable" > → ' . __( 'Downloadable', 'wc-frontend-manager' ) . '</option>'; } if( !empty( $product_type_options['virtual'] ) ) { $output .= '<option value="virtual" > → ' . __( 'Virtual', 'wc-frontend-manager' ) . '</option>'; } } } $output .= '</select>'; echo apply_filters( 'woocommerce_product_filters', $output ); } if( $wcfm_is_products_vendor_filter = apply_filters( 'wcfm_is_products_vendor_filter', true ) ) { $is_marketplace = wcfm_is_marketplace(); if( $is_marketplace ) { if( !wcfm_is_vendor() ) { $vendor_arr = array(); //$WCFM->wcfm_vendor_support->wcfm_get_vendor_list(); $WCFM->wcfm_fields->wcfm_generate_form_field( array( "dropdown_vendor" => array( 'type' => 'select', 'options' => $vendor_arr, 'attributes' => array( 'style' => 'width: 150px;' ) ) ) ); } } } ?> </div> <div class="wcfm-container"> <div id="wcfm_products_listing_expander" class="wcfm-content"> <table id="wcfm-products" class="display" cellspacing="0" width="100%"> <thead> <tr> <th> <?php if( WCFM_Dependencies::wcfmu_plugin_active_check() ) { ?> <?php if( apply_filters( 'wcfm_is_allow_bulk_edit', true ) ) { ?><input type="checkbox" class="wcfm-checkbox bulk_action_checkbox_all text_tip" name="bulk_action_checkbox_all_top" value="yes" data-tip="<?php _e( 'Select all for bulk edit', 'wc-frontend-manager' ); ?>" /><?php } ?> <?php } elseif( apply_filters( 'is_wcfmu_inactive_notice_show', true ) ) { ?> <input type="checkbox" class="wcfm-checkbox bulk_action_checkbox_all text_tip" onclick="return false;" name="bulk_action_checkbox_all_top" value="yes" data-tip="<?php wcfmu_feature_help_text_show( 'Bulk Edit', false, true ); ?>" /> <?php } ?> </th> <th><span class="wcfmfa fa-image text_tip" data-tip="<?php _e( 'Image', 'wc-frontend-manager' ); ?>"></span></th> <th style="max-width: 250px;"><?php _e( 'Name', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'SKU', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Status', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Stock', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Price', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Taxonomies', 'wc-frontend-manager' ); ?></th> <th><span class="wcfmfa fa-cubes text_tip" data-tip="<?php _e( 'Type', 'wc-frontend-manager' ); ?>"></span></th> <th><span class="wcfmfa fa-eye text_tip" data-tip="<?php _e( 'Views', 'wc-frontend-manager' ); ?>"></span></th> <th><?php _e( 'Date', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Store', 'wc-frontend-manager' ); ?></th> <th><?php _e( apply_filters( 'wcfm_products_additional_info_column_label', __( 'Additional Info', 'wc-frontend-manager' ) ) ); ?></th> <th><?php _e( 'Actions', 'wc-frontend-manager' ); ?></th> </tr> </thead> <tfoot> <tr> <th> <?php if( WCFM_Dependencies::wcfmu_plugin_active_check() ) { ?> <?php if( apply_filters( 'wcfm_is_allow_bulk_edit', true ) ) { ?><input type="checkbox" class="wcfm-checkbox bulk_action_checkbox_all text_tip" name="bulk_action_checkbox_all_top" value="yes" data-tip="<?php _e( 'Select all for bulk edit', 'wc-frontend-manager' ); ?>" /><?php } ?> <?php } elseif( apply_filters( 'is_wcfmu_inactive_notice_show', true ) ) { ?> <input type="checkbox" class="wcfm-checkbox bulk_action_checkbox_all text_tip" onclick="return false;" name="bulk_action_checkbox_all_top" value="yes" data-tip="<?php wcfmu_feature_help_text_show( 'Bulk Edit', false, true ); ?>" /> <?php } ?> </th> <th><span class="wcfmfa fa-image text_tip" data-tip="<?php _e( 'Image', 'wc-frontend-manager' ); ?>"></span></th> <th style="max-width: 250px;"><?php _e( 'Name', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'SKU', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Status', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Stock', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Price', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Taxonomies', 'wc-frontend-manager' ); ?></th> <th><span class="wcfmfa fa-cubes text_tip" data-tip="<?php _e( 'Type', 'wc-frontend-manager' ); ?>"></span></th> <th><span class="wcfmfa fa-eye text_tip" data-tip="<?php _e( 'Views', 'wc-frontend-manager' ); ?>"></span></th> <th><?php _e( 'Date', 'wc-frontend-manager' ); ?></th> <th><?php _e( 'Store', 'wc-frontend-manager' ); ?></th> <th><?php _e( apply_filters( 'wcfm_products_additional_info_column_label', __( 'Additional Info', 'wc-frontend-manager' ) ) ); ?></th> <th><?php _e( 'Actions', 'wc-frontend-manager' ); ?></th> </tr> </tfoot> </table> <div class="wcfm-clearfix"></div> </div> </div> <?php do_action( 'after_wcfm_products' ); ?> </div> </div>
[+]
..
[-] wcfm-view-products.php
[edit]
[-] wcfm-view-products-export.php
[edit]