app/Plugin/TabaCustomFields2/Resource/template/admin/snippet/csv_download_product_link.twig line 1

Open in your IDE?
  1. {% set const = TabaCustomFields2Constants %}
  2. <script>
  3.     $(function () {
  4.         const link = "{{ url(constant('ADMIN_BIND_PREFIX', TabaCustomFields2Constants)~'product_csv_export') }}";
  5.         const text = "追加項目DL";
  6.         const btn = $('<a class="btn btn-ec-regular" href="' + link + '"><i class="fa fa-cloud-download me-1 text-secondary"></i>' + text + '</a>');
  7.         $('.justify-content-between>.col-5 .btn-group').prepend(btn);
  8.     });
  9. </script>