Assets.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonationForms\OrphanedForms\Actions; |
| 4 | |
| 5 | use Give\Helpers\EnqueueScript; |
| 6 | |
| 7 | /** |
| 8 | * @since 4.2.0 |
| 9 | */ |
| 10 | class Assets |
| 11 | { |
| 12 | /** |
| 13 | * Enqueue scripts |
| 14 | */ |
| 15 | public function __invoke() |
| 16 | { |
| 17 | if ('enabled' !== give_get_option('show_orphaned_forms_table', 'disabled')) { |
| 18 | return; |
| 19 | } |
| 20 | |
| 21 | EnqueueScript::make( |
| 22 | 'orphaned-forms-list-table', |
| 23 | 'build/assets/dist/js/orphaned-forms-list-table.js' |
| 24 | ) |
| 25 | ->loadInFooter() |
| 26 | ->registerTranslations() |
| 27 | ->enqueue(); |
| 28 | } |
| 29 | } |
| 30 |