Assets.php
36 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\MigrationLog\Helpers; |
| 4 | |
| 5 | /** |
| 6 | * Class Assets |
| 7 | * @package Give\MigrationLog\Helpers |
| 8 | * |
| 9 | * @since 2.10.0 |
| 10 | */ |
| 11 | class Assets |
| 12 | { |
| 13 | /** |
| 14 | * Enqueue scripts |
| 15 | */ |
| 16 | public function enqueueScripts() |
| 17 | { |
| 18 | wp_enqueue_script( |
| 19 | 'give-migrations-list-table-app', |
| 20 | GIVE_PLUGIN_URL . 'assets/dist/js/give-migrations-list-table-app.js', |
| 21 | ['wp-element', 'wp-i18n'], |
| 22 | GIVE_VERSION, |
| 23 | true |
| 24 | ); |
| 25 | |
| 26 | wp_localize_script( |
| 27 | 'give-migrations-list-table-app', |
| 28 | 'GiveMigrations', |
| 29 | [ |
| 30 | 'apiRoot' => esc_url_raw(rest_url('give-api/v2/migrations')), |
| 31 | 'apiNonce' => wp_create_nonce('wp_rest'), |
| 32 | ] |
| 33 | ); |
| 34 | } |
| 35 | } |
| 36 |