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
abstract-term-modifier.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JFB_Modules\Actions_V2\Insert_Term\Properties; |
| 4 | |
| 5 | use Jet_Form_Builder\Actions\Methods\Abstract_Modifier; |
| 6 | use JFB_Modules\Actions_V2\Insert_Term\Insert_Term_Action; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | abstract class Abstract_Term_Modifier extends Abstract_Modifier { |
| 14 | |
| 15 | abstract public function is_supported( Insert_Term_Action $action ): bool; |
| 16 | |
| 17 | abstract public function get_id(): string; |
| 18 | |
| 19 | public function before_run( Insert_Term_Action $action ) { |
| 20 | $request = jet_fb_context()->resolve_request(); |
| 21 | $fields_map = $action->settings['fields_map'] ?? array(); |
| 22 | |
| 23 | $this->set_fields_map( $fields_map ); |
| 24 | $this->set_request( $request ); |
| 25 | } |
| 26 | |
| 27 | } |
| 28 |