assets
1 year ago
properties
1 year ago
insert-post-action.php
1 year ago
insert-post.php
1 year ago
insert-post.php
52 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JFB_Modules\Actions_V2\Insert_Post; |
| 4 | |
| 5 | use Jet_Form_Builder\Actions\Manager; |
| 6 | use JFB_Modules\Actions_V2\Interfaces\Action_Integration_Interface; |
| 7 | use JFB_Modules\Actions_V2\Traits\Action_Integration_Trait; |
| 8 | |
| 9 | class Insert_Post implements Action_Integration_Interface { |
| 10 | |
| 11 | use Action_Integration_Trait; |
| 12 | |
| 13 | public function rep_item_id() { |
| 14 | return 'insert-post'; |
| 15 | } |
| 16 | |
| 17 | public function init_hooks() { |
| 18 | add_action( |
| 19 | 'jet-form-builder/editor-assets/after', |
| 20 | array( $this, 'editor_assets' ) |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | public function on_install() { |
| 25 | // TODO: Implement on_install() method. |
| 26 | } |
| 27 | |
| 28 | public function register_actions( Manager $manager ) { |
| 29 | $manager->register_action_type( new Insert_Post_Action() ); |
| 30 | } |
| 31 | |
| 32 | public function editor_assets() { |
| 33 | $script_asset = require_once $this->get_dir( 'assets/build/editor.asset.php' ); |
| 34 | |
| 35 | array_push( |
| 36 | $script_asset['dependencies'], |
| 37 | 'jet-fb-components', |
| 38 | 'jet-fb-data', |
| 39 | 'jet-fb-actions-v2', |
| 40 | 'jet-fb-blocks-v2-to-actions-v2' |
| 41 | ); |
| 42 | |
| 43 | wp_enqueue_script( |
| 44 | $this->get_handle(), |
| 45 | $this->get_url( 'assets/build/editor.js' ), |
| 46 | $script_asset['dependencies'], |
| 47 | $script_asset['version'], |
| 48 | true |
| 49 | ); |
| 50 | } |
| 51 | } |
| 52 |