get_per_page()
*/
$columns = $section->get_columns();
?>
$column ) : ?>
year . '-' . $entry->month . '-01' ) ) ); // translators: date format; month and year for earnings display
break;
case 'earnings' :
$display_amount = sprintf( '%.' . affiliates_get_referral_amount_decimals( 'display' ) . 'f', $entry->total );
echo esc_html( $entry->currency_id ) . ' ' . esc_html( $display_amount );
break;
case 'paid' :
$display_amount = sprintf( '%.' . affiliates_get_referral_amount_decimals( 'display' ) . 'f', $entry->total_closed );
echo esc_html( $entry->currency_id ) . ' ' . esc_html( $display_amount );
break;
default :
echo '';
}
?>