Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
const e=document.createElement("script");e.type="text/javascript";e.src=document.currentScript.src.replace("app.js","psxmarketingwithgoogle-ui.js");e.type="module";document.head.append(e);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunkmarketing_with_google_verification_tag=self.webpackChunkmarketing_with_google_verification_tag||[]).push([[248],{6130:(t,e,n)=>{n.r(e),n.d(e,{form:()=>o,link:()=>i});var r=n(9483);function i(t,e,n,i){var o=this;return t?((t instanceof Element?[t]:"toArray"in t?t.toArray():t).forEach((function(t){t.addEventListener("click",(function(a){var u,c,s=e instanceof Function?e(t):e,l=n instanceof Function?n(t):n,f=t.getAttribute("href")||t.getAttributeNS("http://www.w3.org/1999/xlink","href")||t.getAttribute("xlink:href")||(null===(u=t.getElementsByTagName("a")[0])||void 0===u?void 0:u.getAttribute("href")),h=(0,r.s)(o.track(s,l,null!=i?i:{}),null!==(c=o.settings.timeout)&&void 0!==c?c:500);(function(t,e){return!("_blank"!==t.target||!e)})(t,f)||function(t){var e=t;return!!(e.ctrlKey||e.shiftKey||e.metaKey||e.button&&1==e.button)}(a)||f&&(a.preventDefault?a.preventDefault():a.returnValue=!1,h.catch(console.error).then((function(){window.location.href=f})).catch(console.error))}),!1)})),this):this}function o(t,e,n,i){var o=this;return t?(t instanceof HTMLFormElement&&(t=[t]),t.forEach((function(t){if(!(t instanceof Element))throw new TypeError("Must pass HTMLElement to trackForm/trackSubmit.");var a=function(a){var u;a.preventDefault?a.preventDefault():a.returnValue=!1;var c=e instanceof Function?e(t):e,s=n instanceof Function?n(t):n;(0,r.s)(o.track(c,s,null!=i?i:{}),null!==(u=o.settings.timeout)&&void 0!==u?u:500).catch(console.error).then((function(){t.submit()})).catch(console.error)},u=window.jQuery||window.Zepto;u?u(t).submit(a):t.addEventListener("submit",a,!1)})),this):this}}}]);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
/*! js-cookie v3.0.1 | MIT */

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,49 @@
/*!
* core-base v9.2.2
* (c) 2022 kazuya kawaguchi
* Released under the MIT License.
*/
/*!
* devtools-if v9.2.2
* (c) 2022 kazuya kawaguchi
* Released under the MIT License.
*/
/*!
* message-compiler v9.2.2
* (c) 2022 kazuya kawaguchi
* Released under the MIT License.
*/
/*!
* shared v9.2.2
* (c) 2022 kazuya kawaguchi
* Released under the MIT License.
*/
/*!
* vue-i18n v9.2.2
* (c) 2022 kazuya kawaguchi
* Released under the MIT License.
*/
/*! #__NO_SIDE_EFFECTS__ */
/**
* @vue/compiler-core v3.4.15
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
/**
* @vue/shared v3.4.15
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
/**
* vue v3.4.15
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/

View File

@@ -0,0 +1,11 @@
<?php
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;

View File

@@ -0,0 +1,37 @@
/**
* 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 Academic Free License version 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/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 and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
document.addEventListener('DOMContentLoaded', function () {
const findCarriersList = document.querySelector('#form-carrier.form-horizontal.clearfix');
if (!findCarriersList) {
return;
}
let warningShipping = document.createElement('div');
warningShipping.setAttribute('id', 'warningTransit');
const content = `
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
<div class="alert-text">
${transitWarningMsg} <a href="${moduleLink}" target="_blank">${redirectMsg}</a>
</div>
</div>
`;
warningShipping.innerHTML = content;
findCarriersList.before(warningShipping);
});

View File

@@ -0,0 +1,28 @@
<?php
/**
* 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 Academic Free License version 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/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 and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.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;

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunkmarketing_with_google_verification_tag=self.webpackChunkmarketing_with_google_verification_tag||[]).push([[694],{4081:(e,i,t)=>{t.r(i),t.d(i,{loadLegacyVideoPlugins:()=>r});var n=t(5450);function r(e){return(0,n.sH)(this,void 0,void 0,(function(){var i;return(0,n.YH)(this,(function(n){switch(n.label){case 0:return[4,t.e(862).then(t.t.bind(t,9862,23))];case 1:return i=n.sent(),e._plugins=i,[2]}}))}))}}}]);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunkmarketing_with_google_verification_tag=self.webpackChunkmarketing_with_google_verification_tag||[]).push([[538],{1066:(a,r,e)=>{function t(a,r){return Object.keys(r).reduce((function(e,t){return t.startsWith(a)&&(e[t.substr(a.length)]=r[t]),e}),{})}e.r(r),e.d(r,{queryString:()=>s});var i=e(4360);function s(a,r){var e=document.createElement("a");e.href=r;var s=e.search.slice(1).split("&").reduce((function(a,r){var e=r.split("="),t=e[0],s=e[1];return a[t]=(0,i.p)(s),a}),{}),n=[],u=s.ajs_uid,_=s.ajs_event;if(s.ajs_aid){var c=Array.isArray(s.ajs_aid)?s.ajs_aid[0]:s.ajs_aid;a.setAnonymousId(c)}if(u){var j=Array.isArray(s.ajs_uid)?s.ajs_uid[0]:s.ajs_uid,o=t("ajs_trait_",s);n.push(a.identify(j,o))}if(_){var d=Array.isArray(s.ajs_event)?s.ajs_event[0]:s.ajs_event,f=t("ajs_prop_",s);n.push(a.track(d,f))}return Promise.all(n)}}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunkmarketing_with_google_verification_tag=self.webpackChunkmarketing_with_google_verification_tag||[]).push([[521],{3938:(e,t,r)=>{r.r(t),r.d(t,{remoteMiddlewares:()=>s});var n=r(5450),a=r(1341),i=r(1679),c=r(5634);function s(e,t,r){var s;return(0,n.sH)(this,void 0,void 0,(function(){var o,l,u,d,f=this;return(0,n.YH)(this,(function(w){switch(w.label){case 0:return(0,a.S)()?[2,[]]:(o=(0,c.YM)(),l=null!==(s=t.enabledMiddleware)&&void 0!==s?s:{},u=Object.entries(l).filter((function(e){return e[0],e[1]})).map((function(e){return e[0]})),d=u.map((function(t){return(0,n.sH)(f,void 0,void 0,(function(){var a,c,s,l;return(0,n.YH)(this,(function(n){switch(n.label){case 0:a=t.replace("@segment/",""),c=a,r&&(c=btoa(a).replace(/=/g,"")),s="".concat(o,"/middleware/").concat(c,"/latest/").concat(c,".js.gz"),n.label=1;case 1:return n.trys.push([1,3,,4]),[4,(0,i.k)(s)];case 2:return n.sent(),[2,window["".concat(a,"Middleware")]];case 3:return l=n.sent(),e.log("error",l),e.stats.increment("failed_remote_middleware"),[3,4];case 4:return[2]}}))}))})),[4,Promise.all(d)]);case 1:return[2,w.sent().filter(Boolean)]}}))}))}}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunkmarketing_with_google_verification_tag=self.webpackChunkmarketing_with_google_verification_tag||[]).push([[104],{462:(n,e,t)=>{function i(n,e){var t,i;return"boolean"==typeof(null==e?void 0:e.enabled)?e.enabled:null===(i=null===(t=null==n?void 0:n.__default)||void 0===t?void 0:t.enabled)||void 0===i||i}t.d(e,{j:()=>i})},9563:(n,e,t)=>{t.r(e),t.d(e,{schemaFilter:()=>o});var i=t(5450),r=t(462);function o(n,e){function t(t){var o=n,a=t.event.event;if(o&&a){var u=o[a];if(!(0,r.j)(o,u))return t.updateEvent("integrations",(0,i.Cl)((0,i.Cl)({},t.event.integrations),{All:!1,"Segment.io":!0})),t;var l=function(n,e){var t,i;if(!n||!Object.keys(n))return{};var r=Object.keys(n.integrations).filter((function(e){return!1===n.integrations[e]})),o=[];return(null!==(t=e.remotePlugins)&&void 0!==t?t:[]).forEach((function(n){r.forEach((function(e){(n.name.includes(e)||e.includes(n.name))&&o.push(n.name)}))})),(null!==(i=e.remotePlugins)&&void 0!==i?i:[]).reduce((function(n,e){return e.settings.subscriptions&&o.includes(e.name)&&e.settings.subscriptions.forEach((function(t){return n["".concat(e.name," ").concat(t.partnerAction)]=!1})),n}),{})}(u,e);t.updateEvent("integrations",(0,i.Cl)((0,i.Cl)((0,i.Cl)({},t.event.integrations),null==u?void 0:u.integrations),l))}return t}return{name:"Schema Filter",version:"0.1.0",isLoaded:function(){return!0},load:function(){return Promise.resolve()},type:"before",page:t,alias:t,track:t,identify:t,group:t}}}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
<?php
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;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,53 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2018 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @license Apache-2.0
*
* Copyright (c) 2021 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @license Apache-2.0
*
* Copyright (c) 2022 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

File diff suppressed because one or more lines are too long