PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / 3.6.5.3
JetFormBuilder — Dynamic Blocks Form Builder v3.6.5.3
3.6.5.4 3.6.5.3 3.6.5.2 3.6.5.1 3.6.5 3.6.4.2 3.6.4.1 3.6.4 3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 All 132 releases
jetformbuilder / modules / form-record / admin / view-columns / print-pdf-column.php

print-pdf-column.php in JetFormBuilder — Dynamic Blocks Form Builder 3.6.5.3, at modules/form-record/admin/view-columns/print-pdf-column.php

44 lines 856 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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