WC_Download_Handler::init() public WC 1.0
Hook in methods.
{} Это метод класса: WC_Download_Handler{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$result = WC_Download_Handler::init();
Код WC_Download_Handler::init() WC Download Handler::init WC 5.0.0
public static function init() {
if ( isset( $_GET['download_file'], $_GET['order'] ) && ( isset( $_GET['email'] ) || isset( $_GET['uid'] ) ) ) { // WPCS: input var ok, CSRF ok.
add_action( 'init', array( __CLASS__, 'download_product' ) );
}
add_action( 'woocommerce_download_file_redirect', array( __CLASS__, 'download_file_redirect' ), 10, 2 );
add_action( 'woocommerce_download_file_xsendfile', array( __CLASS__, 'download_file_xsendfile' ), 10, 2 );
add_action( 'woocommerce_download_file_force', array( __CLASS__, 'download_file_force' ), 10, 2 );
}