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
hidden-primary-id-column-trait.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Table_Views\Columns; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | trait Hidden_Primary_Id_Column_Trait { |
| 12 | |
| 13 | public function __construct() { |
| 14 | $this->add_columns( |
| 15 | array( |
| 16 | 'id' => new Record_Id_Column(), |
| 17 | ) |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |