| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/air-sport_cz/www/modules/welcome/views/ |
Upload File : |
{**
* 2007-2020 PrestaShop and Contributors
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-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.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2020 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
<div class="onboarding-advancement" style="display: none">
<div class="advancement-groups">
{foreach from=$steps.groups item=group key=index}
<div class="group group-{$index}" style="width: {math equation="(x / y) * 100" x=$group.steps|@count y=$totalSteps}%;">
<div class="advancement" style="width: {$percent_real}%;"></div>
<div class="id">{$index+1}</div>
</div>
{/foreach}
</div>
<div class="col-md-8">
<h4 class="group-title"></h4>
<div class="step-title step-title-1"></div>
<div class="step-title step-title-2"></div>
</div>
<button class="btn btn-primary onboarding-button-next">{l s='Continue' d='Modules.Welcome.Admin'}</button>
<a class="onboarding-button-shut-down">{l s='Skip this tutorial' d='Modules.Welcome.Admin'}</a>
</div>
<script type="text/javascript">
var onBoarding;
$(function(){
onBoarding = new OnBoarding({$currentStep}, {$jsonSteps nofilter}, {$isShutDown}, "{$link->getAdminLink('AdminWelcome')}", baseAdminDir);
{foreach from=$templates item=template}
onBoarding.addTemplate('{$template['name']}', '{$template['content']}');
{/foreach}
onBoarding.showCurrentStep();
var body = $("body");
body.delegate(".onboarding-button-next", "click", function(){
if ($(this).is('.with-spinner')) {
if (!$(this).is('.animated')) {
$(this).addClass('animated');
onBoarding.gotoNextStep();
}
} else {
onBoarding.gotoNextStep();
}
}).delegate(".onboarding-button-shut-down", "click", function(){
onBoarding.setShutDown(true);
}).delegate(".onboarding-button-resume", "click", function(){
onBoarding.setShutDown(false);
}).delegate(".onboarding-button-goto-current", "click", function(){
onBoarding.gotoLastSavePoint();
}).delegate(".onboarding-button-stop", "click", function(){
onBoarding.stop();
});
});
</script>