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
updated-at-column.php
29 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Table_Views\Columns; |
| 5 | |
| 6 | use Jet_Form_Builder\Admin\Table_Views\Column_Advanced_Base; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Updated_At_Column extends Column_Advanced_Base { |
| 14 | |
| 15 | public function get_label(): string { |
| 16 | return __( 'Updated', 'jet-form-builder' ); |
| 17 | } |
| 18 | |
| 19 | public function get_value( array $record = array() ) { |
| 20 | $date = $record['updated_at'] ?? ''; |
| 21 | |
| 22 | if ( '0000-00-00 00:00:00' === $date ) { |
| 23 | return $date; |
| 24 | } |
| 25 | |
| 26 | return mysql2date( 'F j, Y, H:i:s', $date ); |
| 27 | } |
| 28 | } |
| 29 |