Assets.php
34 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 | * Enqueue scripts |
| 14 | */ |
| 15 | public function enqueueScripts() { |
| 16 | wp_enqueue_script( |
| 17 | 'give-migrations-list-table-app', |
| 18 | GIVE_PLUGIN_URL . 'assets/dist/js/give-migrations-list-table-app.js', |
| 19 | [ 'wp-element', 'wp-i18n' ], |
| 20 | GIVE_VERSION, |
| 21 | true |
| 22 | ); |
| 23 | |
| 24 | wp_localize_script( |
| 25 | 'give-migrations-list-table-app', |
| 26 | 'GiveMigrations', |
| 27 | [ |
| 28 | 'apiRoot' => esc_url_raw( rest_url( 'give-api/v2/migrations' ) ), |
| 29 | 'apiNonce' => wp_create_nonce( 'wp_rest' ), |
| 30 | ] |
| 31 | ); |
| 32 | } |
| 33 | } |
| 34 |