actions
2 years ago
columns
2 years ago
column-advanced-base.php
2 years ago
column-base.php
2 years ago
column-heading-interface.php
2 years ago
column-heading-trait.php
2 years ago
view-advanced-base.php
2 years ago
view-base.php
2 years ago
view-simple-base.php
2 years ago
column-heading-trait.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Table_Views; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | trait Column_Heading_Trait { |
| 12 | |
| 13 | public function get_heading(): array { |
| 14 | return array( |
| 15 | 'label' => $this->get_label(), |
| 16 | ); |
| 17 | } |
| 18 | |
| 19 | } |
| 20 |