abstract-term-modifier.php
1 year ago
base-term-action.php
1 year ago
insert-action.php
1 year ago
term-id-property.php
1 year ago
term-meta-property.php
1 year ago
term-modifier.php
1 year ago
term-name-property.php
1 year ago
term-parent-id-property.php
1 year ago
term-slug-property.php
1 year ago
term-taxonomy-property.php
1 year ago
update-action.php
6 months ago
term-slug-property.php
41 lines
| 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_Slug_Property extends Base_Object_Property { |
| 15 | |
| 16 | protected $is_empty = false; |
| 17 | |
| 18 | public function get_id(): string { |
| 19 | return 'slug'; |
| 20 | } |
| 21 | |
| 22 | public function get_label(): string { |
| 23 | return __( 'Term Slug', '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 |