actions-list-for-column.php
3 years ago
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
actions-list-for-column.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Gateways\Table_Views\Columns; |
| 5 | |
| 6 | |
| 7 | use Jet_Form_Builder\Admin\Table_Views\Actions\View_Single_Action; |
| 8 | use Jet_Form_Builder\Gateways\Table_Views\Actions\View_Action; |
| 9 | |
| 10 | trait Actions_List_For_Column { |
| 11 | |
| 12 | /** |
| 13 | * @return View_Single_Action[] |
| 14 | */ |
| 15 | protected function get_actions(): array { |
| 16 | return array( |
| 17 | ); |
| 18 | } |
| 19 | |
| 20 | } |