PluginProbe
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI / trunk
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI vtrunk
6.0.2 6.0.1 6.0.0 5.8.6 5.8.5 5.8.4 5.8.3 5.8.2 5.8.1 5.8.0 5.7.9.2 5.7.9.1 5.7.8 5.7.9 5.7.6 5.7.7 5.7.5 5.7.4 5.7.3 5.7.2 5.7.1 trunk 5.6.0 5.6.1 5.6.2 All 33 releases
automatorwp / integrations / wordpress / includes / scripts.php

scripts.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI trunk, at integrations/wordpress/includes/scripts.php

45 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Scripts
4 *
5 * @package AutomatorWP\Integrations\WordPress\Scripts
6 * @author AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com>
7 * @since 1.0.0
8 */
9 // Exit if accessed directly
10 if( !defined( 'ABSPATH' ) ) exit;
11
12 /**
13 * Register admin scripts
14 *
15 * @since 1.0.0
16 * @return void
17 */
18 function automatorwp_wordpress_admin_register_scripts() {
19
20 // Use minified libraries if SCRIPT_DEBUG is turned off
21 $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
22
23 // Scripts
24 wp_register_script( 'automatorwp-wordpress-js', AUTOMATORWP_WORDPRESS_URL . 'assets/js/automatorwp-wordpress' . $suffix . '.js', array( 'jquery' ), '1.0.0', true );
25
26 }
27 add_action( 'admin_init', 'automatorwp_wordpress_admin_register_scripts' );
28
29 /**
30 * Enqueue admin scripts
31 *
32 * @since 1.0.0
33 * @return void
34 */
35 function automatorwp_wordpress_admin_enqueue_scripts( $hook ) {
36
37 // Scripts
38 wp_localize_script( 'automatorwp-wordpress-js', 'automatorwp_wordpress', array(
39 'nonce' => automatorwp_get_admin_nonce(),
40 ) );
41
42 wp_enqueue_script( 'automatorwp-wordpress-js' );
43
44 }
45 add_action( 'admin_enqueue_scripts', 'automatorwp_wordpress_admin_enqueue_scripts', 100 );