WC_Admin_Webhooks_Table_List::column_cb( WC_Webhook $webhook )

Column cb.


Description Description


Parameters Parameters

$webhook

(Required) Webhook instance.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/admin/class-wc-admin-webhooks-table-list.php

	public function column_cb( $webhook ) {
		return sprintf( '<input type="checkbox" name="%1$s[]" value="%2$s" />', $this->_args['singular'], $webhook->get_id() );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.