我已经按照Woocommerce shipping method API创建了一个定制的shipping方法。在我的shipping方法类的init
方法中,我试图使用WC()获取所有的shipping类-
此调用失败是PHP致命错误:
致命错误:未捕获错误:调用成员函数get_shipping_classes()在空...
这表明WC()-
我正在做类似于WooCommerce核心的平价运输方法。
这里是我的运输方法类:
class WCS_City_Shipping_Method extends WC_Shipping_Flat_Rate {
/**
* Cities applicable on
*
* @var array
*/
public $cities = array();
/**
* Constructor.
*
* @since 1.0.0
*/
public function __construct( $instance_id = 0 ) {
$this->id = 'city_shipping';
$this->instance_id = absint( $instance_id );
$this->method_title = __( 'Flat Rate City Shipping', 'woocommerce-city-shipping' );
$this->method_description = __( 'Applies only when shipping city matches one of provided.', 'woocommerce-city-shipping' );
$this->supports = array( 'shipping-zones', 'instance-settings', );
$this->init();
// Save settings
add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
}
/**
* Init.
*
* Initialize user set variables.
*
* @since 1.0.0
*/
public function init() {
$this->instance_form_fields = include( 'settings-city-shipping.php' );
$this->title = $this->get_option( 'title' );
$this->tax_status = $this->get_option( 'tax_status' );
$this->cities = $this->get_option( 'cities' );
$this->cost = $this->get_option( 'cost' );
$this->type = $this->get_option( 'type', 'class' );
}
/**
* ... Rest of code
*
*/
}
这里是城市航运的设置。php
包含在init
方法中。
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$shipping_classes = WC()->shipping->get_shipping_classes(); // Fatal error here
运送方式使用过滤器添加为:
// Add shipping method
add_filter( 'woocommerce_shipping_methods', array( $this, 'add_shipping_method_class' ) );
public function add_shipping_method_class( $methods ) {
if ( class_exists( 'WCS_City_Shipping_Method' ) ) {
$methods['city_shipping'] = 'WCS_City_Shipping_Method';
}
return $methods;
}
请帮助找出是什么导致了致命的错误,以及如何获得所有运输类。
这是一个愚蠢的错误。我已经在这个自定义运输方法的插件类的初始化代码中初始化了WCS_City_Shipping_Method
类。代码在WooCommerce
准备好之前运行,因此导致了致命的错误。
我错过了这一重要行从WooCommerce航运API留档:
为了确保需要扩展的类存在,应该将类包装在一个函数中,该函数在加载所有插件后调用。
不管怎样,我通过不初始化类并将其包装成运行在plugins_loaded
操作钩子上的方法来解决问题。以下是变化:
public function plugins_loaded_action() {
// Load shipping method class
add_action( 'woocommerce_shipping_init', array( $this, 'wcs_shipping_method' ) );
}
// Placed in plugin class init method
add_action( 'plugins_loaded', array( $this, 'plugins_loaded_action' ) );
public function wcs_shipping_method() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wcs-method.php';
}