base-actions-column.php
2 years ago
base-header-actions-column.php
2 years ago
base-row-actions-column.php
2 years ago
created-at-column.php
2 years ago
hidden-primary-id-column-trait.php
2 years ago
record-id-column-advanced.php
2 years ago
record-id-column.php
2 years ago
updated-at-column.php
2 years ago
base-header-actions-column.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Table_Views\Columns; |
| 5 | |
| 6 | use Jet_Form_Builder\Admin\Table_Views\Actions\View_Single_Action; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | abstract class Base_Header_Actions_Column extends Base_Actions_Column { |
| 14 | |
| 15 | protected function is_active( View_Single_Action $action, array $record ): bool { |
| 16 | return $action->show_in_header(); |
| 17 | } |
| 18 | |
| 19 | } |
| 20 |