PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / 3.6.5.2
JetFormBuilder — Dynamic Blocks Form Builder v3.6.5.2
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 1.1.4 1.1.5 All 130 releases
jetformbuilder / modules / actions-v2 / insert-term / properties / term-name-property.php
term-name-property.php
41 lines 814 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\Actions_V2\Insert_Term\Properties;
5
6 use Jet_Form_Builder\Actions\Methods\Abstract_Modifier;
7 use Jet_Form_Builder\Actions\Methods\Base_Object_Property;
8
9 // If this file is called directly, abort.
10 if ( ! defined( 'WPINC' ) ) {
11 die;
12 }
13
14 class Term_Name_Property extends Base_Object_Property {
15
16 protected $is_empty = false;
17
18 public function get_id(): string {
19 return 'name';
20 }
21
22 public function get_label(): string {
23 return __( 'Term Name', 'jet-form-builder' );
24 }
25
26 public function get_value( Abstract_Modifier $modifier ) {
27 $action = $modifier->get_action();
28
29 if ( ! is_a( $action, Insert_Action::class ) ||
30 $this->value
31 ) {
32 return parent::get_value( $modifier );
33 }
34
35 $this->value = '';
36 $this->is_empty = true;
37
38 return parent::get_value( $modifier );
39 }
40 }
41