You appear to be a bot. Output may be restricted
Description
Render the checkbox column
Usage
$string = EDD_Payment_History_Table::column_cb( $payment );
Parameters
- $payment
- ( array ) required – Contains all the data for the checkbox column
Returns
string Displays a checkbox
Source
File name: easy-digital-downloads/includes/admin/payments/class-payments-table.php
Lines:
1 to 7 of 7
public function column_cb( $payment ) { return sprintf( '<input type="checkbox" name="%1$s[]" value="%2$s" />', 'payment', $payment->ID ); }