Add initial files and templates for Omnibus EU Free module
- Added yt_logo.png image for branding. - Created index.php for views and templates with license notice and redirection. - Implemented back.js for reload functionality with event listener. - Developed configure.tpl for admin configuration panel with documentation links. - Established products-price-list.tpl for displaying product pricing information. - Created presta_studio_omnibus_price.tpl for displaying price history and discounts. - Added index.php files in various directories for consistent redirection and license notice.
This commit is contained in:
76
modules/omnibuseufree/views/css/back.css
Normal file
76
modules/omnibuseufree/views/css/back.css
Normal file
@@ -0,0 +1,76 @@
|
||||
/**
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
.module-omnibuseufree h2{
|
||||
padding-top:0 !important;
|
||||
}
|
||||
|
||||
.presta-studio-omnibus-header{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.presta-studio-documentation-list,
|
||||
.bootstrap ul.presta-studio-documentation-list {
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
.presta-studio-omnibus-header-right a img{
|
||||
margin-left:16px;
|
||||
}
|
||||
|
||||
.presta-studio-omnibus-header-left i{
|
||||
margin-top: -2px;
|
||||
margin-right: 5px;
|
||||
font-size: 20px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.presta-studio-ads,
|
||||
.presta-studio-ads-mobile{
|
||||
border:1px solid #000;
|
||||
}
|
||||
|
||||
.presta-studio-ads-mobile{
|
||||
display: none;
|
||||
}
|
||||
.presta-studio-ads{
|
||||
display: inline-block;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.omnibus-select-version{
|
||||
min-width: 310px !important;
|
||||
}
|
||||
|
||||
.omnibus-input-days{
|
||||
width: 64px !important;
|
||||
}
|
||||
|
||||
@media (max-width: 450px) {
|
||||
.presta-studio-omnibus-header-right .follow-presta-studio {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.presta-studio-ads-mobile{
|
||||
display: inline-block;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
.presta-studio-ads{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
23
modules/omnibuseufree/views/css/index.php
Normal file
23
modules/omnibuseufree/views/css/index.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
.presta-studio-price-history .presta-studio-price-history-text{
|
||||
color: #000000;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
Reference in New Issue
Block a user