?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/src/PrestaShopBundle/Resources/views/Admin/Module/Includes/



?? Go up: /home/webdevt/prestashop17/src/PrestaShopBundle/Resources/views/Admin/Module

?? Viewing: modal_confirm_bulk_action.html.twig

{#**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/OSL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to https://devdocs.prestashop.com/ for more information.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 *#}
<div id="module-modal-bulk-confirm" class="modal  modal-vcenter fade" role="dialog">
  <div class="modal-dialog">
    <!-- Modal content-->
    <div class="modal-content">
      <div class="modal-header">
        <h4 class="modal-title module-modal-title">{{ 'Bulk action confirmation'|trans({}, 'Admin.Modules.Feature') }}</h4>
        <button type="button" class="close" data-dismiss="modal">&times;</button>
      </div>
      <div class="modal-body">
          <div class="row">
              <div class="col-md-12">
                  <p>
                    {{ "You are about to [1] the following modules:"|trans({}, 'Admin.Modules.Notification')|replace({'[1]' : '<span id="module-modal-bulk-confirm-action-name">[Module Action]</span>'})|raw }}
                  </p>
                  <p id="module-modal-bulk-confirm-list">
                      [Module List Up To 10 Max]
                  </p>

                  <div id="module-modal-bulk-checkbox">
                    <label>
                      <input type="checkbox" id="force_bulk_deletion" name="force_bulk_deletion"> {{ "Optional: delete module folder after uninstall."|trans({}, 'Admin.Modules.Feature') }}
                    </label>
                  </div>
              </div>
          </div>
      </div>
      <div class="modal-footer">
          <input type="button" class="btn btn-outline-secondary uppercase" data-dismiss="modal" value="{{ 'Cancel'|trans({}, 'Admin.Actions') }}">
          <button class="btn btn-primary uppercase" data-dismiss="modal" id="module-modal-confirm-bulk-ack">{{ 'Yes, I want to do it'|trans({}, 'Admin.Modules.Feature') }}</button>
      </div>

    </div>
  </div>
</div>


??

??