gross-column.php
3 years ago
header-actions-column.php
3 years ago
payer-column.php
3 years ago
payment-status-column.php
3 years ago
payment-type-column.php
3 years ago
row-actions-column.php
3 years ago
transaction-column.php
3 years ago
header-actions-column.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Gateways\Table_Views\Columns; |
| 5 | |
| 6 | |
| 7 | use Jet_Form_Builder\Admin\Table_Views\Columns\Base_Header_Actions_Column; |
| 8 | use Jet_Form_Builder\Gateways\Table_Views\Actions\Delete_Action; |
| 9 | |
| 10 | class Header_Actions_Column extends Base_Header_Actions_Column { |
| 11 | |
| 12 | protected function get_actions(): array { |
| 13 | return array( |
| 14 | new Delete_Action(), |
| 15 | ); |
| 16 | } |
| 17 | |
| 18 | } |