base-actions-column.php
3 years ago
base-header-actions-column.php
3 years ago
base-row-actions-column.php
3 years ago
created-at-column.php
3 years ago
hidden-primary-id-column-trait.php
3 years ago
record-id-column-advanced.php
3 years ago
record-id-column.php
3 years ago
updated-at-column.php
3 years ago
base-header-actions-column.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Table_Views\Columns; |
| 5 | |
| 6 | |
| 7 | use Jet_Form_Builder\Admin\Table_Views\Actions\View_Single_Action; |
| 8 | |
| 9 | abstract class Base_Header_Actions_Column extends Base_Actions_Column { |
| 10 | |
| 11 | protected function is_active( View_Single_Action $action, array $record ): bool { |
| 12 | return $action->show_in_header(); |
| 13 | } |
| 14 | |
| 15 | } |