| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) |
| 3 |
exit; // Exit if accessed directly |
| 4 |
|
| 5 |
class AIBUI_WordPress_Builder |
| 6 |
{ |
| 7 |
public function __construct() |
| 8 |
{ |
| 9 |
add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts')); |
| 10 |
} |
| 11 |
|
| 12 |
public function enqueue_scripts() |
| 13 |
{ |
| 14 |
wp_enqueue_script( |
| 15 |
'aibui-wordpress-builder', |
| 16 |
plugins_url('assets/js/aibui-wordpress-builder.js', dirname(__FILE__)), |
| 17 |
array(), |
| 18 |
'1.0.0', |
| 19 |
true |
| 20 |
); |
| 21 |
|
| 22 |
wp_localize_script( |
| 23 |
'aibui-wordpress-builder', |
| 24 |
'aibuiWordPressBuilder', |
| 25 |
array( |
| 26 |
'pluginUrl' => plugins_url('', dirname(__FILE__)) |
| 27 |
) |
| 28 |
); |
| 29 |
} |
| 30 |
} |
| 31 |
|
| 32 |
new AIBUI_WordPress_Builder(); |