WC_Admin_Webhooks_Table_List::column_topic()publicWC 1.0

Return topic 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_topic( $webhook );
$webhook(WC_Webhook) (required)
Webhook instance.

WC_Admin_Webhooks_Table_List::column_topic() code WC 8.6.1

public function column_topic( $webhook ) {
	return $webhook->get_topic();
}