Changeset 2601 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/sponsor-invoices-list-table.php
- Timestamp:
- 02/24/2016 11:46:55 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/sponsor-invoices-list-table.php
r2538 r2601 15 15 'sponsor_name' => 'Sponsor', 16 16 'description' => 'Description', 17 'due_date' => 'Due Date',18 17 'amount' => 'Amount', 19 18 ); … … 58 57 FROM $table_name 59 58 WHERE status = %s 60 ORDER BY due_dateASC59 ORDER BY blog_id, invoice_id ASC 61 60 LIMIT %d 62 61 OFFSET %d", … … 120 119 * @param object $index_row 121 120 */ 122 protected function column_due_date( $index_row ) {123 return esc_html( date( 'Y-m-d', $index_row->due_date ) );124 }125 126 /**127 * Render the value for the Due Date column128 *129 * @param object $index_row130 */131 121 protected function column_amount( $index_row ) { 132 122 return wp_kses(
Note: See TracChangeset
for help on using the changeset viewer.