WC_Admin_Webhooks_Table_List::column_cb()publicWC 1.0

Column cb.

Метод класса: WC_Admin_Webhooks_Table_List{}

Хуков нет.

Возвращает

Строку.

Использование

$WC_Admin_Webhooks_Table_List = new WC_Admin_Webhooks_Table_List();
$WC_Admin_Webhooks_Table_List->column_cb( $webhook );
$webhook(WC_Webhook) (обязательный)
Webhook instance.

Код WC_Admin_Webhooks_Table_List::column_cb() WC 8.7.0

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