| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/piwik/plugins/Installation/templates/ |
Upload File : |
{% extends '@Installation/layout.twig' %}
{% block content %}
<h2>{{ 'Installation_Tables'|translate }}</h2>
{% if someTablesInstalled is defined %}
<div class="alert alert-warning">
{{ 'Installation_TablesWithSameNamesFound'|translate("<span id='linkToggle'>","</span>")|raw }}
</div>
<p>
{{ 'Installation_TablesFound'|translate }}:
</p>
<p>
<em>{{ tablesInstalled }} </em>
</p>
{% if showReuseExistingTables is defined %}
<p>{{ 'Installation_TablesWarningHelp'|translate }}</p>
<p class="next-step">
<a href="{{ linkTo({'action':'reuseTables'}) }}">{{ 'Installation_TablesReuse'|translate }} »</a>
</p>
{% else %}
<p class="next-step">
<a href="{{ linkTo({'action':previousPreviousModuleName}) }}">« {{ 'Installation_GoBackAndDefinePrefix'|translate }}</a>
</p>
{% endif %}
<p class="next-step">
<a href="{{ linkTo({'deleteTables':1}) }}" id="eraseAllTables">{{ 'Installation_TablesDelete'|translate }} »</a>
</p>
{% endif %}
{% if existingTablesDeleted is defined %}
<div class="alert alert-success">
{{ 'Installation_TablesDeletedSuccess'|translate }}
</div>
{% endif %}
{% if tablesCreated is defined %}
<div class="alert alert-success">
{{ 'Installation_TablesCreatedSuccess'|translate }}
</div>
{% endif %}
<script>
$(document).ready(function () {
var strConfirmEraseTables = "{{ 'Installation_ConfirmDeleteExistingTables'|translate("["~tablesInstalled~"]") }} ";
$("#eraseAllTables").click(function () {
if (!confirm(strConfirmEraseTables)) {
return false;
}
});
});
</script>
{% endblock %}