# give/4.16.9/src/MigrationLog/Helpers/Assets.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 32 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/MigrationLog/Helpers/Assets.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/MigrationLog/Helpers/Assets.php
- Modified: 2025-03-31T19:17:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/MigrationLog/Helpers/Assets.php#L10-L20`.

```php
<?php

namespace Give\MigrationLog\Helpers;

use Give\Helpers\EnqueueScript;

/**
 * Class Assets
 * @package Give\MigrationLog\Helpers
 *
 * @since 2.10.0
 */
class Assets
{
    /**
     * Enqueue scripts
     */
    public function enqueueScripts()
    {
        $data = [
            'apiRoot' => esc_url_raw(rest_url('give-api/v2/migrations')),
            'apiNonce' => wp_create_nonce('wp_rest'),
        ];

        EnqueueScript::make('give-migrations-list-table-app', 'build/assets/dist/js/give-migrations-list-table-app.js')
            ->loadInFooter()
            ->registerTranslations()
            ->registerLocalizeData('GiveMigrations', $data)
            ->enqueue();
    }
}

```
