Files
lulandia.pl/modules/omnibuseufree/views/templates/admin/configure.tpl
Jacek Pyziak 75f7b80664 Add initial module files and templates for Omnibus EU Free
- Created new image file for YouTube logo.
- Added index.php files for views and JavaScript with license notice and redirect to parent directory.
- Implemented back.js for reload functionality with button event listener.
- Introduced configure.tpl template for admin configuration with documentation links and CRON settings.
- Added products-price-list.tpl for displaying product price data in a table format.
- Created index.php files for hook templates with license notice and redirect.
- Added presta_studio_omnibus_price.tpl for displaying product discount information.
2026-03-05 00:11:14 +01:00

78 lines
3.4 KiB
Smarty

{*
*
* NOTICE OF LICENSE
*
* This source file is subject to the Apache License, Version 2.0
* that is bundled with this package in the file LICENSE.
* It is also available through the world-wide-web at this URL:
* http://www.apache.org/licenses/LICENSE-2.0
*
* @author presta.studio
* @copyright Copyright (c) 2023 presta.studio
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*
*}
<div class="panel">
<div class="panel-heading">
<div class="presta-studio-omnibus-header">
<div class="presta-studio-omnibus-header-left">
<i class="icon icon-tags"></i>{l s='Documentation' mod='omnibuseufree'}
</div>
<div class="presta-studio-omnibus-header-right">
<a href="https://presta.studio" target="_blank"><img src="{$module_dir}views/img/presta_studio_logo.png" width="92" height="16" alt="presta.studio"></a>
<a href="https://www.youtube.com/@presta.studio" target="_blank" class="follow-presta-studio"><img src="{$module_dir}views/img/yt_logo.png" width="71" height="16" alt="Follow us on YouTube"></a>
</div>
</div>
</div>
<div class="panel-body">
<p>&raquo; {l s='Module installation and configuration' mod='omnibuseufree'}:</p>
<ul class="presta-studio-documentation-list">
<li><a href="https://presta.studio/omnibus-documentation-en" target="_blank">{l s='English' mod='omnibuseufree'}</a></li>
<li><a href="https://presta.studio/omnibus-documentation-pl" target="_blank">{l s='Polish' mod='omnibuseufree'}</a></li>
</ul>
<p >&raquo; {l s='Follow us on' mod='omnibuseufree'}:</p>
<ul>
<li><a href="https://www.youtube.com/@presta.studio" target="_blank">YouTube</a></li>
<li><a href="https://presta.studio/github" target="_blank">GitHub</a></li>
</ul>
</div>
</div>
<div class="panel">
<div class="panel-body text-center">
{if $lang == 'pl'}
<a href="https://presta.studio/pl/" target="_blank"><img src="{$module_dir}views/img/baner_pl.png" width="750" height="100" class="presta-studio-ads"></a>
<a href="https://presta.studio/pl/" target="_blank"><img src="{$module_dir}views/img/baner_mobile_pl.png" width="300" height="250" class="presta-studio-ads-mobile"></a>
{else}
<a href="https://presta.studio/" target="_blank"><img src="{$module_dir}views/img/baner_en.png" width="750" height="100" class="presta-studio-ads"></a>
<a href="https://presta.studio/" target="_blank"><img src="{$module_dir}views/img/baner_mobile_en.png" width="300" height="250" class="presta-studio-ads-mobile"></a>
{/if}
</div>
</div>
<div class="panel">
<div class="panel-heading">
<i class="material-icons md48">sync</i>{l s='CRON' mod='omnibuseufree'}
</div>
<div class="panel-body form-horizontal">
<div class="form-group">
<label class="control-label col-lg-4">
{l s='Update prices' mod='omnibuseufree'}
</label>
<div class="col-lg-8">
<input type="text" class="form-control disabled" id="omnibus-cron-update-prices" disabled value="{if $cron_status == '1'}{$update_prices}{else}{l s='CRON is disabled.' mod='omnibuseufree'}{/if}"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-4">
{l s='Delete outdated data' mod='omnibuseufree'}
</label>
<div class="col-lg-8">
<input type="text" class="form-control disabled" id="omnibus-cron-outdated-data" disabled value="{if $cron_status == '1'}{$delete_outdated_data}{else}{l s='CRON is disabled.' mod='omnibuseufree'}{/if}"/>
</div>
</div>
</div>
</div>