| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace JFB_Modules\Form_Record\Admin\View_Columns; |
| 5 |
|
| 6 |
use Jet_Form_Builder\Admin\Table_Views\Column_Base; |
| 7 |
|
| 8 |
// If this file is called directly, abort. |
| 9 |
if ( ! defined( 'WPINC' ) ) { |
| 10 |
die; |
| 11 |
} |
| 12 |
|
| 13 |
class Classes_Column extends Column_Base { |
| 14 |
|
| 15 |
protected $type = 'rawArray'; |
| 16 |
|
| 17 |
public function get_value( array $record = array() ) { |
| 18 |
return array( |
| 19 |
'list-table-item--not-viewed' => empty( $record['is_viewed'] ), |
| 20 |
); |
| 21 |
} |
| 22 |
|
| 23 |
} |
| 24 |
|