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 / field-name-column.php

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

33 lines 709 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\Table_Views\Column_Advanced_Base;
7 use Jet_Form_Builder\Classes\Tools;
8
9 // If this file is called directly, abort.
10 if ( ! defined( 'WPINC' ) ) {
11 die;
12 }
13
14 class Field_Name_Column extends Column_Advanced_Base {
15
16 protected $column = 'field_name';
17 protected $type = 'rawArray';
18
19 public function get_label(): string {
20 return __( 'Label & Name', 'jet-form-builder' );
21 }
22
23 public function get_value( array $record = array() ) {
24 $name = parent::get_value( $record );
25 $attrs = Tools::decode_json( $record['field_attrs'] ?? '{}' );
26
27 return array(
28 'name' => $name,
29 'label' => $attrs['label'] ?? '',
30 );
31 }
32 }
33