gross-column.php
2 years ago
header-actions-column.php
2 years ago
payer-column.php
2 years ago
payment-status-column.php
2 years ago
payment-type-column.php
9 months ago
row-actions-column.php
2 years ago
transaction-column.php
2 years ago
gross-column.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways\Table_Views\Columns; |
| 5 | |
| 6 | use Jet_Form_Builder\Admin\Table_Views\Column_Advanced_Base; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Gross_Column extends Column_Advanced_Base { |
| 14 | |
| 15 | public function get_label(): string { |
| 16 | return __( 'Gross', 'jet-form-builder' ); |
| 17 | } |
| 18 | |
| 19 | public function get_gross_sign( $record ): string { |
| 20 | return '+'; |
| 21 | } |
| 22 | |
| 23 | public function get_value( array $record = array() ) { |
| 24 | $value = number_format( $record['amount_value'] ?? 0, 2 ); |
| 25 | |
| 26 | return sprintf( |
| 27 | '%s %s %s', |
| 28 | $this->get_gross_sign( $record ), |
| 29 | $value, |
| 30 | $record['amount_code'] ?? '' |
| 31 | ); |
| 32 | } |
| 33 | } |
| 34 |