└── prestarocket ├── assets ├── cache │ └── .gitkeep ├── js │ └── custom.js └── css │ ├── custom.css │ ├── 012cf6a10129e2275d79d6adac7f3b02.woff │ ├── 154da4697acc779b55af0a67f1241e4e.ttf │ ├── 2fd9c16b805724d590c0cff96da070a4.ttf │ ├── 332f555bb44cdc394d6c799df0c03389.woff │ ├── 3d4a907b1b7a232654324a3dd7ae4aa3.eot │ ├── 3f81521029cc8a9a703419c4a74704a0.woff │ ├── 4f6ff3639c1e5728b905b650c1a06e75.ttf │ ├── 68b0c4fcb84d239f261c1a5e65818142.gif │ ├── 846c191efd3d0aacde5a916cf2ebf1a4.woff │ ├── a165a42685795361b25593effb32fdb1.ttf │ ├── a37b0c01c0baf1888ca812cc0508f6e2.ttf │ ├── a77ade19de3d3762dfbf1fe553b293cc.eot │ ├── b467416c449eb823029e16347b2ea510.eot │ ├── c2183257e7a697769df4200c547551f1.woff │ ├── c5cd7f5300576ab4c88202b42f6ded62.gif │ ├── e79bfd88537def476913f3ed52f4f4b3.eot │ ├── eeb9224f85430652fd070e4e64129aa4.eot │ ├── 199038f07312bfc6f0aabd3ed6a2b64d.woff2 │ ├── 19c1b868764c0e4d15a45d3f61250488.woff2 │ ├── 570eb83859dc23dd0eec423a49e147fe.woff2 │ ├── 7a3ebca0cba2e2c6090e84e1d77e0f94.woff2 │ ├── a68cfe9d548950edf5df102269877edd.woff2 │ ├── theme.rtlfix │ ├── 90464e8f4507d7cc4dc4032c752c11fa.svg │ ├── 126b45cc418ea922d1a78af189061e2e.svg │ ├── fd22b6e5f1545ed1074b8723ddb00939.svg │ ├── 0139818ab4ac16ff52d2d029013cb338.svg │ ├── 91dacb450ecece35acc0acef32dfb0aa.svg │ ├── ddd449d2530e09f5988e6c77c5688f2c.svg │ ├── 7b652a3485cdc0d5a5c6fcddad221aa8.svg │ ├── c87b2ea048dbf0856519524fada18666.svg │ ├── 460c0b648256e282ed641282fe20f604.svg │ ├── 9c48dcbcd36d6c5b84c8be46ce841c81.svg │ ├── 8fcae0bddbfb915409359a59c81dd9e3.svg │ ├── 3935e107ea61866e60d7946dc6a962f1.svg │ ├── 8b05d51ede908907d65695558974d86f.svg │ ├── d3fbae74a276a9f6cf1d6241f29b61a3.svg │ ├── 7988be8b63edf9c4accebf94d5db7927.svg │ ├── afb2ed6d67613a724a420a39b4fe5b0d.svg │ ├── b1db819132e64a3e01911a1413c33acf.svg │ ├── 36bff72dcba3098b4b70b482b22c29ab.svg │ ├── 7c24d4275efcbe8891f78378b7c808e0.svg │ ├── c1a65805f759901a39d10eb854c1dcf2.svg │ ├── 36c755ebbafc8e434277d60c9ba6dc52.svg │ ├── 0266b05265f317a7409560b751cd61e8.svg │ ├── cf2f3c1d5c7cb02c29f61964313148e1.svg │ ├── 99db8adec61e4fcf5586e1afa549b432.svg │ ├── 3a2aeeba930cc29e4d31ebfa1b7cdaa2.svg │ ├── 082a71677e756fb75817e8f262a07cb4.svg │ ├── error.css │ └── f255af0bbbe837e79f7821827f9c6f10.svg ├── templates ├── errors │ ├── static │ │ ├── 500.html │ │ └── 503.html │ ├── forbidden.tpl │ ├── 404.tpl │ └── not-found.tpl ├── catalog │ ├── listing │ │ ├── search.tpl │ │ ├── best-sales.tpl │ │ ├── prices-drop.tpl │ │ ├── new-products.tpl │ │ ├── supplier.tpl │ │ └── manufacturer.tpl │ ├── _partials │ │ ├── products-bottom.tpl │ │ ├── variant-links.tpl │ │ ├── product-additional-info.tpl │ │ ├── miniatures │ │ │ ├── category.tpl │ │ │ └── brand.tpl │ │ ├── product-activation.tpl │ │ └── sort-orders.tpl │ ├── manufacturers.tpl │ ├── suppliers.tpl │ └── brands.tpl ├── _partials │ ├── font.tpl │ ├── form-errors.tpl │ ├── stylesheets.tpl │ └── javascript.tpl ├── checkout │ ├── checkout-process.tpl │ └── _partials │ │ ├── footer.tpl │ │ ├── steps │ │ └── unreachable.tpl │ │ ├── cart-summary-items-subtotal.tpl │ │ └── login-form.tpl ├── customer │ ├── identity.tpl │ ├── _partials │ │ └── my-account-links.tpl │ └── address.tpl ├── contact.tpl ├── layouts │ ├── layout-left-column.tpl │ ├── layout-right-column.tpl │ ├── layout-full-width.tpl │ └── layout-content-only.tpl ├── cms │ └── _partials │ │ └── sitemap-nested-list.tpl └── index.tpl ├── _dev ├── .htaccess ├── img │ ├── ajax-loader.gif │ ├── facebook-gray.svg │ ├── gplus-gray.svg │ ├── pinterest-gray.svg │ ├── facebook.svg │ ├── facebook-blue.svg │ ├── gplus.svg │ ├── gplus-blue.svg │ ├── pinterest.svg │ ├── pinterest-blue.svg │ ├── instagram.svg │ ├── rss.svg │ ├── vimeo.svg │ └── twitter-gray.svg ├── css │ ├── components │ │ ├── cart.scss │ │ ├── utilities.scss │ │ ├── renew-password.scss │ │ ├── footer.scss │ │ ├── block-reassurance.scss │ │ ├── customization-modal.scss │ │ ├── errors.scss │ │ ├── drop-down.scss │ │ ├── customer.scss │ │ ├── custom-text.scss │ │ ├── contact.scss │ │ ├── categories.scss │ │ ├── offcanvas.scss │ │ ├── slick-theme.scss │ │ ├── forgotten-password.scss │ │ ├── alert.scss │ │ ├── search-widget.scss │ │ ├── sitemap.scss │ │ └── quickview.scss │ ├── partials │ │ ├── bs_alpha.scss │ │ ├── lazysizes.scss │ │ ├── _mixins.scss │ │ └── _fonts.scss │ └── theme.scss ├── js │ ├── components │ │ └── slick.js │ └── customer.js ├── package.json └── postcss.config.js ├── config └── .htaccess ├── modules ├── ps_imageslider │ ├── css │ │ ├── homeslider.css │ │ └── index.php │ └── js │ │ ├── homeslider.js │ │ ├── responsiveslides.min.js │ │ └── index.php ├── ps_customtext │ └── ps_customtext.tpl ├── ps_advertising │ ├── ps_advertising.tpl │ └── index.php ├── ps_emailalerts │ └── views │ │ ├── templates │ │ ├── hook │ │ │ ├── my-account-footer.tpl │ │ │ ├── index.php │ │ │ └── my-account.tpl │ │ └── index.php │ │ └── index.php ├── ps_banner │ └── ps_banner.tpl ├── psgdpr │ └── views │ │ └── templates │ │ ├── hook │ │ └── index.php │ │ └── front │ │ └── index.php ├── ps_rssfeed │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ └── hook │ │ ├── index.php │ │ └── ps_rssfeed.tpl ├── ps_specials │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ └── hook │ │ └── index.php ├── ps_bestsellers │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ └── hook │ │ └── index.php ├── ps_brandlist │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ ├── hook │ │ └── index.php │ │ └── _partials │ │ ├── index.php │ │ ├── brand_text.tpl │ │ └── brand_form.tpl ├── ps_crossselling │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ └── hook │ │ ├── index.php │ │ └── ps_crossselling.tpl ├── ps_newproducts │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ └── hook │ │ └── index.php ├── ps_productinfo │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ └── hook │ │ └── index.php ├── ps_supplierlist │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ ├── hook │ │ └── index.php │ │ └── _partials │ │ ├── index.php │ │ ├── supplier_text.tpl │ │ └── supplier_form.tpl ├── ps_viewedproduct │ └── views │ │ ├── index.php │ │ └── template │ │ ├── hook │ │ ├── ps_viewedproduct.tpl │ │ └── index.php │ │ └── index.php ├── ps_categoryproducts │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── index.php │ │ └── hook │ │ └── index.php ├── ps_socialfollow │ └── ps_socialfollow.tpl ├── blockreassurance │ └── views │ │ └── templates │ │ └── hook │ │ └── blockreassurance.tpl └── ps_contactinfo │ └── nav.tpl ├── preview.png ├── dependencies └── modules │ └── ps_searchbarjqauto │ ├── logo.png │ ├── views │ ├── css │ │ ├── jquery.auto-complete.css │ │ └── index.php │ ├── js │ │ ├── ps_searchbarjqauto.js │ │ └── index.php │ └── templates │ │ └── hook │ │ └── index.php │ ├── index.php │ └── translations │ └── index.php └── plugins └── function.splitprice.php /prestarocket/assets/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/templates/errors/static/500.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/templates/errors/static/503.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /prestarocket/config/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_imageslider/css/homeslider.css: -------------------------------------------------------------------------------- 1 | /*homeslider*/ -------------------------------------------------------------------------------- /prestarocket/modules/ps_imageslider/js/homeslider.js: -------------------------------------------------------------------------------- 1 | /*! homeslider */ 2 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_imageslider/js/responsiveslides.min.js: -------------------------------------------------------------------------------- 1 | /*! homeslider */ -------------------------------------------------------------------------------- /prestarocket/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/preview.png -------------------------------------------------------------------------------- /prestarocket/assets/js/custom.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Custom code goes here. 3 | * A template should always ship with an empty custom.js 4 | */ 5 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/_dev/img/ajax-loader.gif -------------------------------------------------------------------------------- /prestarocket/assets/css/custom.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Custom code goes here. 3 | * A template should always ship with an empty custom.css 4 | */ 5 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/cart.scss: -------------------------------------------------------------------------------- 1 | .blockcart{ 2 | color:#fff; 3 | background-color: theme-color('primary'); 4 | padding:$spacer/2; 5 | } -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/utilities.scss: -------------------------------------------------------------------------------- 1 | img[data-lazy] { 2 | display: none; 3 | } 4 | .text-underline{ 5 | text-decoration: underline; 6 | } -------------------------------------------------------------------------------- /prestarocket/assets/css/012cf6a10129e2275d79d6adac7f3b02.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/012cf6a10129e2275d79d6adac7f3b02.woff -------------------------------------------------------------------------------- /prestarocket/assets/css/154da4697acc779b55af0a67f1241e4e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/154da4697acc779b55af0a67f1241e4e.ttf -------------------------------------------------------------------------------- /prestarocket/assets/css/2fd9c16b805724d590c0cff96da070a4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/2fd9c16b805724d590c0cff96da070a4.ttf -------------------------------------------------------------------------------- /prestarocket/assets/css/332f555bb44cdc394d6c799df0c03389.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/332f555bb44cdc394d6c799df0c03389.woff -------------------------------------------------------------------------------- /prestarocket/assets/css/3d4a907b1b7a232654324a3dd7ae4aa3.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/3d4a907b1b7a232654324a3dd7ae4aa3.eot -------------------------------------------------------------------------------- /prestarocket/assets/css/3f81521029cc8a9a703419c4a74704a0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/3f81521029cc8a9a703419c4a74704a0.woff -------------------------------------------------------------------------------- /prestarocket/assets/css/4f6ff3639c1e5728b905b650c1a06e75.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/4f6ff3639c1e5728b905b650c1a06e75.ttf -------------------------------------------------------------------------------- /prestarocket/assets/css/68b0c4fcb84d239f261c1a5e65818142.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/68b0c4fcb84d239f261c1a5e65818142.gif -------------------------------------------------------------------------------- /prestarocket/assets/css/846c191efd3d0aacde5a916cf2ebf1a4.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/846c191efd3d0aacde5a916cf2ebf1a4.woff -------------------------------------------------------------------------------- /prestarocket/assets/css/a165a42685795361b25593effb32fdb1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/a165a42685795361b25593effb32fdb1.ttf -------------------------------------------------------------------------------- /prestarocket/assets/css/a37b0c01c0baf1888ca812cc0508f6e2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/a37b0c01c0baf1888ca812cc0508f6e2.ttf -------------------------------------------------------------------------------- /prestarocket/assets/css/a77ade19de3d3762dfbf1fe553b293cc.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/a77ade19de3d3762dfbf1fe553b293cc.eot -------------------------------------------------------------------------------- /prestarocket/assets/css/b467416c449eb823029e16347b2ea510.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/b467416c449eb823029e16347b2ea510.eot -------------------------------------------------------------------------------- /prestarocket/assets/css/c2183257e7a697769df4200c547551f1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/c2183257e7a697769df4200c547551f1.woff -------------------------------------------------------------------------------- /prestarocket/assets/css/c5cd7f5300576ab4c88202b42f6ded62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/c5cd7f5300576ab4c88202b42f6ded62.gif -------------------------------------------------------------------------------- /prestarocket/assets/css/e79bfd88537def476913f3ed52f4f4b3.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/e79bfd88537def476913f3ed52f4f4b3.eot -------------------------------------------------------------------------------- /prestarocket/assets/css/eeb9224f85430652fd070e4e64129aa4.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/eeb9224f85430652fd070e4e64129aa4.eot -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/dependencies/modules/ps_searchbarjqauto/logo.png -------------------------------------------------------------------------------- /prestarocket/assets/css/199038f07312bfc6f0aabd3ed6a2b64d.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/199038f07312bfc6f0aabd3ed6a2b64d.woff2 -------------------------------------------------------------------------------- /prestarocket/assets/css/19c1b868764c0e4d15a45d3f61250488.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/19c1b868764c0e4d15a45d3f61250488.woff2 -------------------------------------------------------------------------------- /prestarocket/assets/css/570eb83859dc23dd0eec423a49e147fe.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/570eb83859dc23dd0eec423a49e147fe.woff2 -------------------------------------------------------------------------------- /prestarocket/assets/css/7a3ebca0cba2e2c6090e84e1d77e0f94.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/7a3ebca0cba2e2c6090e84e1d77e0f94.woff2 -------------------------------------------------------------------------------- /prestarocket/assets/css/a68cfe9d548950edf5df102269877edd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestarocket/prestarockettheme/HEAD/prestarocket/assets/css/a68cfe9d548950edf5df102269877edd.woff2 -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/renew-password.scss: -------------------------------------------------------------------------------- 1 | 2 | .renew-password { 3 | margin-left: 10px; 4 | 5 | .email { 6 | padding-bottom: 30px; 7 | } 8 | 9 | [type=submit] { 10 | margin-left: 50px; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/listing/search.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * This file allows you to customize your search page. 3 | * You can safely remove it if you want it to appear exactly like all other product listing pages 4 | *} 5 | {extends file='catalog/listing/product-list.tpl'} 6 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/listing/best-sales.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * This file allows you to customize your best-sales page. 3 | * You can safely remove it if you want it to appear exactly like all other product listing pages 4 | *} 5 | {extends file='catalog/listing/product-list.tpl'} 6 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/listing/prices-drop.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * This file allows you to customize your price-drop page. 3 | * You can safely remove it if you want it to appear exactly like all other product listing pages 4 | *} 5 | {extends file='catalog/listing/product-list.tpl'} 6 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/listing/new-products.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * This file allows you to customize your new-product page. 3 | * You can safely remove it if you want it to appear exactly like all other product listing pages 4 | *} 5 | {extends file='catalog/listing/product-list.tpl'} 6 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/_partials/products-bottom.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * Classic theme doesn't use this subtemplate, feel free to do whatever you need here. 3 | * This template is generated at each ajax calls. 4 | * See ProductListingFrontController::getAjaxProductSearchVariables() 5 | *} 6 |
7 | -------------------------------------------------------------------------------- /prestarocket/assets/css/theme.rtlfix: -------------------------------------------------------------------------------- 1 | .rtl-flip:not(.rtl-no-flip), .material-icons:not(.rtl-no-flip) { 2 | -moz-transform: scaleX(-1); 3 | -o-transform: scaleX(-1); 4 | -webkit-transform: scaleX(-1); 5 | transform: scaleX(-1); 6 | filter: FlipH; 7 | -ms-filter: "FlipH"; 8 | } 9 | .magnitude:before { 10 | content: "?"; 11 | opacity: 0; 12 | } -------------------------------------------------------------------------------- /prestarocket/_dev/img/facebook-gray.svg: -------------------------------------------------------------------------------- 1 | Artboard 3 -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/footer.scss: -------------------------------------------------------------------------------- 1 | .l-footer { 2 | color: $text-muted; 3 | 4 | .title{ 5 | color:$black; 6 | text-transform: uppercase; 7 | display: block; 8 | @extend .h3; 9 | } 10 | .cms-page-link, 11 | .account-list a{ 12 | color: $text-muted; 13 | &:hover{ 14 | color: theme-color('primary'); 15 | 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /prestarocket/assets/css/90464e8f4507d7cc4dc4032c752c11fa.svg: -------------------------------------------------------------------------------- 1 | Artboard 3 -------------------------------------------------------------------------------- /prestarocket/_dev/img/gplus-gray.svg: -------------------------------------------------------------------------------- 1 | Artboard 3 Copy -------------------------------------------------------------------------------- /prestarocket/_dev/img/pinterest-gray.svg: -------------------------------------------------------------------------------- 1 | Artboard 3 Copy 2 -------------------------------------------------------------------------------- /prestarocket/assets/css/126b45cc418ea922d1a78af189061e2e.svg: -------------------------------------------------------------------------------- 1 | Artboard 3 Copy -------------------------------------------------------------------------------- /prestarocket/assets/css/fd22b6e5f1545ed1074b8723ddb00939.svg: -------------------------------------------------------------------------------- 1 | Artboard 3 Copy 2 -------------------------------------------------------------------------------- /prestarocket/_dev/img/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/facebook-blue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/assets/css/0139818ab4ac16ff52d2d029013cb338.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/assets/css/91dacb450ecece35acc0acef32dfb0aa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/block-reassurance.scss: -------------------------------------------------------------------------------- 1 | #block-reassurance{ 2 | margin-top: 2rem; 3 | img{ 4 | width: 1.563rem; 5 | margin-right: 0.625rem; 6 | } 7 | li{ 8 | border-bottom: 1px solid rgba(0, 0, 0, 0.25); 9 | 10 | &:last-child { 11 | border: 0; 12 | } 13 | } 14 | li .block-reassurance-item{ 15 | padding: 1rem 1.5rem; 16 | } 17 | #product &{ 18 | @include box-shadow; 19 | background: white; 20 | span{ 21 | font-weight: 700; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/partials/bs_alpha.scss: -------------------------------------------------------------------------------- 1 | 2 | .col-xs-12{ 3 | @extend .col-12; 4 | } 5 | 6 | .float-xs-left { @extend .float-left; } 7 | .float-xs-right { @extend .float-right; } 8 | .float-xs-none { @extend .float-none; } 9 | 10 | @each $bp in map-keys($grid-breakpoints) { 11 | .hidden-#{$bp}-up { 12 | @include media-breakpoint-up($bp) { 13 | display: none !important; 14 | } 15 | } 16 | .hidden-#{$bp}-down { 17 | @include media-breakpoint-down($bp) { 18 | display: none !important; 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /prestarocket/_dev/img/gplus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/gplus-blue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/pinterest.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/assets/css/ddd449d2530e09f5988e6c77c5688f2c.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/assets/css/7b652a3485cdc0d5a5c6fcddad221aa8.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/pinterest-blue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/assets/css/c87b2ea048dbf0856519524fada18666.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/assets/css/460c0b648256e282ed641282fe20f604.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/customization-modal.scss: -------------------------------------------------------------------------------- 1 | .customization-modal { 2 | .modal-content { 3 | border-radius: 0; 4 | border: 1px solid $gray-lighter; 5 | .modal-body { 6 | padding-top: 0; 7 | .product-customization-line { 8 | .label { 9 | font-weight: bold; 10 | text-align: right; 11 | } 12 | padding-bottom: 0.9375rem; 13 | padding-top: 0.9375rem; 14 | border-bottom: 1px solid $gray-lighter; 15 | &:last-child { 16 | padding-bottom: 0; 17 | border-bottom: 0; 18 | } 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/instagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/rss.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/errors.scss: -------------------------------------------------------------------------------- 1 | #products, 2 | #pagenotfound { 3 | #main { 4 | .page-header { 5 | margin: 2rem 0 3rem; 6 | } 7 | .page-content { 8 | margin-bottom: 10rem; 9 | } 10 | } 11 | .page-not-found { 12 | @include box-shadow; 13 | background: white; 14 | padding: 1rem; 15 | font-size: $font-size-sm; 16 | color: $gray; 17 | max-width: 570px; 18 | margin: 0 auto; 19 | h4 { 20 | font-size: $base-font-size; 21 | font-weight: 700; 22 | margin: 0.5rem 0 1rem; 23 | } 24 | .search-widget { 25 | float: none; 26 | input { 27 | width: 100%; 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /prestarocket/assets/css/9c48dcbcd36d6c5b84c8be46ce841c81.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/drop-down.scss: -------------------------------------------------------------------------------- 1 | .dropdown{ 2 | color:$gray; 3 | &:hover .expand-more{ 4 | color: $brand-primary; 5 | } 6 | .expand-more{ 7 | color: $gray-darker; 8 | cursor: pointer; 9 | user-select: none; 10 | 11 | } 12 | 13 | .active{ 14 | max-height: 200px; 15 | overflow-y: hidden; 16 | visibility: visible; 17 | } 18 | 19 | select { 20 | -moz-appearance: none; 21 | border: 0 none; 22 | outline: 0 none; 23 | color: $gray-darker; 24 | background: white; 25 | } 26 | } 27 | 28 | .dropdown-item:focus, .dropdown-item:hover { 29 | background: none; 30 | text-decoration: none; 31 | color: $brand-primary; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /prestarocket/assets/css/8fcae0bddbfb915409359a59c81dd9e3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/templates/_partials/font.tpl: -------------------------------------------------------------------------------- 1 | {literal} 2 | 3 | 4 | 16 | {/literal} -------------------------------------------------------------------------------- /prestarocket/_dev/css/partials/lazysizes.scss: -------------------------------------------------------------------------------- 1 | .no-js img.lazyload { 2 | display: none; 3 | } 4 | 5 | .lazyload, 6 | .lazyloading { 7 | opacity: 0; 8 | 9 | } 10 | .lazyloaded { 11 | opacity: 1; 12 | transition: opacity 500ms; 13 | } 14 | 15 | //lazysizes with slick slider 16 | .slick-slide{ 17 | &.lazyload{ 18 | display: none!important; 19 | } 20 | & .lazyload{ 21 | display: none!important; 22 | } 23 | } 24 | 25 | .slick-active, 26 | //weird bug slick slider don t add slick active sometimes 27 | .slick-current, 28 | .slick-current + .slick-slide{ 29 | &.lazyload{ 30 | display: block!important; 31 | } 32 | & .lazyload{ 33 | display: block!important; 34 | } 35 | } 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/theme.scss: -------------------------------------------------------------------------------- 1 | @import "partials/variables"; 2 | @import "bootstrap"; 3 | @import "partials/custom_variables"; 4 | @import "partials/fonts"; 5 | @import "partials/commons"; 6 | @import "partials/lazysizes"; 7 | @import "components/alert"; 8 | @import "components/cart"; 9 | @import "components/slick"; 10 | @import "components/slick-theme"; 11 | @import "components/customer"; 12 | @import "components/imageslider"; 13 | @import "components/products"; 14 | @import "components/categories"; 15 | @import "components/utilities"; 16 | @import "components/offcanvas"; 17 | @import "components/footer"; 18 | @import "components/block-social"; 19 | @import "components/mainmenu"; 20 | @import "partials/bs_alpha"; 21 | 22 | -------------------------------------------------------------------------------- /prestarocket/_dev/js/components/slick.js: -------------------------------------------------------------------------------- 1 | import $ from 'jquery'; 2 | 3 | 4 | export default class SlickSlider { 5 | init() { 6 | $('[data-slick]').not('.slick-initialized').each(function() { 7 | let self = $( this ); 8 | if(self.data('count') === 1){ 9 | return; 10 | } 11 | 12 | self.slick({ 13 | prevArrow:"", 14 | nextArrow:"" 15 | 16 | }); 17 | }); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/customer.scss: -------------------------------------------------------------------------------- 1 | .account-links{ 2 | @extend .align-items-stretch; 3 | > a{ 4 | margin-bottom: $spacer; 5 | } 6 | .link-item{ 7 | @extend .card; 8 | @extend .shadow; 9 | padding: $spacer; 10 | text-align: center; 11 | text-transform: uppercase; 12 | font-weight: 700; 13 | height: 100%; 14 | i{ 15 | margin: 0 auto $spacer; 16 | font-size: $font-size-base*3; 17 | 18 | } 19 | } 20 | } 21 | 22 | .address{ 23 | @extend .card; 24 | } 25 | .address-header{ 26 | @extend .card-header; 27 | background-color: transparent; 28 | } 29 | .address-body{ 30 | @extend .card-body; 31 | } 32 | .address-footer{ 33 | @extend .card-footer; 34 | display: flex; 35 | justify-content: space-between; 36 | 37 | } -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/custom-text.scss: -------------------------------------------------------------------------------- 1 | #custom-text { 2 | background: white; 3 | border-radius: 2px; 4 | margin-bottom: 1.5rem; 5 | padding: 3.125rem 3.125rem; 6 | text-align: center; 7 | h3 { 8 | text-transform: uppercase; 9 | color: $gray-darker; 10 | font-size: 1.563rem; 11 | font-weight: 700; 12 | } 13 | p { 14 | color: $gray-darker; 15 | font-weight: 400; 16 | font-size: 1.1em; 17 | .dark { 18 | color: $gray; 19 | font-weight: 400; 20 | } 21 | } 22 | } 23 | .page-content.page-cms{ 24 | background: white; 25 | padding: 1.25rem; 26 | text-align: justify; 27 | .cms-box{ 28 | img{ 29 | max-width: 100%; 30 | } 31 | } 32 | } 33 | @include media-breakpoint-down(md) { 34 | #block-cmsinfo { 35 | padding: $medium-space $large-space; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/contact.scss: -------------------------------------------------------------------------------- 1 | .contact-rich { 2 | color: $gray; 3 | margin-bottom: 2rem; 4 | word-wrap: break-word; 5 | h4 { 6 | text-transform: uppercase; 7 | color: $gray-darker; 8 | margin-bottom: 2rem; 9 | } 10 | .block { 11 | height: auto; 12 | overflow: hidden; 13 | .icon { 14 | float: left; 15 | width: 3.5rem; 16 | i { 17 | font-size: 2rem; 18 | } 19 | } 20 | .data { 21 | color: $gray-darker; 22 | font-size: $font-size-sm; 23 | width: auto; 24 | overflow: hidden; 25 | &.email{ 26 | padding-top: 0.375rem; 27 | } 28 | } 29 | } 30 | } 31 | .contact-form { 32 | background: white; 33 | padding: 1rem; 34 | color: $gray; 35 | width: 100%; 36 | h3 { 37 | text-transform: uppercase; 38 | color: $gray-darker; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/categories.scss: -------------------------------------------------------------------------------- 1 | .block-categories { 2 | @extend .card; 3 | } 4 | 5 | .block-categories{ 6 | @extend .card-body; 7 | } 8 | 9 | .block-categories { 10 | @extend .shadow; 11 | } 12 | 13 | 14 | .left-column .search_filters { 15 | @extend .card-block; 16 | } 17 | 18 | //facets colors 19 | .custom-color{ 20 | &.custom-control{ 21 | padding-left: 0; 22 | } 23 | .custom-control-label:before, 24 | .custom-control-label:after 25 | { 26 | display:none 27 | } 28 | .color{ 29 | margin-right: $custom-control-gutter - $custom-control-spacer-x; 30 | 31 | } 32 | } 33 | 34 | .facet-block:not(:last-child){ 35 | margin-bottom: $spacer; 36 | border-bottom: 1px solid $card-border-color; 37 | padding-bottom: $spacer; 38 | } 39 | .facet-block{ 40 | .remove{ 41 | display: none; 42 | } 43 | } 44 | 45 | .active_filters{ 46 | background-color: $bg-dark; 47 | } -------------------------------------------------------------------------------- /prestarocket/assets/css/3935e107ea61866e60d7946dc6a962f1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /prestarocket/assets/css/8b05d51ede908907d65695558974d86f.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /prestarocket/assets/css/d3fbae74a276a9f6cf1d6241f29b61a3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/offcanvas.scss: -------------------------------------------------------------------------------- 1 | .modal.fade .modal-dialog__offcanvas 2 | { 3 | width: 350px; 4 | height: 100%; 5 | margin: 0; 6 | max-width: 90%; 7 | position: absolute; 8 | top: 0; 9 | //left:0; 10 | transform: translateX(-100%); 11 | transition: transform .3s ease-out; 12 | } 13 | .modal.show .modal-dialog__offcanvas 14 | { 15 | transform: translateX(0); 16 | } 17 | .modal.fade .modal-dialog__offcanvas.modal-dialog__offcanvas--right 18 | { 19 | right: 0; 20 | transform: translateX(100%); 21 | } 22 | .modal.show .modal-dialog__offcanvas.modal-dialog__offcanvas--right 23 | { 24 | transform: translateX(0); 25 | } 26 | 27 | .modal-dialog__offcanvas .modal-content 28 | { 29 | height: inherit; 30 | 31 | border-width: 0; 32 | border-radius: 0; 33 | } 34 | .modal-dialog__offcanvas .modal-header 35 | { 36 | border-radius: inherit; 37 | } 38 | .modal-dialog__offcanvas .modal-body 39 | { 40 | overflow-y: auto; 41 | 42 | height: inherit; 43 | } 44 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/vimeo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/slick-theme.scss: -------------------------------------------------------------------------------- 1 | .slick-arrow { 2 | position: absolute; 3 | top:0; 4 | height: 100%; 5 | display: flex; 6 | flex-direction: column; 7 | justify-content: center; 8 | padding-top: 0; 9 | padding-bottom: 0; 10 | z-index: 2; 11 | 12 | & > i{ 13 | font-size: 2*$font-size-base; 14 | line-height: 1; 15 | background: #fff; 16 | border-radius: 50%; 17 | } 18 | 19 | } 20 | .slick-prev { 21 | left:0; 22 | } 23 | .slick-next{ 24 | right:0; 25 | } 26 | .slick-slide figure{ 27 | margin: 0; 28 | } 29 | .slick__arrow-outside { 30 | .slick-prev { 31 | transform:translateX(-50px); 32 | } 33 | .slick-next{ 34 | transform:translateX(50px); 35 | } 36 | } 37 | .slick__arrow-large{ 38 | .slick-arrow i{ 39 | font-size: 3*$font-size-base; 40 | text-shadow: 0 1px 2px rgba(0,0,0,.6); 41 | background: transparent; 42 | color: #fff; 43 | } 44 | } -------------------------------------------------------------------------------- /prestarocket/assets/css/7988be8b63edf9c4accebf94d5db7927.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/assets/css/afb2ed6d67613a724a420a39b4fe5b0d.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/assets/css/b1db819132e64a3e01911a1413c33acf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/forgotten-password.scss: -------------------------------------------------------------------------------- 1 | 2 | .forgotten-password { 3 | padding: 4px; 4 | 5 | .form-fields { 6 | 7 | .center-email-fields { 8 | display: flex; 9 | justify-content: center; 10 | 11 | @media (max-width: 767px) { 12 | flex-direction: column; 13 | 14 | button { 15 | margin: 10px; 16 | width: calc(100% - 20px); 17 | } 18 | } 19 | 20 | button { 21 | height: 38px; 22 | } 23 | } 24 | 25 | .email { 26 | padding-left: 0; 27 | padding-right: 0; 28 | width: 430px; 29 | 30 | @media (max-width: 767px) { 31 | padding-left: 10px; 32 | padding-right: 10px; 33 | width: 100%; 34 | } 35 | 36 | input { 37 | height: 38px; 38 | } 39 | } 40 | 41 | label.required { 42 | width: 130px; 43 | } 44 | } 45 | } 46 | 47 | .send-renew-password-link { 48 | padding-left: 10px; 49 | padding-right: 10px; 50 | } 51 | -------------------------------------------------------------------------------- /prestarocket/assets/css/36bff72dcba3098b4b70b482b22c29ab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/assets/css/7c24d4275efcbe8891f78378b7c808e0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/assets/css/c1a65805f759901a39d10eb854c1dcf2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/partials/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin search-box { 2 | form { 3 | position: relative; 4 | input[type=text] { 5 | &:focus { 6 | outline: 3px $brand-primary solid; 7 | color: $gray-darker; 8 | background: white; 9 | + button .search { 10 | color: $brand-primary; 11 | } 12 | } 13 | border: none; 14 | padding: 10px; 15 | min-width: 255px; 16 | color: $gray; 17 | border: $input-btn-border-width solid $input-border-color; 18 | } 19 | button[type=submit] { 20 | position: absolute; 21 | background: none; 22 | border: none; 23 | bottom: 0.3125rem; 24 | right: 0.125rem; 25 | color: $gray; 26 | .search:hover { 27 | color: $brand-primary; 28 | } 29 | } 30 | } 31 | } 32 | 33 | @mixin box-shadow { 34 | box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2); 35 | } 36 | 37 | @mixin box-shadow-light { 38 | box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2); 39 | } 40 | -------------------------------------------------------------------------------- /prestarocket/assets/css/36c755ebbafc8e434277d60c9ba6dc52.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/views/css/jquery.auto-complete.css: -------------------------------------------------------------------------------- 1 | .autocomplete-suggestions { 2 | text-align: left; 3 | cursor: default; 4 | border: 1px solid rgba(160, 160, 160, 0.25); 5 | border-top: 0; 6 | background: #fff; 7 | box-shadow: -1px 1px 3px rgba(0, 0, 0, .1); 8 | 9 | /* core styles should not be changed */ 10 | position: absolute; 11 | display: none; 12 | z-index: 9999; 13 | max-height: 254px; 14 | overflow: hidden; 15 | overflow-y: auto; 16 | box-sizing: border-box; 17 | } 18 | .autocomplete-suggestion { 19 | 20 | text-overflow: ellipsis; 21 | font-size: small; 22 | border-top: 1px solid rgba(160, 160, 160, 0.25); 23 | cursor: pointer; 24 | 25 | } 26 | .autocomplete-suggestion img{ 27 | 28 | max-width: 50px; 29 | max-height: 50px; 30 | 31 | } 32 | .autocomplete-suggestion:first-child { 33 | border-top: none; 34 | } 35 | .autocomplete-suggestion.selected { 36 | background: rgba(160, 160, 160, 0.25); 37 | } 38 | -------------------------------------------------------------------------------- /prestarocket/_dev/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "prestarocket-dev-tools", 3 | "version": "1.0.0", 4 | "description": "Tools to help while developing the Classic theme", 5 | "main": "index.js", 6 | "scripts": { 7 | "watch": "webpack -w", 8 | "build": "webpack" 9 | }, 10 | "author": "Prestarocket", 11 | "license": "AFL-3.0", 12 | "devDependencies": { 13 | "autoprefixer": "^6.7.7", 14 | "babel-loader": "^5.3.2", 15 | "bootstrap": "4.1.2", 16 | "bootstrap-touchspin": "^3.1.1", 17 | "css-loader": "^0.27.3", 18 | "expose-loader": "^0.7.3", 19 | "extract-text-webpack-plugin": "^2.1.0", 20 | "file-loader": "^0.10.1", 21 | "flexibility": "^1.0.5", 22 | "jquery": "^2.1.4", 23 | "lazysizes": "^4.0.2", 24 | "material-design-icons": "^2.1.3", 25 | "node-sass": "^4.5.0", 26 | "popper.js": "^1.14.3", 27 | "postcss-flexibility": "^1.0.2", 28 | "postcss-loader": "^1.3.3", 29 | "sass-loader": "^6.0.3", 30 | "style-loader": "^0.14.0", 31 | "webpack": "^2.2.1", 32 | "webpack-sources": "^0.1.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/_partials/variant-links.tpl: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/alert.scss: -------------------------------------------------------------------------------- 1 | .ps-alert-error { 2 | margin-bottom: 0; 3 | } 4 | 5 | .ps-alert-error, 6 | .ps-alert-success { 7 | .item { 8 | align-items: center; 9 | border: 2px theme-color('danger') solid; 10 | display: flex; 11 | background-color: theme-color('danger'); 12 | margin-bottom: $spacer; 13 | 14 | i { 15 | border: 15px theme-color('danger') solid; 16 | display: flex; 17 | 18 | svg { 19 | background-color: theme-color('danger'); 20 | width: 24px; 21 | height: 24px; 22 | } 23 | } 24 | 25 | p { 26 | background-color: $body-bg; 27 | margin: 0; 28 | padding: $spacer; 29 | width: 100%; 30 | } 31 | } 32 | } 33 | 34 | .ps-alert-success { 35 | padding: 0.25rem 0.25rem 2.75rem 0.25rem; 36 | 37 | .item { 38 | border-color: theme-color('success'); 39 | background-color: theme-color('success'); 40 | 41 | i { 42 | border-color: theme-color('success'); 43 | 44 | svg { 45 | background-color: theme-color('success'); 46 | } 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /prestarocket/assets/css/0266b05265f317a7409560b751cd61e8.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/assets/css/cf2f3c1d5c7cb02c29f61964313148e1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/search-widget.scss: -------------------------------------------------------------------------------- 1 | .search-widget { 2 | display: inline-block; 3 | @include search-box; 4 | } 5 | .header-top { 6 | .search-widget { 7 | form { 8 | input[type="text"] { 9 | min-width: inherit; 10 | width: 100%; 11 | } 12 | } 13 | } 14 | } 15 | #checkout { 16 | #search_widget { 17 | display: none; /* Not ideal solution by allows to reuse same hooks/templates */ 18 | } 19 | } 20 | 21 | #pagenotfound { 22 | .page-content { 23 | #search_widget { 24 | width: 100%; 25 | } 26 | } 27 | } 28 | 29 | .page-not-found { 30 | .search-widget { 31 | form { 32 | display: inline-block; 33 | } 34 | } 35 | } 36 | 37 | /*** Responsive part ***/ 38 | @include media-breakpoint-down(sm) { 39 | .header-top { 40 | .search-widget { 41 | float: none; 42 | form { 43 | margin: 0 auto; 44 | input[type="text"] { 45 | min-width: inherit; 46 | background: white; 47 | } 48 | } 49 | } 50 | } 51 | } 52 | @include media-breakpoint-up(md) { 53 | .search-widget { 54 | min-width: 15.63rem; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/manufacturers.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='catalog/brands.tpl'} 26 | -------------------------------------------------------------------------------- /prestarocket/_dev/postcss.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | */ 25 | module.exports = { 26 | plugins: [ 27 | require('autoprefixer') 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /prestarocket/templates/errors/forbidden.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file=$layout} 26 | 27 | {block name='content'} 28 |
29 |
30 | {/block} 31 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_customtext/ps_customtext.tpl: -------------------------------------------------------------------------------- 1 | {* 2 | * 2007-2015 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License (AFL 3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * http://opensource.org/licenses/afl-3.0.php 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2015 PrestaShop SA 22 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 |
27 |
28 | {$cms_infos.text nofilter} 29 |
30 |
31 | -------------------------------------------------------------------------------- /prestarocket/assets/css/99db8adec61e4fcf5586e1afa549b432.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Artboard 3 Copy 2 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/_partials/product-additional-info.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 |
26 | {hook h='displayProductAdditionalInfo' product=$product} 27 |
28 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/suppliers.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='catalog/brands.tpl'} 26 | 27 | {block name='brand_header'} 28 |

{l s='Suppliers' d='Shop.Theme.Catalog'}

29 | {/block} 30 | -------------------------------------------------------------------------------- /prestarocket/assets/css/3a2aeeba930cc29e4d31ebfa1b7cdaa2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Artboard 3 Copy 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_advertising/ps_advertising.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2018 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2018 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 |
27 | {$adv_title} 28 |
29 | -------------------------------------------------------------------------------- /prestarocket/assets/css/082a71677e756fb75817e8f262a07cb4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Artboard 3 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /prestarocket/templates/errors/404.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='page.tpl'} 26 | 27 | {block name='page_title'} 28 | {$page.title} 29 | {/block} 30 | 31 | {block name='page_content_container'} 32 | {include file='errors/not-found.tpl'} 33 | {/block} 34 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/sitemap.scss: -------------------------------------------------------------------------------- 1 | $heightLine: $line-height-base*$font-size-base ; 2 | 3 | 4 | // 5 | //.sitemap > li > ul { 6 | // margin-top: $heightLine ; 7 | // 8 | //} 9 | 10 | .sitemap ul { 11 | 12 | 13 | & > li > ul { 14 | margin-top: $heightLine ; 15 | } 16 | 17 | li { 18 | line-height: $heightLine ; 19 | vertical-align: top ; 20 | position: relative ; 21 | 22 | a { 23 | text-decoration: none ; 24 | display: inline-block ; 25 | 26 | } 27 | } 28 | 29 | 30 | ul { 31 | margin-left: $heightLine ; 32 | margin-bottom: $heightLine ; 33 | 34 | 35 | li { 36 | position: relative ; 37 | &::before { 38 | content: "" ; 39 | display: inline-block ; 40 | width: $heightLine * 2 ; 41 | height: 100% ; 42 | border-left: 1px #ccc solid ; 43 | position: absolute ; 44 | top: -$heightLine / 2 ; 45 | } 46 | 47 | 48 | &::before { 49 | content: "" ; 50 | display: inline-block ; 51 | width: $heightLine * 2 ; 52 | height: $heightLine ; 53 | border-bottom: 1px #ccc solid ; 54 | position: absolute ; 55 | top: -$heightLine / 2 ; 56 | } 57 | a { 58 | margin-left: $heightLine * 2.5 ; 59 | } 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/views/js/ps_searchbarjqauto.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function () { 2 | var $searchWidget = $('[data-search-widget]'), 3 | $searchBox = $searchWidget.find('input[type=text]'), 4 | searchURL = $searchWidget.attr('data-search-controller-url'); 5 | 6 | $searchBox.autoComplete({ 7 | minChars: 3, 8 | source: function (query, response) { 9 | $.post(searchURL, { 10 | s: query, 11 | resultsPerPage: 10 12 | }, null, 'json') 13 | .then(function (resp) { 14 | response(resp.products); 15 | }) 16 | .fail(response); 17 | }, 18 | renderItem: function (product, search) { 19 | 20 | return '
' + 21 | '' + 22 | '
' + product.name + '
' + 23 | '
'; 24 | }, 25 | onSelect: function (e, term, item) { 26 | window.location.href = item.data('url'); 27 | } 28 | }); 29 | }); -------------------------------------------------------------------------------- /prestarocket/templates/checkout/checkout-process.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 |
26 | {foreach from=$steps item="step" key="index"} 27 | {render identifier = $step.identifier 28 | position = ($index + 1) 29 | ui = $step.ui 30 | } 31 | {/foreach} 32 |
-------------------------------------------------------------------------------- /prestarocket/modules/ps_emailalerts/views/templates/hook/my-account-footer.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 |
  • 27 | 28 | {l s='My alerts' d='Shop.Theme.Catalog'} 29 | 30 |
  • 31 | -------------------------------------------------------------------------------- /prestarocket/assets/css/error.css: -------------------------------------------------------------------------------- 1 | #body { 2 | background-color: #F7F7F7; } 3 | 4 | #layout-error { 5 | text-align: center; 6 | margin: 50px 0 0 0; 7 | background-color: #fff; 8 | -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); 9 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); 10 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); } 11 | @media (min-width: 1200px) { 12 | #layout-error { 13 | margin: 126px 0 0 0; 14 | padding: 50px; } } 15 | #layout-error .logo { 16 | margin: 0 0 31px 0; 17 | text-align: center; } 18 | #layout-error h1 { 19 | font: 24px sans-serif; 20 | color: #333; 21 | padding: 0 0 14px 0; 22 | margin: 0 0 19px 0; } 23 | #layout-error h2 { 24 | font: 20px sans-serif; 25 | color: #333; 26 | padding: 0 0 14px 0; 27 | margin: 0 0 19px 0; } 28 | #layout-error .page-content { 29 | font: 16px sans-serif; 30 | color: #555454; 31 | text-align: center; } 32 | 33 | #layout-error { 34 | padding: 50px 15px; 35 | margin-right: auto; 36 | margin-left: auto; } 37 | 38 | @media (min-width: 768px) { 39 | #layout-error { 40 | width: 500px; } } 41 | @media (min-width: 992px) { 42 | #layout-error { 43 | width: 500px; } } 44 | @media (min-width: 1200px) { 45 | #layout-error { 46 | width: 500px; } } 47 | @media only screen and (min-width: 1200px) { 48 | #layout-error { 49 | padding-left: 0; 50 | padding-right: 0; } } 51 | -------------------------------------------------------------------------------- /prestarocket/templates/checkout/_partials/footer.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {block name='footer'} 26 |
    27 | {l s='%copyright% %year% - Ecommerce software by %prestashop%' sprintf=['%prestashop%' => 'PrestaShop™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme.Global'} 28 |
    29 | {/block} 30 | -------------------------------------------------------------------------------- /prestarocket/templates/customer/identity.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends 'customer/page.tpl'} 26 | 27 | {block name='page_title'} 28 | {l s='Your personal information' d='Shop.Theme.Customeraccount'} 29 | {/block} 30 | 31 | {block name='page_content'} 32 | {render file='customer/_partials/customer-form.tpl' ui=$customer_form} 33 | {/block} 34 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_banner/ps_banner.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 32 | -------------------------------------------------------------------------------- /prestarocket/templates/_partials/form-errors.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {if $errors|count} 26 |
    27 | {block name='form_errors'} 28 |
      29 | {foreach $errors as $error} 30 |
    • {$error}
    • 31 | {/foreach} 32 |
    33 | {/block} 34 |
    35 | {/if} 36 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/listing/supplier.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='catalog/listing/product-list.tpl'} 26 | 27 | {block name='product_list_header'} 28 |

    {l s='List of products by supplier %s' sprintf=[$supplier.name] d='Shop.Theme.Catalog'}

    29 |
    {$supplier.description nofilter}
    30 | {/block} 31 | -------------------------------------------------------------------------------- /prestarocket/templates/checkout/_partials/steps/unreachable.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {block name='step'} 26 |
    27 |
    28 |

    29 | {$position} {$title} 30 |

    31 |
    32 |
    33 | {/block} 34 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_advertising/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2018 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_imageslider/css/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2015 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; -------------------------------------------------------------------------------- /prestarocket/templates/checkout/_partials/cart-summary-items-subtotal.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {block name='cart_summary_items_subtotal'} 26 |
    27 | {$cart.summary_string} 28 | {$cart.subtotals.products.amount} 29 |
    30 | {/block} 31 | -------------------------------------------------------------------------------- /prestarocket/modules/psgdpr/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2018 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/views/js/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2015 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; -------------------------------------------------------------------------------- /prestarocket/modules/ps_imageslider/js/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2015 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; -------------------------------------------------------------------------------- /prestarocket/modules/psgdpr/views/templates/front/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2018 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/templates/contact.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='page.tpl'} 26 | 27 | {block name='page_header_container'}{/block} 28 | 29 | {block name='left_column'} 30 |
    31 | {widget name="ps_contactinfo" hook='displayLeftColumn'} 32 |
    33 | {/block} 34 | 35 | {block name='page_content'} 36 | {widget name="contactform"} 37 | {/block} 38 | -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/views/css/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2015 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; -------------------------------------------------------------------------------- /prestarocket/modules/ps_rssfeed/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_specials/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_bestsellers/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_brandlist/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_crossselling/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_emailalerts/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_newproducts/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_productinfo/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_supplierlist/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_viewedproduct/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2015 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2015 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; -------------------------------------------------------------------------------- /prestarocket/modules/ps_categoryproducts/views/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_emailalerts/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 27 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 28 | 29 | header('Cache-Control: no-store, no-cache, must-revalidate'); 30 | header('Cache-Control: post-check=0, pre-check=0', false); 31 | header('Pragma: no-cache'); 32 | 33 | header('Location: ../'); 34 | exit; 35 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_rssfeed/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_specials/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_viewedproduct/views/template/hook/ps_viewedproduct.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 33 | -------------------------------------------------------------------------------- /prestarocket/templates/checkout/_partials/login-form.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='customer/_partials/login-form.tpl'} 26 | 27 | {block name='form_buttons'} 28 | 37 | {/block} 38 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_bestsellers/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_brandlist/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_crossselling/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_emailalerts/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 27 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 28 | 29 | header('Cache-Control: no-store, no-cache, must-revalidate'); 30 | header('Cache-Control: post-check=0, pre-check=0', false); 31 | header('Pragma: no-cache'); 32 | 33 | header('Location: ../'); 34 | exit; 35 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_newproducts/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_productinfo/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_rssfeed/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_specials/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_supplierlist/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_viewedproduct/views/template/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/dependencies/modules/ps_searchbarjqauto/translations/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2015 PrestaShop SA 23 | * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; -------------------------------------------------------------------------------- /prestarocket/modules/ps_bestsellers/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_brandlist/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_categoryproducts/views/templates/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_crossselling/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_newproducts/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_productinfo/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_supplierlist/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_viewedproduct/views/template/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_brandlist/views/templates/_partials/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_categoryproducts/views/templates/hook/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 28 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 29 | 30 | header('Cache-Control: no-store, no-cache, must-revalidate'); 31 | header('Cache-Control: post-check=0, pre-check=0', false); 32 | header('Pragma: no-cache'); 33 | 34 | header('Location: ../'); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_supplierlist/views/templates/_partials/index.php: -------------------------------------------------------------------------------- 1 | 22 | * @copyright 2007-2017 PrestaShop SA 23 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 24 | * International Registered Trademark & Property of PrestaShop SA 25 | */ 26 | 27 | header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 28 | header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); 29 | 30 | header("Cache-Control: no-store, no-cache, must-revalidate"); 31 | header("Cache-Control: post-check=0, pre-check=0", false); 32 | header("Pragma: no-cache"); 33 | 34 | header("Location: ../"); 35 | exit; 36 | -------------------------------------------------------------------------------- /prestarocket/_dev/css/components/quickview.scss: -------------------------------------------------------------------------------- 1 | .quickview { 2 | .modal-dialog { 3 | width: calc(100% - 30px); 4 | max-width: 64rem; 5 | } 6 | .modal-content { 7 | background: $gray-light; 8 | min-height: 28.13rem; 9 | } 10 | .modal-header { 11 | border: none; 12 | padding: $small-space; 13 | } 14 | .modal-body { 15 | min-height: 23.75rem; 16 | } 17 | .modal-footer { 18 | border-top: 1px solid rgba($gray,.3); 19 | } 20 | .layer { 21 | display: none; 22 | } 23 | .product-cover img { 24 | width: 95%; 25 | } 26 | .images-container { 27 | display: flex; 28 | z-index: 1; 29 | min-height: 21.88rem; 30 | .product-images > li.thumb-container > .thumb { 31 | width: 100%; 32 | max-width: 4.938rem; 33 | margin-bottom: 0.8125rem; 34 | background: white; 35 | } 36 | } 37 | .mask { 38 | width: 35%; 39 | max-height: 22.5rem; 40 | overflow: hidden; 41 | margin-left: $small-space; 42 | } 43 | .arrows { 44 | position: absolute; 45 | top: 0; 46 | bottom: 0; 47 | max-height: 22.5rem; 48 | right: 5rem; 49 | z-index: 0; 50 | .arrow-up { 51 | margin-top: -3.125rem; 52 | cursor: pointer; 53 | opacity: 0.2; 54 | } 55 | .arrow-down { 56 | position: absolute; 57 | bottom: -1.875rem; 58 | cursor: pointer; 59 | } 60 | } 61 | .social-sharing { 62 | margin-top: 0; 63 | margin-left: $extra-large-space; 64 | } 65 | } -------------------------------------------------------------------------------- /prestarocket/_dev/css/partials/_fonts.scss: -------------------------------------------------------------------------------- 1 | .material-icons { 2 | font-family: 'Material Icons'; 3 | font-weight: normal; 4 | font-style: normal; 5 | font-size: $font-size-base*$line-height-base; /* Preferred icon size */ 6 | display: inline-block; 7 | vertical-align: top; 8 | //width: 1em; 9 | //height: 1em; 10 | line-height: 1; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-wrap: normal; 14 | white-space: nowrap; 15 | direction: ltr; 16 | 17 | /* Support for all WebKit browsers. */ 18 | -webkit-font-smoothing: antialiased; 19 | /* Support for Safari and Chrome. */ 20 | text-rendering: optimizeLegibility; 21 | 22 | /* Support for Firefox. */ 23 | -moz-osx-font-smoothing: grayscale; 24 | 25 | /* Support for IE. */ 26 | font-feature-settings: 'liga'; 27 | } 28 | //fix height 29 | .material-icons + span{ 30 | display: inline-block; 31 | } 32 | .small .material-icons, 33 | .btn-sm .material-icons{ 34 | font-size: $small-font-size; 35 | line-height: $line-height-base; 36 | } 37 | .btn-lg .material-icons{ 38 | font-size: $font-size-lg*$btn-line-height-lg; 39 | } 40 | 41 | .pagination .material-icons{ 42 | font-size: $font-size-base*$pagination-line-height; 43 | } 44 | .material-icons.md-18, 45 | { font-size: 18px; line-height: 1} 46 | .material-icons.md-24, 47 | { font-size: 24px; line-height: 1} 48 | .material-icons.md-36, 49 | { font-size: 36px; line-height: 1} 50 | .material-icons.md-48, 51 | { font-size: 48px; line-height: 1} 52 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_brandlist/views/templates/_partials/brand_text.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 |
      27 | {foreach from=$brands item=brand name=brand_list} 28 | {if $smarty.foreach.brand_list.iteration <= $text_list_nb} 29 |
    • 30 | 31 | {$brand['name']} 32 | 33 |
    • 34 | {/if} 35 | {/foreach} 36 |
    37 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_emailalerts/views/templates/hook/my-account.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 | 28 | 29 | 30 | {l s='My alerts' d='Shop.Theme.Catalog'} 31 | 32 | 33 | -------------------------------------------------------------------------------- /prestarocket/templates/_partials/stylesheets.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {foreach $stylesheets.external as $stylesheet} 26 | 27 | {/foreach} 28 | {**} 29 | {foreach $stylesheets.inline as $stylesheet} 30 | 33 | {/foreach} 34 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 | 34 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_socialfollow/ps_socialfollow.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 | {block name='block_social'} 27 | 32 | {/block} 33 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_supplierlist/views/templates/_partials/supplier_text.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 |
      27 | {foreach from=$suppliers item=supplier name=supplier_list} 28 | {if $smarty.foreach.supplier_list.iteration <= $text_list_nb} 29 |
    • 30 | 31 | {$supplier['name']} 32 | 33 |
    • 34 | {/if} 35 | {/foreach} 36 |
    37 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_brandlist/views/templates/_partials/brand_form.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 |
    27 | 33 |
    34 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/listing/manufacturer.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='catalog/listing/product-list.tpl'} 26 | 27 | {block name='product_list_header'} 28 |

    {l s='List of products by brand %brand_name%' sprintf=['%brand_name%' => $manufacturer.name] d='Shop.Theme.Catalog'}

    29 |
    {$manufacturer.short_description nofilter}
    30 |
    {$manufacturer.description nofilter}
    31 | {/block} 32 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_supplierlist/views/templates/_partials/supplier_form.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 |
    27 | 33 |
    34 | -------------------------------------------------------------------------------- /prestarocket/templates/customer/_partials/my-account-links.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {block name='my_account_links'} 26 | 30 | 34 | {/block} 35 | -------------------------------------------------------------------------------- /prestarocket/templates/customer/address.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='customer/page.tpl'} 26 | 27 | {block name='page_title'} 28 | {if $editing} 29 | {l s='Update your address' d='Shop.Theme.Customeraccount'} 30 | {else} 31 | {l s='New address' d='Shop.Theme.Customeraccount'} 32 | {/if} 33 | {/block} 34 | 35 | {block name='page_content'} 36 |
    37 | {render template="customer/_partials/address-form.tpl" ui=$address_form} 38 |
    39 | {/block} 40 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/_partials/miniatures/category.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {block name='category_miniature_item'} 26 |
    27 | 28 | {$category.image.legend} 29 | 30 | 31 |

    32 | {$category.name} 33 |

    34 | 35 |
    {$category.description nofilter}
    36 |
    37 | {/block} 38 | -------------------------------------------------------------------------------- /prestarocket/modules/blockreassurance/views/templates/hook/blockreassurance.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {if $elements} 26 |
    27 |
      28 | {foreach from=$elements item=element} 29 |
    • 30 | {$element.text} 31 | {$element.text} 32 |
    • 33 | {/foreach} 34 |
    35 |
    36 | {/if} 37 | -------------------------------------------------------------------------------- /prestarocket/plugins/function.splitprice.php: -------------------------------------------------------------------------------- 1 | 2 | tpl_vars['currency']->value['iso_code'] !== "EUR"){ 17 | return $price; 18 | } 19 | $unity = ''; 20 | if(isset($params['unity'])){ 21 | $unity = $params['unity']; 22 | } 23 | $currencySign = $smarty->tpl_vars['currency']->value['sign']; 24 | 25 | 26 | $priceSplit = priceToFloat($price,$currencySign,$unity); 27 | 28 | 29 | return $priceSplit; 30 | } 31 | 32 | function priceToFloat($price,$currencySign,$unity) 33 | { 34 | $delimiter = ','; 35 | $price = str_replace($currencySign, '', $price); 36 | $price = str_replace($unity, '', $price); 37 | $price = str_replace('.', $delimiter, $price); 38 | $price = explode($delimiter,$price); 39 | $priceUnit = $price[0]; 40 | $priceDecimal = ''; 41 | if(isset($price[1]) && (int)$price[1] > 0){ 42 | $priceDecimal = trim($price[1], " \t\n\r\0\x0B\xC2\xA0"); 43 | } 44 | 45 | return ''.$priceUnit.''.$currencySign.''.$priceDecimal.''; 46 | } -------------------------------------------------------------------------------- /prestarocket/templates/errors/not-found.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 |
    26 | {block name='page_content'} 27 | 28 |

    {l s='Sorry for the inconvenience.' d='Shop.Theme.Global'}

    29 |

    {l s='Search again what you are looking for' d='Shop.Theme.Global'}

    30 | 31 | {block name='search'} 32 | {hook h='displaySearch'} 33 | {/block} 34 | 35 | {block name='hook_not_found'} 36 | {hook h='displayNotFound'} 37 | {/block} 38 | 39 | {/block} 40 |
    41 | -------------------------------------------------------------------------------- /prestarocket/templates/layouts/layout-left-column.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='layouts/layout-both-columns.tpl'} 26 | 27 | {block name='right_column'}{/block} 28 | 29 | {block name='content_wrapper'} 30 |
    31 | {hook h="displayContentWrapperTop"} 32 | {block name='content'} 33 |

    Hello world! This is HTML5 Boilerplate.

    34 | {/block} 35 | {hook h="displayContentWrapperBottom"} 36 |
    37 | {/block} 38 | -------------------------------------------------------------------------------- /prestarocket/templates/layouts/layout-right-column.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='layouts/layout-both-columns.tpl'} 26 | 27 | {block name='left_column'}{/block} 28 | 29 | {block name='content_wrapper'} 30 |
    31 | {hook h="displayContentWrapperTop"} 32 | {block name='content'} 33 |

    Hello world! This is HTML5 Boilerplate.

    34 | {/block} 35 | {hook h="displayContentWrapperBottom"} 36 |
    37 | {/block} 38 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/brands.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file=$layout} 26 | 27 | {block name='content'} 28 |
    29 | 30 | {block name='brand_header'} 31 |

    {l s='Brands' d='Shop.Theme.Catalog'}

    32 | {/block} 33 | 34 | {block name='brand_miniature'} 35 |
      36 | {foreach from=$brands item=brand} 37 | {include file='catalog/_partials/miniatures/brand.tpl' brand=$brand} 38 | {/foreach} 39 |
    40 | {/block} 41 | 42 |
    43 | 44 | {/block} 45 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/_partials/product-activation.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {if $page.admin_notifications} 26 | 38 | {/if} 39 | -------------------------------------------------------------------------------- /prestarocket/templates/layouts/layout-full-width.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='layouts/layout-both-columns.tpl'} 26 | 27 | {block name='left_column'}{/block} 28 | {block name='right_column'}{/block} 29 | 30 | {block name='content_wrapper'} 31 |
    32 | {hook h="displayContentWrapperTop"} 33 | {block name='content'} 34 |

    Hello world! This is HTML5 Boilerplate.

    35 | {/block} 36 | {hook h="displayContentWrapperBottom"} 37 |
    38 | {/block} 39 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_rssfeed/views/templates/hook/ps_rssfeed.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 26 | 40 | -------------------------------------------------------------------------------- /prestarocket/templates/cms/_partials/sitemap-nested-list.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {block name='sitemap_item'} 26 | 27 | {foreach $links as $link} 28 |
  • 29 | 30 | {$link.label} 31 | 32 | {if isset($link.children) && $link.children|@count > 0} 33 | {include file='cms/_partials/sitemap-nested-list.tpl' links=$link.children is_nested=true} 34 | {/if} 35 |
  • 36 | {/foreach} 37 | 38 | {/block} 39 | -------------------------------------------------------------------------------- /prestarocket/templates/_partials/javascript.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {foreach $javascript.external as $js} 26 | 27 | {/foreach} 28 | 29 | {foreach $javascript.inline as $js} 30 | 33 | {/foreach} 34 | 35 | {if isset($vars) && $vars|@count} 36 | 41 | {/if} 42 | -------------------------------------------------------------------------------- /prestarocket/_dev/js/customer.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | */ 25 | import $ from 'jquery'; 26 | 27 | function initRmaItemSelector() { 28 | $('#order-return-form table thead input[type=checkbox]').on('click', function() { 29 | var checked = $(this).prop('checked'); 30 | $('#order-return-form table tbody input[type=checkbox]').each(function(_, checkbox) { 31 | $(checkbox).prop('checked', checked); 32 | }); 33 | }); 34 | } 35 | 36 | function setupCustomerScripts() { 37 | if ($('body#order-detail')) { 38 | initRmaItemSelector(); 39 | } 40 | } 41 | 42 | $(document).ready(setupCustomerScripts); 43 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/_partials/sort-orders.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 |
    26 |
    27 | 28 | 33 |
    34 |
    35 | -------------------------------------------------------------------------------- /prestarocket/templates/catalog/_partials/miniatures/brand.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {block name='brand_miniature_item'} 26 |
  • 27 |
    {$brand.name}
    28 |
    29 |

    {$brand.name}

    30 | {$brand.text nofilter} 31 |
    32 | 36 |
  • 37 | {/block} 38 | -------------------------------------------------------------------------------- /prestarocket/templates/index.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='page.tpl'} 26 | {block name='pageWrapperClass'}{/block} 27 | {block name='page_content_container'} 28 |
    29 | {block name='page_content_top'}{/block} 30 | 31 | {block name='page_content'} 32 | {block name='hook_home'} 33 | {$HOOK_HOME nofilter} 34 | {/block} 35 | 36 | {/block} 37 |
    38 | {/block} 39 | {block name='page_footer_container'} 40 |
    {block name='page_footer'}{/block}
    41 | {/block} 42 | -------------------------------------------------------------------------------- /prestarocket/assets/css/f255af0bbbe837e79f7821827f9c6f10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /prestarocket/modules/ps_contactinfo/nav.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | 43 | -------------------------------------------------------------------------------- /prestarocket/templates/layouts/layout-content-only.tpl: -------------------------------------------------------------------------------- 1 | {** 2 | * 2007-2017 PrestaShop 3 | * 4 | * NOTICE OF LICENSE 5 | * 6 | * This source file is subject to the Academic Free License 3.0 (AFL-3.0) 7 | * that is bundled with this package in the file LICENSE.txt. 8 | * It is also available through the world-wide-web at this URL: 9 | * https://opensource.org/licenses/AFL-3.0 10 | * If you did not receive a copy of the license and are unable to 11 | * obtain it through the world-wide-web, please send an email 12 | * to license@prestashop.com so we can send you a copy immediately. 13 | * 14 | * DISCLAIMER 15 | * 16 | * Do not edit or add to this file if you wish to upgrade PrestaShop to newer 17 | * versions in the future. If you wish to customize PrestaShop for your 18 | * needs please refer to http://www.prestashop.com for more information. 19 | * 20 | * @author PrestaShop SA 21 | * @copyright 2007-2017 PrestaShop SA 22 | * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) 23 | * International Registered Trademark & Property of PrestaShop SA 24 | *} 25 | {extends file='layouts/layout-both-columns.tpl'} 26 | 27 | {block name='header'}{/block} 28 | {block name='left_column'}{/block} 29 | {block name='right_column'}{/block} 30 | 31 | {block name='content_wrapper'} 32 |
    33 | {hook h="displayContentWrapperTop"} 34 | {block name='content'} 35 |

    Hello world! This is HTML5 Boilerplate.

    36 | {/block} 37 | {hook h="displayContentWrapperBottom"} 38 |
    39 | {/block} 40 | 41 | {block name='footer'}{/block} 42 | -------------------------------------------------------------------------------- /prestarocket/_dev/img/twitter-gray.svg: -------------------------------------------------------------------------------- 1 | Artboard 3 Copy 3 --------------------------------------------------------------------------------