WithdrawalsList::column_cb( $item )
Source
File: classes/WithdrawalsList.php
function column_cb( $item ) { return sprintf( '<input type="checkbox" name="%1$s[]" value="%2$s" />', /*$1%s*/ $this->_args['singular'], //Let's simply repurpose the table's singular label ("student") /*$2%s*/ $item->withdraw_id //The value of the checkbox should be the record's id ); }