| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace JFB_Modules\Form_Record\Admin\View_Columns; |
| 5 |
|
| 6 |
use Jet_Form_Builder\Admin\Pages\Pages_Manager; |
| 7 |
use Jet_Form_Builder\Admin\Table_Views\Column_Advanced_Base; |
| 8 |
|
| 9 |
// If this file is called directly, abort. |
| 10 |
if ( ! defined( 'WPINC' ) ) { |
| 11 |
die; |
| 12 |
} |
| 13 |
|
| 14 |
class Print_Pdf_Column extends Column_Advanced_Base { |
| 15 |
|
| 16 |
protected $column = 'print_pdf'; |
| 17 |
protected $type = self::LINK; |
| 18 |
|
| 19 |
public function get_label(): string { |
| 20 |
return ''; |
| 21 |
} |
| 22 |
|
| 23 |
/** |
| 24 |
* @param array $record |
| 25 |
* |
| 26 |
* @return array |
| 27 |
*/ |
| 28 |
public function get_value( array $record = array() ) { |
| 29 |
$record_id = (int) $record['id']; |
| 30 |
|
| 31 |
return array( |
| 32 |
'text' => __( 'Print in PDF', 'jet-form-builder' ), |
| 33 |
'href' => Pages_Manager::instance()->get_action_url( |
| 34 |
'record-print', |
| 35 |
array( |
| 36 |
'item_id' => $record_id, |
| 37 |
) |
| 38 |
), |
| 39 |
'target' => '_blank', |
| 40 |
'type' => 'media-document', |
| 41 |
); |
| 42 |
} |
| 43 |
} |
| 44 |
|