Current File : //var/www/vinorea/src/PrestaShopBundle/Resources/views/Admin/Helpers/bootstrap_popup.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 class="modal fade" id="{{ id }}" tabindex="-1">
<div class="modal-dialog {% if class is defined %}{{ class }}{% endif %}">
<div class="modal-content">
{% block header %}
{% if title is defined %}
<div class="modal-header">
<h4 class="modal-title">{{ title }}</h4>
{% if closable is defined and closable == true %}<button type="button" class="close" data-dismiss="modal">×</button>{% endif %}
</div>
{% endif %}
{% endblock %}
{% block content %}
{% endblock %}
{% if progressbar is defined %}
<div class="modal-body" id="{{ progressbar.id }}">
<div class="float-right progress-details-text" default-value="{{ progressbar.label|default('Processing...'|trans({}, 'Admin.Global')) }}">
{{ progressbar.label|default('Processing...'|trans({}, 'Admin.Global')) }}
</div>
<div class="progress" style="width: 100%">
<div class="progress-bar progress-bar-striped" role="progressbar" style="width: 0%">
<span>0 %</span>
</div>
</div>
</div>
{% endif %}
{% block footer %}
{% if actions is defined %}
<div class="modal-footer">
{% if closable is defined and closable == true %}
<button type="button" class="btn btn-outline-secondary btn-lg" data-dismiss="modal">
{% if closeLabel is defined %}
{{ closeLabel }}
{% else %}
{{ 'Close'|trans({}, 'Admin.Actions') }}
{% endif %}
</button>
{% endif %}
{% for action in actions %}
{% if action.type is defined and action.type == 'link' %}
<a href="{{ action.href|default('#') }}" class="{{ action.class|default('btn') }}">{{ action.label|default('Label is missing') }}</a>
{% elseif action.type is defined and action.type == 'button' %}
<button type="button" value="{{ action.value|default('') }}" class="{{ action.class|default('btn') }}">
{{ action.label|default('Label is missing') }}
</button>
{% endif %}
{% endfor %}
</div>
{% endif %}
{% endblock %}
</div>
</div>
</div>
<script>
$(document).ready(function() {
var closable = {% if closable is defined and closable == true %}true{% else %}false{% endif %};
$('#{{ id }}').modal({
backdrop: (closable ? true : 'static'),
keyboard: closable,
closable: closable,
show: false
});
});
</script>