WC_Admin_Webhooks_Table_List::column_delivery_url()publicWC 1.0

Return delivery URL column.

Method of the class: WC_Admin_Webhooks_Table_List{}

No Hooks.

Return

String.

Usage

$WC_Admin_Webhooks_Table_List = new WC_Admin_Webhooks_Table_List();
$WC_Admin_Webhooks_Table_List->column_delivery_url( $webhook );
$webhook(WC_Webhook) (required)
Webhook instance.

WC_Admin_Webhooks_Table_List::column_delivery_url() code WC 8.7.0

public function column_delivery_url( $webhook ) {
	return $webhook->get_delivery_url();
}