/**
  * list_shipping_zone_methods function.
  */
 public static function list_shipping_zone_methods()
 {
     if (!class_exists('WC_Shipping_Zone_Methods_Table')) {
         require_once 'list-tables/class-wc-shipping-zone-methods-table.php';
     }
     echo '<form method="post">';
     $WC_Shipping_Zone_Methods_Table = new WC_Shipping_Zone_Methods_Table();
     $WC_Shipping_Zone_Methods_Table->prepare_items();
     $WC_Shipping_Zone_Methods_Table->display();
     echo '</form>';
 }
 /**
  * list_shipping_zone_methods function.
  * 
  * @access public
  * @return void
  */
 function list_shipping_zone_methods()
 {
     global $woocommerce;
     if (!class_exists('WC_Shipping_Zone_Methods_Table')) {
         require_once 'class-wc-shipping-zone-methods-table.php';
     }
     echo '<form method="post">';
     $WC_Shipping_Zone_Methods_Table = new WC_Shipping_Zone_Methods_Table();
     $WC_Shipping_Zone_Methods_Table->prepare_items();
     $WC_Shipping_Zone_Methods_Table->display();
     echo '</form>';
 }