Version Notes
Initial Release
Download this release
Release Info
Developer | ModulesGarden |
Extension | Modulesgarden_Minimo |
Version | 1.0.0 |
Comparing to | |
See all releases |
Version 1.0.0
- app/code/community/Modulesgarden/ThemeMinimo/Block/Html/Breadcrumbs.php +99 -0
- app/code/community/Modulesgarden/ThemeMinimo/Block/Html/Topmenu.php +268 -0
- app/code/community/Modulesgarden/ThemeMinimo/Block/Product/Bestseller.php +28 -0
- app/code/community/Modulesgarden/ThemeMinimo/Block/Product/Featured.php +53 -0
- app/code/community/Modulesgarden/ThemeMinimo/Helper/Data.php +31 -0
- app/code/community/Modulesgarden/ThemeMinimo/Model/System/Config/Source/Select.php +72 -0
- app/code/community/Modulesgarden/ThemeMinimo/data/mgthememinimo_setup/data-install-1.0.0.php +83 -0
- app/code/community/Modulesgarden/ThemeMinimo/etc/config.xml +86 -0
- app/code/community/Modulesgarden/ThemeMinimo/etc/system.xml +165 -0
- app/code/community/Modulesgarden/ThemeMinimo/sql/mgthememinimo_setup/install-1.0.0.php +79 -0
- app/design/frontend/modulesgarden/minimo/layout/catalog.xml +453 -0
- app/design/frontend/modulesgarden/minimo/layout/catalogsearch.xml +142 -0
- app/design/frontend/modulesgarden/minimo/layout/checkout.xml +491 -0
- app/design/frontend/modulesgarden/minimo/layout/cms.xml +94 -0
- app/design/frontend/modulesgarden/minimo/layout/customer.xml +320 -0
- app/design/frontend/modulesgarden/minimo/layout/local.xml +141 -0
- app/design/frontend/modulesgarden/minimo/layout/newsletter.xml +69 -0
- app/design/frontend/modulesgarden/minimo/layout/page.xml +215 -0
- app/design/frontend/modulesgarden/minimo/layout/paypal.xml +207 -0
- app/design/frontend/modulesgarden/minimo/layout/poll.xml +61 -0
- app/design/frontend/modulesgarden/minimo/layout/reports.xml +45 -0
- app/design/frontend/modulesgarden/minimo/layout/review.xml +135 -0
- app/design/frontend/modulesgarden/minimo/layout/tag.xml +134 -0
- app/design/frontend/modulesgarden/minimo/layout/wishlist.xml +139 -0
- app/design/frontend/modulesgarden/minimo/template/bundle/catalog/product/view/type/bundle/option/radio.phtml +79 -0
- app/design/frontend/modulesgarden/minimo/template/bundle/catalog/product/view/type/bundle/option/select.phtml +70 -0
- app/design/frontend/modulesgarden/minimo/template/callouts/left_col.phtml +39 -0
- app/design/frontend/modulesgarden/minimo/template/callouts/right_col.phtml +39 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/category/page.phtml +36 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/category/view.phtml +64 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/category/widget/link/link_block.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/category/widget/link/link_inline.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/layer/filter.phtml +48 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/layer/state.phtml +55 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/layer/view.phtml +56 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/navigation/left.phtml +59 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/navigation/top.phtml +49 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/bestseller.phtml +54 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/compare/list.phtml +181 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/compare/sidebar.phtml +60 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/featured.phtml +59 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/gallery.phtml +66 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/list.phtml +162 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/list/related.phtml +94 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/list/toolbar.phtml +120 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/list/toolbar_only.phtml +1 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/list/upsell.phtml +69 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/new.phtml +69 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/price.phtml +471 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view.phtml +192 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/additional.phtml +29 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/addto.phtml +41 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/addtocart.phtml +42 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/attributes.phtml +52 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/description.phtml +39 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/media.phtml +73 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options.phtml +193 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/js.phtml +89 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/date.phtml +92 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/default.phtml +30 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/file.phtml +103 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/select.phtml +40 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/text.phtml +41 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/wrapper.phtml +33 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/wrapper/bottom.phtml +29 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/price.phtml +34 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/price_clone.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/tierprices.phtml +232 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/configurable.phtml +31 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/default.phtml +36 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/grouped.phtml +98 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/options/configurable.phtml +48 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/simple.phtml +31 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/virtual.phtml +31 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/link/link_block.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/link/link_inline.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/column/new_default_list.phtml +56 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/column/new_images_list.phtml +47 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/column/new_names_list.phtml +47 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/content/new_grid.phtml +66 -0
- app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/content/new_list.phtml +63 -0
- app/design/frontend/modulesgarden/minimo/template/catalogsearch/form.mini.phtml +43 -0
- app/design/frontend/modulesgarden/minimo/template/catalogsearch/result.phtml +55 -0
- app/design/frontend/modulesgarden/minimo/template/catalogsearch/term.phtml +38 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart.phtml +148 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/coupon.phtml +59 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/crosssell.phtml +59 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/item/configure/updatecart.phtml +43 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/item/default.phtml +285 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/noItems.phtml +36 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/render/default.phtml +74 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/render/simple.phtml +74 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/shipping.phtml +139 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/sidebar.phtml +80 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/sidebar/default.phtml +145 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/cart/totals.phtml +48 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/address/select.phtml +58 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/addresses.phtml +81 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/agreements.phtml +49 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/billing.phtml +116 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/billing/items.phtml +54 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/item/default.phtml +45 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/link.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/overview.phtml +250 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/overview/item.phtml +238 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/shipping.phtml +130 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/state.phtml +39 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/success.phtml +50 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage.phtml +61 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/link.phtml +29 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/login.phtml +124 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/payment.phtml +80 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/payment/info.phtml +29 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/payment/methods.phtml +73 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/review/button.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/review/info.phtml +91 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/shipping.phtml +163 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/onepage/shipping_method.phtml +53 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/success.phtml +64 -0
- app/design/frontend/modulesgarden/minimo/template/checkout/total/default.phtml +38 -0
- app/design/frontend/modulesgarden/minimo/template/cms/content.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/cms/widget/static_block/default.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/contacts/form.phtml +73 -0
- app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard.phtml +45 -0
- app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/address.phtml +50 -0
- app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/hello.phtml +30 -0
- app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/info.phtml +64 -0
- app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/newsletter.phtml +31 -0
- app/design/frontend/modulesgarden/minimo/template/customer/account/link/back.phtml +29 -0
- app/design/frontend/modulesgarden/minimo/template/customer/account/navigation.phtml +46 -0
- app/design/frontend/modulesgarden/minimo/template/customer/address.phtml +94 -0
- app/design/frontend/modulesgarden/minimo/template/customer/address/book.phtml +105 -0
- app/design/frontend/modulesgarden/minimo/template/customer/address/edit.phtml +165 -0
- app/design/frontend/modulesgarden/minimo/template/customer/balance.phtml +31 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/address.phtml +143 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/changepassword.phtml +67 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/confirmation.phtml +54 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/edit.phtml +117 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/forgotpassword.phtml +55 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/login.phtml +92 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/mini.login.phtml +40 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/newsletter.phtml +53 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/register.phtml +190 -0
- app/design/frontend/modulesgarden/minimo/template/customer/form/resetforgottenpassword.phtml +59 -0
- app/design/frontend/modulesgarden/minimo/template/customer/logout.phtml +35 -0
- app/design/frontend/modulesgarden/minimo/template/customer/orders.phtml +65 -0
- app/design/frontend/modulesgarden/minimo/template/customer/widget/dob.phtml +87 -0
- app/design/frontend/modulesgarden/minimo/template/customer/widget/gender.phtml +36 -0
- app/design/frontend/modulesgarden/minimo/template/customer/widget/name.phtml +101 -0
- app/design/frontend/modulesgarden/minimo/template/customer/widget/taxvat.phtml +30 -0
- app/design/frontend/modulesgarden/minimo/template/customer/wishlist.phtml +73 -0
- app/design/frontend/modulesgarden/minimo/template/downloadable/checkout/cart/item/default.phtml +313 -0
- app/design/frontend/modulesgarden/minimo/template/downloadable/customer/products/list.phtml +74 -0
- app/design/frontend/modulesgarden/minimo/template/newsletter/subscribe.phtml +49 -0
- app/design/frontend/modulesgarden/minimo/template/oauth/customer/token/list.phtml +72 -0
- app/design/frontend/modulesgarden/minimo/template/page/1column.phtml +82 -0
- app/design/frontend/modulesgarden/minimo/template/page/2columns-left.phtml +83 -0
- app/design/frontend/modulesgarden/minimo/template/page/2columns-right.phtml +83 -0
- app/design/frontend/modulesgarden/minimo/template/page/3columns.phtml +85 -0
- app/design/frontend/modulesgarden/minimo/template/page/baners.phtml +93 -0
- app/design/frontend/modulesgarden/minimo/template/page/brands.phtml +22 -0
- app/design/frontend/modulesgarden/minimo/template/page/breadcrumbsnew.phtml +7 -0
- app/design/frontend/modulesgarden/minimo/template/page/categoryimg.phtml +13 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/breadcrumbs.phtml +81 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/footer.phtml +48 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/head.phtml +112 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/header.phtml +69 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/notices.phtml +48 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/pager.phtml +134 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/top.links.phtml +39 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/topmenu.phtml +96 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/viewpointmeta.phtml +1 -0
- app/design/frontend/modulesgarden/minimo/template/page/html/wrapper.phtml +50 -0
- app/design/frontend/modulesgarden/minimo/template/page/newBanerList.phtml +15 -0
- app/design/frontend/modulesgarden/minimo/template/page/switch/languages.phtml +45 -0
- app/design/frontend/modulesgarden/minimo/template/page/template/links.phtml +43 -0
- app/design/frontend/modulesgarden/minimo/template/page/template/linksblock.phtml +32 -0
- app/design/frontend/modulesgarden/minimo/template/payment/catalog/product/view/profile/options.phtml +41 -0
- app/design/frontend/modulesgarden/minimo/template/payment/catalog/product/view/profile/schedule.phtml +39 -0
- app/design/frontend/modulesgarden/minimo/template/payment/form/banktransfer.phtml +35 -0
- app/design/frontend/modulesgarden/minimo/template/payment/form/cashondelivery.phtml +39 -0
- app/design/frontend/modulesgarden/minimo/template/payment/form/cc.phtml +138 -0
- app/design/frontend/modulesgarden/minimo/template/payment/form/ccsave.phtml +135 -0
- app/design/frontend/modulesgarden/minimo/template/payment/form/checkmo.phtml +44 -0
- app/design/frontend/modulesgarden/minimo/template/payment/form/purchaseorder.phtml +34 -0
- app/design/frontend/modulesgarden/minimo/template/payment/info/banktransfer.phtml +41 -0
- app/design/frontend/modulesgarden/minimo/template/payment/info/checkmo.phtml +38 -0
- app/design/frontend/modulesgarden/minimo/template/payment/info/default.phtml +49 -0
- app/design/frontend/modulesgarden/minimo/template/payment/info/purchaseorder.phtml +28 -0
- app/design/frontend/modulesgarden/minimo/template/persistent/checkout/onepage/billing.phtml +233 -0
- app/design/frontend/modulesgarden/minimo/template/persistent/checkout/onepage/login.phtml +149 -0
- app/design/frontend/modulesgarden/minimo/template/persistent/customer/form/login.phtml +94 -0
- app/design/frontend/modulesgarden/minimo/template/rating/detailed.phtml +46 -0
- app/design/frontend/modulesgarden/minimo/template/rating/empty.phtml +27 -0
- app/design/frontend/modulesgarden/minimo/template/review/customer/list.phtml +64 -0
- app/design/frontend/modulesgarden/minimo/template/review/customer/recent.phtml +54 -0
- app/design/frontend/modulesgarden/minimo/template/review/customer/view.phtml +75 -0
- app/design/frontend/modulesgarden/minimo/template/review/form.phtml +165 -0
- app/design/frontend/modulesgarden/minimo/template/review/helper/summary.phtml +42 -0
- app/design/frontend/modulesgarden/minimo/template/review/helper/summary_short.phtml +38 -0
- app/design/frontend/modulesgarden/minimo/template/review/product/view/count.phtml +29 -0
- app/design/frontend/modulesgarden/minimo/template/review/product/view/list.phtml +65 -0
- app/design/frontend/modulesgarden/minimo/template/review/product/view/other.phtml +31 -0
- app/design/frontend/modulesgarden/minimo/template/review/view.phtml +72 -0
- app/design/frontend/modulesgarden/minimo/template/sales/order/history.phtml +76 -0
- app/design/frontend/modulesgarden/minimo/template/sales/reorder/sidebar.phtml +78 -0
- app/design/frontend/modulesgarden/minimo/template/tag/customer/view.phtml +84 -0
- app/design/frontend/modulesgarden/minimo/template/tag/list.phtml +63 -0
- app/design/frontend/modulesgarden/minimo/template/tag/popular.phtml +41 -0
- app/design/frontend/modulesgarden/minimo/template/wishlist/item/column/cart.phtml +61 -0
- app/design/frontend/modulesgarden/minimo/template/wishlist/view.phtml +92 -0
- app/etc/modules/Modulesgarden_ThemeMinimo.xml +9 -0
- package.xml +18 -0
- skin/frontend/modulesgarden/minimo/css/bootstrap/bootstrap.min.css +5 -0
- skin/frontend/modulesgarden/minimo/css/color-footer-dark.css +25 -0
app/code/community/Modulesgarden/ThemeMinimo/Block/Html/Breadcrumbs.php
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Html page block
|
5 |
+
*
|
6 |
+
* @category Mage
|
7 |
+
* @package Mage_Page
|
8 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
9 |
+
*/
|
10 |
+
class Modulesgarden_ThemeMinimo_Block_Html_Breadcrumbs extends Mage_Core_Block_Template {
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Array of breadcrumbs
|
14 |
+
*
|
15 |
+
* array(
|
16 |
+
* [$index] => array(
|
17 |
+
* ['label']
|
18 |
+
* ['title']
|
19 |
+
* ['link']
|
20 |
+
* ['first']
|
21 |
+
* ['last']
|
22 |
+
* )
|
23 |
+
* )
|
24 |
+
*
|
25 |
+
* @var array
|
26 |
+
*/
|
27 |
+
protected $_crumbs = null;
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Cache key info
|
31 |
+
*
|
32 |
+
* @var null|array
|
33 |
+
*/
|
34 |
+
protected $_cacheKeyInfo = null;
|
35 |
+
protected $_title = null;
|
36 |
+
|
37 |
+
public function __construct() {
|
38 |
+
parent::__construct();
|
39 |
+
$this->setTemplate('page/html/breadcrumbs.phtml');
|
40 |
+
$this->addCrumb('home', array(
|
41 |
+
'label' => Mage::helper('catalog')->__('Home'),
|
42 |
+
'title' => Mage::helper('catalog')->__('Go to Home Page'),
|
43 |
+
'link' => Mage::getBaseUrl()
|
44 |
+
));
|
45 |
+
$this->_title = array();
|
46 |
+
$path = Mage::helper('catalog')->getBreadcrumbPath();
|
47 |
+
foreach ($path as $name => $breadcrumb) {
|
48 |
+
$this->addCrumb($name, $breadcrumb);
|
49 |
+
$this->_title[] = $breadcrumb['label'];
|
50 |
+
}
|
51 |
+
}
|
52 |
+
|
53 |
+
protected function _prepareLayout() {
|
54 |
+
if ($headBlock = $this->getLayout()->getBlock('head')) {
|
55 |
+
$headBlock->setTitle(join($this->getTitleSeparator(), array_reverse($this->_title)));
|
56 |
+
}
|
57 |
+
return parent::_prepareLayout();
|
58 |
+
}
|
59 |
+
|
60 |
+
public function addCrumb($crumbName, $crumbInfo, $after = false) {
|
61 |
+
$this->_prepareArray($crumbInfo, array('label', 'title', 'link', 'first', 'last', 'readonly'));
|
62 |
+
if ((!isset($this->_crumbs[$crumbName])) || (!$this->_crumbs[$crumbName]['readonly'])) {
|
63 |
+
$this->_crumbs[$crumbName] = $crumbInfo;
|
64 |
+
}
|
65 |
+
return $this;
|
66 |
+
}
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Get cache key informative items
|
70 |
+
*
|
71 |
+
* @return array
|
72 |
+
*/
|
73 |
+
public function getCacheKeyInfo() {
|
74 |
+
if (null === $this->_cacheKeyInfo) {
|
75 |
+
$this->_cacheKeyInfo = parent::getCacheKeyInfo() + array(
|
76 |
+
'crumbs' => base64_encode(serialize($this->_crumbs)),
|
77 |
+
'name' => $this->getNameInLayout(),
|
78 |
+
);
|
79 |
+
}
|
80 |
+
return $this->_cacheKeyInfo;
|
81 |
+
}
|
82 |
+
|
83 |
+
protected function _toHtml() {
|
84 |
+
if (is_array($this->_crumbs)) {
|
85 |
+
reset($this->_crumbs);
|
86 |
+
$this->_crumbs[key($this->_crumbs)]['first'] = true;
|
87 |
+
end($this->_crumbs);
|
88 |
+
$this->_crumbs[key($this->_crumbs)]['last'] = true;
|
89 |
+
}
|
90 |
+
$this->assign('crumbs', $this->_crumbs);
|
91 |
+
return parent::_toHtml();
|
92 |
+
}
|
93 |
+
|
94 |
+
public function getTitleSeparator($store = null) {
|
95 |
+
$separator = (string) Mage::getStoreConfig('catalog/seo/title_separator', $store);
|
96 |
+
return ' ' . $separator . ' ';
|
97 |
+
}
|
98 |
+
|
99 |
+
}
|
app/code/community/Modulesgarden/ThemeMinimo/Block/Html/Topmenu.php
ADDED
@@ -0,0 +1,268 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Page
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Top menu block
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Page
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
|
35 |
+
class Modulesgarden_ThemeMinimo_Block_Html_Topmenu extends Mage_Page_Block_Html_Topmenu
|
36 |
+
{
|
37 |
+
/**
|
38 |
+
* Top menu data tree
|
39 |
+
*
|
40 |
+
* @var Varien_Data_Tree_Node
|
41 |
+
*/
|
42 |
+
protected $_menu;
|
43 |
+
|
44 |
+
/**
|
45 |
+
* Current entity key
|
46 |
+
*
|
47 |
+
* @var string|int
|
48 |
+
*/
|
49 |
+
protected $_currentEntityKey;
|
50 |
+
|
51 |
+
/**
|
52 |
+
* Init top menu tree structure
|
53 |
+
*/
|
54 |
+
public function _construct()
|
55 |
+
{
|
56 |
+
$this->_menu = new Varien_Data_Tree_Node(array(), 'root', new Varien_Data_Tree());
|
57 |
+
|
58 |
+
$this->addData(array(
|
59 |
+
'cache_lifetime' => false,
|
60 |
+
));
|
61 |
+
}
|
62 |
+
|
63 |
+
/**
|
64 |
+
* Get top menu html
|
65 |
+
*
|
66 |
+
* @param string $outermostClass
|
67 |
+
* @param string $childrenWrapClass
|
68 |
+
* @return string
|
69 |
+
*/
|
70 |
+
public function getHtml($outermostClass = '', $childrenWrapClass = '')
|
71 |
+
{
|
72 |
+
Mage::dispatchEvent('page_block_html_topmenu_gethtml_before', array(
|
73 |
+
'menu' => $this->_menu,
|
74 |
+
'block' => $this
|
75 |
+
));
|
76 |
+
|
77 |
+
$this->_menu->setOutermostClass($outermostClass);
|
78 |
+
$this->_menu->setChildrenWrapClass($childrenWrapClass);
|
79 |
+
|
80 |
+
if ($renderer = $this->getChild('catalog.topnav.renderer')) {
|
81 |
+
$renderer->setMenuTree($this->_menu)->setChildrenWrapClass($childrenWrapClass);
|
82 |
+
$html = $renderer->toHtml();
|
83 |
+
} else {
|
84 |
+
$html = $this->_getHtml($this->_menu, $childrenWrapClass);
|
85 |
+
}
|
86 |
+
|
87 |
+
Mage::dispatchEvent('page_block_html_topmenu_gethtml_after', array(
|
88 |
+
'menu' => $this->_menu,
|
89 |
+
'html' => $html
|
90 |
+
));
|
91 |
+
|
92 |
+
return $html;
|
93 |
+
}
|
94 |
+
|
95 |
+
/**
|
96 |
+
* Recursively generates top menu html from data that is specified in $menuTree
|
97 |
+
*
|
98 |
+
* @param Varien_Data_Tree_Node $menuTree
|
99 |
+
* @param string $childrenWrapClass
|
100 |
+
* @return string
|
101 |
+
* @deprecated since 1.8.2.0 use child block catalog.topnav.renderer instead
|
102 |
+
*/
|
103 |
+
protected function _getHtml(Varien_Data_Tree_Node $menuTree, $childrenWrapClass)
|
104 |
+
{
|
105 |
+
$html = '';
|
106 |
+
|
107 |
+
$children = $menuTree->getChildren();
|
108 |
+
$parentLevel = $menuTree->getLevel();
|
109 |
+
$childLevel = is_null($parentLevel) ? 0 : $parentLevel + 1;
|
110 |
+
|
111 |
+
$counter = 1;
|
112 |
+
$childrenCount = $children->count();
|
113 |
+
|
114 |
+
$parentPositionClass = $menuTree->getPositionClass();
|
115 |
+
$itemPositionClassPrefix = $parentPositionClass ? $parentPositionClass . '-' : 'nav-';
|
116 |
+
|
117 |
+
foreach ($children as $child) {
|
118 |
+
|
119 |
+
$child->setLevel($childLevel);
|
120 |
+
$child->setIsFirst($counter == 1);
|
121 |
+
$child->setIsLast($counter == $childrenCount);
|
122 |
+
$child->setPositionClass($itemPositionClassPrefix . $counter);
|
123 |
+
|
124 |
+
$outermostClassCode = '';
|
125 |
+
$outermostClass = $menuTree->getOutermostClass();
|
126 |
+
|
127 |
+
if ($childLevel == 0 && $outermostClass) {
|
128 |
+
$outermostClassCode = ' class="' . $outermostClass . '" ';
|
129 |
+
$child->setClass($outermostClass);
|
130 |
+
}
|
131 |
+
|
132 |
+
$html .= '<li ' . $this->_getRenderedMenuItemAttributes($child) . '>';
|
133 |
+
$html .= '<a href="' . $child->getUrl() . '" ' . $outermostClassCode . '><span>'
|
134 |
+
. $this->escapeHtml($child->getName()) . '</span></a>';
|
135 |
+
|
136 |
+
if ($child->hasChildren()) {
|
137 |
+
if (!empty($childrenWrapClass)) {
|
138 |
+
$html .= '<div class="' . $childrenWrapClass .'">';
|
139 |
+
}
|
140 |
+
$html .= '<div class="cbp-hrsub"><div class="cbp-hrsub-inner"><div><ul class="level' . $childLevel . '">';
|
141 |
+
$html .= $this->_getHtml($child, $childrenWrapClass);
|
142 |
+
$html .= '</ul></div></div></div>';
|
143 |
+
|
144 |
+
if (!empty($childrenWrapClass)) {
|
145 |
+
$html .= '</div></div>';
|
146 |
+
}
|
147 |
+
}
|
148 |
+
$html .= '</li>';
|
149 |
+
|
150 |
+
$counter++;
|
151 |
+
}
|
152 |
+
|
153 |
+
return $html;
|
154 |
+
}
|
155 |
+
|
156 |
+
/**
|
157 |
+
* Generates string with all attributes that should be present in menu item element
|
158 |
+
*
|
159 |
+
* @param Varien_Data_Tree_Node $item
|
160 |
+
* @return string
|
161 |
+
*/
|
162 |
+
protected function _getRenderedMenuItemAttributes(Varien_Data_Tree_Node $item)
|
163 |
+
{
|
164 |
+
$html = '';
|
165 |
+
$attributes = $this->_getMenuItemAttributes($item);
|
166 |
+
|
167 |
+
foreach ($attributes as $attributeName => $attributeValue) {
|
168 |
+
$html .= ' ' . $attributeName . '="' . str_replace('"', '\"', $attributeValue) . '"';
|
169 |
+
}
|
170 |
+
|
171 |
+
return $html;
|
172 |
+
}
|
173 |
+
|
174 |
+
/**
|
175 |
+
* Returns array of menu item's attributes
|
176 |
+
*
|
177 |
+
* @param Varien_Data_Tree_Node $item
|
178 |
+
* @return array
|
179 |
+
*/
|
180 |
+
protected function _getMenuItemAttributes(Varien_Data_Tree_Node $item)
|
181 |
+
{
|
182 |
+
$menuItemClasses = $this->_getMenuItemClasses($item);
|
183 |
+
$attributes = array(
|
184 |
+
'class' => implode(' ', $menuItemClasses)
|
185 |
+
);
|
186 |
+
|
187 |
+
return $attributes;
|
188 |
+
}
|
189 |
+
|
190 |
+
/**
|
191 |
+
* Returns array of menu item's classes
|
192 |
+
*
|
193 |
+
* @param Varien_Data_Tree_Node $item
|
194 |
+
* @return array
|
195 |
+
*/
|
196 |
+
protected function _getMenuItemClasses(Varien_Data_Tree_Node $item)
|
197 |
+
{
|
198 |
+
$classes = array();
|
199 |
+
|
200 |
+
$classes[] = 'level' . $item->getLevel();
|
201 |
+
$classes[] = $item->getPositionClass();
|
202 |
+
|
203 |
+
if ($item->getIsFirst()) {
|
204 |
+
$classes[] = 'first';
|
205 |
+
}
|
206 |
+
|
207 |
+
if ($item->getIsActive()) {
|
208 |
+
$classes[] = 'active';
|
209 |
+
}
|
210 |
+
|
211 |
+
if ($item->getIsLast()) {
|
212 |
+
$classes[] = 'last';
|
213 |
+
}
|
214 |
+
|
215 |
+
if ($item->getClass()) {
|
216 |
+
$classes[] = $item->getClass();
|
217 |
+
}
|
218 |
+
|
219 |
+
if ($item->hasChildren()) {
|
220 |
+
$classes[] = 'parent';
|
221 |
+
}
|
222 |
+
|
223 |
+
return $classes;
|
224 |
+
}
|
225 |
+
|
226 |
+
/**
|
227 |
+
* Retrieve cache key data
|
228 |
+
*
|
229 |
+
* @return array
|
230 |
+
*/
|
231 |
+
public function getCacheKeyInfo()
|
232 |
+
{
|
233 |
+
$shortCacheId = array(
|
234 |
+
'TOPMENU',
|
235 |
+
Mage::app()->getStore()->getId(),
|
236 |
+
Mage::getDesign()->getPackageName(),
|
237 |
+
Mage::getDesign()->getTheme('template'),
|
238 |
+
Mage::getSingleton('customer/session')->getCustomerGroupId(),
|
239 |
+
'template' => $this->getTemplate(),
|
240 |
+
'name' => $this->getNameInLayout(),
|
241 |
+
$this->getCurrentEntityKey()
|
242 |
+
);
|
243 |
+
$cacheId = $shortCacheId;
|
244 |
+
|
245 |
+
$shortCacheId = array_values($shortCacheId);
|
246 |
+
$shortCacheId = implode('|', $shortCacheId);
|
247 |
+
$shortCacheId = md5($shortCacheId);
|
248 |
+
|
249 |
+
$cacheId['entity_key'] = $this->getCurrentEntityKey();
|
250 |
+
$cacheId['short_cache_id'] = $shortCacheId;
|
251 |
+
|
252 |
+
return $cacheId;
|
253 |
+
}
|
254 |
+
|
255 |
+
/**
|
256 |
+
* Retrieve current entity key
|
257 |
+
*
|
258 |
+
* @return int|string
|
259 |
+
*/
|
260 |
+
public function getCurrentEntityKey()
|
261 |
+
{
|
262 |
+
if (null === $this->_currentEntityKey) {
|
263 |
+
$this->_currentEntityKey = Mage::registry('current_entity_key')
|
264 |
+
? Mage::registry('current_entity_key') : Mage::app()->getStore()->getRootCategoryId();
|
265 |
+
}
|
266 |
+
return $this->_currentEntityKey;
|
267 |
+
}
|
268 |
+
}
|
app/code/community/Modulesgarden/ThemeMinimo/Block/Product/Bestseller.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Modulesgarden_ThemeMinimo_Block_Product_Bestseller extends Mage_Catalog_Block_Product_Abstract{
|
3 |
+
|
4 |
+
public function __construct() {
|
5 |
+
parent::__construct();
|
6 |
+
|
7 |
+
$visibility = array(
|
8 |
+
Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH,
|
9 |
+
Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG,
|
10 |
+
);
|
11 |
+
|
12 |
+
$storeId = Mage::app()->getStore()->getId();
|
13 |
+
$products = Mage::getResourceModel('reports/product_collection')
|
14 |
+
->addOrderedQty()
|
15 |
+
->addAttributeToSelect(array('name', 'price', 'small_image', 'mg_is_new'))
|
16 |
+
->setStoreId($storeId)
|
17 |
+
->addStoreFilter($storeId)
|
18 |
+
->addAttributeToFilter('status', array('eq' => Mage_Catalog_Model_Product_Status::STATUS_ENABLED))
|
19 |
+
->addAttributeToFilter('visibility' , array('in' => $visibility))
|
20 |
+
->setOrder('ordered_qty', 'desc'); // most best sellers on top
|
21 |
+
|
22 |
+
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($products);
|
23 |
+
|
24 |
+
$products->setPageSize(3)->setCurPage(1);
|
25 |
+
$this->setProductCollection($products);
|
26 |
+
}
|
27 |
+
}
|
28 |
+
?>
|
app/code/community/Modulesgarden/ThemeMinimo/Block/Product/Featured.php
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* * ********************************************************************
|
4 |
+
* Customization Services by ModulesGarden.com
|
5 |
+
* Copyright (c) ModulesGarden, INBS Group Brand, All Rights Reserved
|
6 |
+
* (2014-10-31, 13:42:58)
|
7 |
+
*
|
8 |
+
*
|
9 |
+
* CREATED BY MODULESGARDEN -> http://modulesgarden.com
|
10 |
+
* CONTACT -> contact@modulesgarden.com
|
11 |
+
*
|
12 |
+
*
|
13 |
+
*
|
14 |
+
*
|
15 |
+
* This software is furnished under a license and may be used and copied
|
16 |
+
* only in accordance with the terms of such license and with the
|
17 |
+
* inclusion of the above copyright notice. This software or any other
|
18 |
+
* copies thereof may not be provided or otherwise made available to any
|
19 |
+
* other person. No title to and ownership of the software is hereby
|
20 |
+
* transferred.
|
21 |
+
*
|
22 |
+
*
|
23 |
+
* ******************************************************************** */
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @author Grzegorz Draganik <grzegorz@modulesgarden.com>
|
27 |
+
*/
|
28 |
+
class Modulesgarden_ThemeMinimo_Block_Product_Featured extends Mage_Catalog_Block_Product_Abstract {
|
29 |
+
|
30 |
+
|
31 |
+
public function getProducts() {
|
32 |
+
$visibility = array(
|
33 |
+
Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH,
|
34 |
+
Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG,
|
35 |
+
);
|
36 |
+
|
37 |
+
$storeId = Mage::app()->getStore()->getId();
|
38 |
+
|
39 |
+
$products = Mage::getModel('catalog/product')->getCollection()
|
40 |
+
->addAttributeToFilter('mg_is_featured', array('eq' => 1))
|
41 |
+
->addAttributeToSelect(array('name', 'price', 'small_image', 'mg_is_new'))
|
42 |
+
->setStoreId($storeId)
|
43 |
+
->addStoreFilter($storeId)
|
44 |
+
->addAttributeToFilter('status', array('eq' => Mage_Catalog_Model_Product_Status::STATUS_ENABLED))
|
45 |
+
->addAttributeToFilter('visibility' , array('in' => $visibility))
|
46 |
+
->setPageSize(10);
|
47 |
+
|
48 |
+
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($products);
|
49 |
+
|
50 |
+
return $products;
|
51 |
+
}
|
52 |
+
|
53 |
+
}
|
app/code/community/Modulesgarden/ThemeMinimo/Helper/Data.php
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* * ********************************************************************
|
4 |
+
* Customization Services by ModulesGarden.com
|
5 |
+
* Copyright (c) ModulesGarden, INBS Group Brand, All Rights Reserved
|
6 |
+
* (2014-09-08, 15:56:42)
|
7 |
+
*
|
8 |
+
*
|
9 |
+
* CREATED BY MODULESGARDEN -> http://modulesgarden.com
|
10 |
+
* CONTACT -> contact@modulesgarden.com
|
11 |
+
*
|
12 |
+
*
|
13 |
+
*
|
14 |
+
*
|
15 |
+
* This software is furnished under a license and may be used and copied
|
16 |
+
* only in accordance with the terms of such license and with the
|
17 |
+
* inclusion of the above copyright notice. This software or any other
|
18 |
+
* copies thereof may not be provided or otherwise made available to any
|
19 |
+
* other person. No title to and ownership of the software is hereby
|
20 |
+
* transferred.
|
21 |
+
*
|
22 |
+
*
|
23 |
+
* ******************************************************************** */
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @author Grzegorz Draganik <grzegorz@modulesgarden.com>
|
27 |
+
*/
|
28 |
+
|
29 |
+
class Modulesgarden_ThemeMinimo_Helper_Data extends Mage_Core_Helper_Abstract {
|
30 |
+
|
31 |
+
}
|
app/code/community/Modulesgarden/ThemeMinimo/Model/System/Config/Source/Select.php
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* * ********************************************************************
|
4 |
+
* Customization Services by ModulesGarden.com
|
5 |
+
* Copyright (c) ModulesGarden, INBS Group Brand, All Rights Reserved
|
6 |
+
* (2014-09-09, 08:23:25)
|
7 |
+
*
|
8 |
+
*
|
9 |
+
* CREATED BY MODULESGARDEN -> http://modulesgarden.com
|
10 |
+
* CONTACT -> contact@modulesgarden.com
|
11 |
+
*
|
12 |
+
*
|
13 |
+
*
|
14 |
+
*
|
15 |
+
* This software is furnished under a license and may be used and copied
|
16 |
+
* only in accordance with the terms of such license and with the
|
17 |
+
* inclusion of the above copyright notice. This software or any other
|
18 |
+
* copies thereof may not be provided or otherwise made available to any
|
19 |
+
* other person. No title to and ownership of the software is hereby
|
20 |
+
* transferred.
|
21 |
+
*
|
22 |
+
*
|
23 |
+
* ******************************************************************** */
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @author Grzegorz Draganik <grzegorz@modulesgarden.com>
|
27 |
+
*/
|
28 |
+
class Modulesgarden_ThemeMinimo_Model_System_Config_Source_Select extends Varien_Object {
|
29 |
+
|
30 |
+
protected $_options;
|
31 |
+
|
32 |
+
public function toOptionArray() {
|
33 |
+
$options = array();
|
34 |
+
$pathExplode = explode('/', $this->getPath());
|
35 |
+
if (count($pathExplode) != 3)
|
36 |
+
return $options;
|
37 |
+
|
38 |
+
list($pathSection, $pathGroup, $pathField) = $pathExplode;
|
39 |
+
|
40 |
+
$section = Mage::getSingleton('adminhtml/config')->getSection($pathSection);
|
41 |
+
foreach ($section->groups->children() as $group_id => $group) {
|
42 |
+
if ($group_id == $pathGroup) {
|
43 |
+
foreach ($group->fields->children() as $field_id => $field) {
|
44 |
+
if ($field_id == $pathField) {
|
45 |
+
if ($field->options) {
|
46 |
+
foreach ($field->options->children() as $option) {
|
47 |
+
$options[] = array(
|
48 |
+
'value' => $option->value,
|
49 |
+
'label' => $option->label,
|
50 |
+
);
|
51 |
+
}
|
52 |
+
}
|
53 |
+
}
|
54 |
+
}
|
55 |
+
}
|
56 |
+
}
|
57 |
+
$this->_options = $options;
|
58 |
+
return $options;
|
59 |
+
}
|
60 |
+
|
61 |
+
public function toArray(array $arrAttributes = array()){
|
62 |
+
if ($this->_options === null)
|
63 |
+
$this->_options = $this->toOptionArray();
|
64 |
+
|
65 |
+
$options = array();
|
66 |
+
foreach ($this->_options as $op){
|
67 |
+
$options[$op['value']] = Mage::helper('adminhtml')->__($op['label']);
|
68 |
+
}
|
69 |
+
return $options;
|
70 |
+
}
|
71 |
+
|
72 |
+
}
|
app/code/community/Modulesgarden/ThemeMinimo/data/mgthememinimo_setup/data-install-1.0.0.php
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$storeName = Mage::getStoreConfig('general/store_information/name');
|
4 |
+
if(!$storeName) { $storeName = "Theme Crystal";}
|
5 |
+
$storeAddress = Mage::getStoreConfig('general/store_information/address');
|
6 |
+
if(!$storeAddress) { $storeAddress = "Your Street 22/A, Alaska";}
|
7 |
+
$storePhone = Mage::getStoreConfig('general/store_information/phone');
|
8 |
+
if(!$storePhone) { $storePhone = "+48 112 334 567";}
|
9 |
+
$storeEmail = Mage::getStoreConfig('trans_email/ident_general/email');
|
10 |
+
if(!$storeEmail) { $storeEmail = "company@my-company.com";}
|
11 |
+
$storeUrl = Mage::getBaseUrl();
|
12 |
+
|
13 |
+
$now = date("Y-m-d H:i:s", Mage::getModel('core/date')->timestamp(time()));
|
14 |
+
$block1 = Mage::getModel('cms/block')
|
15 |
+
->setTitle('Contact Block - Footer')
|
16 |
+
->setIdentifier('minimo-footer-col1')
|
17 |
+
->setContent("<h2>Contact:</h2>\r\n<ul>\r\n<li>{$storeName}<br />{$storeAddress}</li>\r\n<li>{$storePhone}</li>\r\n<li>{$storeEmail}</li>\r\n</ul>")
|
18 |
+
->setCreationTime($now)
|
19 |
+
->setUpdateTime($now)
|
20 |
+
->setIsActive(1)
|
21 |
+
->save();
|
22 |
+
$block2 = Mage::getModel('cms/block')
|
23 |
+
->setTitle('Information Block - Footer')
|
24 |
+
->setIdentifier('minimo-footer-col2')
|
25 |
+
->setContent("<h2>Information</h2>\r\n<ul>\r\n<li><a title=\"About Us\" href=\"{$storeUrl}about\">About Us</a></li>\r\n<li><a title=\"Contact Us\" href=\"{$storeUrl}contacts\">Contact Us</a></li>\r\n<li><a title=\"Terms &Conditions\" href=\"{$storeUrl}terms-conditions\">Terms & Conditions</a></li>\r\n<li><a title=\"Privacy Policy\" href=\"{$storeUrl}privacy-policy\">Privacy Policy</a></li>\r\n<li><a title=\"Orders and Returns\" href=\"{$storeUrl}orders-and-returns\">Orders and Returns</a></li>\r\n<li><a title=\"Site Map\" href=\"{$storeUrl}sitemap\">Site Map</a></li>\r\n</ul>")
|
26 |
+
->setCreationTime($now)
|
27 |
+
->setUpdateTime($now)
|
28 |
+
->setIsActive(1)
|
29 |
+
->save();
|
30 |
+
$block3 = Mage::getModel('cms/block')
|
31 |
+
->setTitle('Why choose us - Footer')
|
32 |
+
->setIdentifier('minimo-footer-col3')
|
33 |
+
->setContent("<h2>Why choose us</h2>\r\n<ul>\r\n<li><a title=\"Returns and Exchanges\" href=\"{$storeUrl}returns-and-exchanges\">Returns and Exchanges</a></li>\r\n<li><a title=\"Shipping Options\" href=\"{$storeUrl}shipping-options\">Shipping Options</a></li>\r\n<li><a title=\"Help & FAQs\" href=\"{$storeUrl}faq\">Help & FAQs</a></li>\r\n</ul>")
|
34 |
+
->setCreationTime($now)
|
35 |
+
->setUpdateTime($now)
|
36 |
+
->setIsActive(1)
|
37 |
+
->save();
|
38 |
+
$block4 = Mage::getModel('cms/block')
|
39 |
+
->setTitle('My Account Block - Footer')
|
40 |
+
->setIdentifier('minimo-footer-col4')
|
41 |
+
->setContent("<h2>My Account</h2>\r\n<ul>\r\n<li><a title=\"Sign In\" href=\"{$storeUrl}customer/account/login/\">Sign In</a></li>\r\n<li><a title=\"View Cart\" href=\"{$storeUrl}checkout/cart/\">View Cart</a></li>\r\n<li><a title=\"My Wishlist\" href=\"{$storeUrl}wishlist/\">My Wishlist</a></li>\r\n<li><a title=\"Checkout\" href=\"{$storeUrl}checkout/onepage/\">Check out</a></li>\r\n<li><a title=\"Help\" href=\"{$storeUrl}help\">Help</a></li>\r\n</ul>")
|
42 |
+
->setCreationTime($now)
|
43 |
+
->setUpdateTime($now)
|
44 |
+
->setIsActive(1)
|
45 |
+
->save();
|
46 |
+
$block5 = Mage::getModel('cms/block')
|
47 |
+
->setTitle('Minimo baner 1')
|
48 |
+
->setIdentifier('minimo-baner-1')
|
49 |
+
->setContent('<img src="{{skin url="images/slider/baner1.png"}}" alt="" />')
|
50 |
+
->setCreationTime($now)
|
51 |
+
->setUpdateTime($now)
|
52 |
+
->setIsActive(1)
|
53 |
+
->save();
|
54 |
+
$block6 = Mage::getModel('cms/block')
|
55 |
+
->setTitle('Minimo baner 2')
|
56 |
+
->setIdentifier('minimo-baner-2')
|
57 |
+
->setContent('<img src="{{skin url="images/slider/baner2.png"}}" alt="" />')
|
58 |
+
->setCreationTime($now)
|
59 |
+
->setUpdateTime($now)
|
60 |
+
->setIsActive(1)
|
61 |
+
->save();
|
62 |
+
$block7 = Mage::getModel('cms/block')
|
63 |
+
->setTitle('Minimo baner 3')
|
64 |
+
->setIdentifier('minimo-baner-3')
|
65 |
+
->setContent('<img src="{{skin url="images/slider/baner3.png"}}" alt="" />')
|
66 |
+
->setCreationTime($now)
|
67 |
+
->setUpdateTime($now)
|
68 |
+
->setIsActive(1)
|
69 |
+
->save();
|
70 |
+
|
71 |
+
$installer = $this;
|
72 |
+
$installer->startSetup();
|
73 |
+
|
74 |
+
foreach (array($block1->getId(), $block2->getId(), $block3->getId(), $block4->getId(), $block5->getId(), $block6->getId(), $block7->getId()) as $block_id){
|
75 |
+
$installer->run("INSERT INTO ".Mage::getSingleton('core/resource')->getTableName('cms_block_store')." (block_id, store_id) VALUES ({$block_id}, 0)");
|
76 |
+
}
|
77 |
+
|
78 |
+
$installer->run("
|
79 |
+
INSERT INTO `".Mage::getSingleton('core/resource')->getTableName('cms_page')."` (`page_id`, `title`, `root_template`, `meta_keywords`, `meta_description`, `identifier`, `content_heading`, `content`, `creation_time`, `update_time`, `is_active`, `sort_order`, `layout_update_xml`, `custom_theme`, `custom_root_template`, `custom_layout_update_xml`, `custom_theme_from`, `custom_theme_to`) VALUES
|
80 |
+
(NULL, 'Home page', 'one_column', NULL, NULL, 'home', NULL, '<h2>Welcome to our website</h2>\r\n<p><strong>Lorem ipsum dolor sit amet</strong>, consectetur adipiscing elit. Curabitur id est et sem facilisis tincidunt. In blandit elementum hendrerit. Donec efficitur sodales tincidunt. Etiam ac est dignissim, ornare magna ut, mattis magna. Nulla eu maximus tortor, non vehicula purus. Nullam ullamcorper vitae quam eu consequat.</p>\r\n<p>Aliquam tempus urna ipsum, quis dictum neque fermentum id. Etiam facilisis malesuada euismod. Sed in velit vulputate, volutpat nibh ut, faucibus nisi. Nam eget imperdiet ante. Quisque sit amet faucibus velit, id ornare ante. Cras eget metus lorem. Sed elit elit, imperdiet a mattis eget, tincidunt interdum turpis.</p>\r\n', '2007-08-23 10:03:25', '2014-11-06 15:13:54', 1, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
81 |
+
");
|
82 |
+
|
83 |
+
$installer->endSetup();
|
app/code/community/Modulesgarden/ThemeMinimo/etc/config.xml
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Modulesgarden_ThemeMinimo>
|
5 |
+
<version>1.0.0</version>
|
6 |
+
</Modulesgarden_ThemeMinimo>
|
7 |
+
</modules>
|
8 |
+
|
9 |
+
<global>
|
10 |
+
<models>
|
11 |
+
<mgthememinimo>
|
12 |
+
<class>Modulesgarden_ThemeMinimo_Model</class>
|
13 |
+
<resourceModel>mgthememinimo_resource</resourceModel>
|
14 |
+
</mgthememinimo>
|
15 |
+
<mgthememinimo_resource>
|
16 |
+
<class>Modulesgarden_ThemeMinimo_Model_Resource</class>
|
17 |
+
</mgthememinimo_resource>
|
18 |
+
</models>
|
19 |
+
<blocks>
|
20 |
+
<mgthememinimo>
|
21 |
+
<class>Modulesgarden_ThemeMinimo_Block</class>
|
22 |
+
</mgthememinimo>
|
23 |
+
</blocks>
|
24 |
+
<helpers>
|
25 |
+
<mgthememinimo>
|
26 |
+
<class>Modulesgarden_ThemeMinimo_Helper</class>
|
27 |
+
</mgthememinimo>
|
28 |
+
</helpers>
|
29 |
+
<resources>
|
30 |
+
<mgthememinimo_setup>
|
31 |
+
<setup>
|
32 |
+
<module>Modulesgarden_ThemeMinimo</module>
|
33 |
+
<class>Mage_Sales_Model_Mysql4_Setup</class>
|
34 |
+
</setup>
|
35 |
+
<connection>
|
36 |
+
<use>core_setup</use>
|
37 |
+
</connection>
|
38 |
+
</mgthememinimo_setup>
|
39 |
+
<mgthememinimo_write>
|
40 |
+
<connection>
|
41 |
+
<use>core_write</use>
|
42 |
+
</connection>
|
43 |
+
</mgthememinimo_write>
|
44 |
+
<mgthememinimo_read>
|
45 |
+
<connection>
|
46 |
+
<use>core_read</use>
|
47 |
+
</connection>
|
48 |
+
</mgthememinimo_read>
|
49 |
+
</resources>
|
50 |
+
</global>
|
51 |
+
|
52 |
+
<adminhtml>
|
53 |
+
<acl>
|
54 |
+
<resources>
|
55 |
+
<admin>
|
56 |
+
<children>
|
57 |
+
<system>
|
58 |
+
<children>
|
59 |
+
<config>
|
60 |
+
<children>
|
61 |
+
<mgthememinimo> <!-- the same as <sections> child name -->
|
62 |
+
<title>Modulesgarden Theme Minimo</title>
|
63 |
+
</mgthememinimo>
|
64 |
+
</children>
|
65 |
+
</config>
|
66 |
+
</children>
|
67 |
+
</system>
|
68 |
+
</children>
|
69 |
+
</admin>
|
70 |
+
</resources>
|
71 |
+
</acl>
|
72 |
+
</adminhtml>
|
73 |
+
|
74 |
+
<default>
|
75 |
+
<mgthememinimo>
|
76 |
+
<main>
|
77 |
+
<colorscheme>pink</colorscheme>
|
78 |
+
<fontfamily>opensans</fontfamily>
|
79 |
+
<colorfooter>lightgray</colorfooter>
|
80 |
+
<breadcrumbs>yes</breadcrumbs>
|
81 |
+
<showhome>no</showhome>
|
82 |
+
<slider>full</slider>
|
83 |
+
</main>
|
84 |
+
</mgthememinimo>
|
85 |
+
</default>
|
86 |
+
</config>
|
app/code/community/Modulesgarden/ThemeMinimo/etc/system.xml
ADDED
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<config>
|
3 |
+
<tabs>
|
4 |
+
<modulesgarden>
|
5 |
+
<label><![CDATA[<div style="line-height:0;"><img id="mg_logo_block" src="http://www.modulesgarden.com/images/magento/mgcommerce-logo-black.png" /></div>]]></label>
|
6 |
+
<sort_order>1100</sort_order>
|
7 |
+
</modulesgarden>
|
8 |
+
</tabs>
|
9 |
+
<sections>
|
10 |
+
<mgthememinimo translate="label">
|
11 |
+
<class>separator-top</class>
|
12 |
+
<label>Theme Minimo</label> <!-- change it for theme name -->
|
13 |
+
<tab>modulesgarden</tab>
|
14 |
+
<sort_order>10</sort_order>
|
15 |
+
<show_in_default>1</show_in_default>
|
16 |
+
<show_in_website>1</show_in_website>
|
17 |
+
<show_in_store>1</show_in_store>
|
18 |
+
<groups>
|
19 |
+
<main translate="label">
|
20 |
+
<label>Configuration</label>
|
21 |
+
<frontend_type>text</frontend_type>
|
22 |
+
<sort_order>1</sort_order>
|
23 |
+
<show_in_default>1</show_in_default>
|
24 |
+
<show_in_website>1</show_in_website>
|
25 |
+
<show_in_store>1</show_in_store>
|
26 |
+
<fields>
|
27 |
+
<!-- FIELDS IN CONFIGURATION -->
|
28 |
+
<colorscheme translate="label"> <!-- Mage::getStoreConfig('mgthememinimo/main/colorscheme') -->
|
29 |
+
<label>Color Scheme</label>
|
30 |
+
<comment></comment>
|
31 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
32 |
+
<source_model>mgthememinimo/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
33 |
+
<options> <!-- only if select|multiselect with constant options -->
|
34 |
+
<pink>
|
35 |
+
<label>Blue and Red</label>
|
36 |
+
<value>pink</value>
|
37 |
+
</pink>
|
38 |
+
<green>
|
39 |
+
<label>Green</label>
|
40 |
+
<value>green</value>
|
41 |
+
</green>
|
42 |
+
</options>
|
43 |
+
<sort_order>1</sort_order>
|
44 |
+
<show_in_default>1</show_in_default>
|
45 |
+
<show_in_website>1</show_in_website>
|
46 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
47 |
+
</colorscheme>
|
48 |
+
<slider translate="label">
|
49 |
+
<label>Select Slider type</label>
|
50 |
+
<comment>Select type of slider which you want display on your home page</comment>
|
51 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
52 |
+
<source_model>mgthememinimo/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
53 |
+
<options> <!-- only if select|multiselect with constant options -->
|
54 |
+
<full>
|
55 |
+
<label>Slider full width with png images</label>
|
56 |
+
<value>full</value>
|
57 |
+
</full>
|
58 |
+
<wrapped> <!-- just unique -->
|
59 |
+
<label>Slider wrapped with image in background</label>
|
60 |
+
<value>wrapped</value>
|
61 |
+
</wrapped>
|
62 |
+
</options>
|
63 |
+
<sort_order>1</sort_order>
|
64 |
+
<show_in_default>1</show_in_default>
|
65 |
+
<show_in_website>1</show_in_website>
|
66 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
67 |
+
</slider>
|
68 |
+
<fontfamily translate="label">
|
69 |
+
<label>Font</label>
|
70 |
+
<comment>Choose your favorite font.</comment>
|
71 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
72 |
+
<source_model>mgthememinimo/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
73 |
+
<options> <!-- only if select|multiselect with constant options -->
|
74 |
+
<opensans> <!-- just unique -->
|
75 |
+
<label>Open Sans</label>
|
76 |
+
<value>opensans</value>
|
77 |
+
</opensans>
|
78 |
+
<lato>
|
79 |
+
<label>Lato</label>
|
80 |
+
<value>lato</value>
|
81 |
+
</lato>
|
82 |
+
<roboto>
|
83 |
+
<label>Roboto</label>
|
84 |
+
<value>roboto</value>
|
85 |
+
</roboto>
|
86 |
+
<raleway>
|
87 |
+
<label>Raleway</label>
|
88 |
+
<value>raleway</value>
|
89 |
+
</raleway>
|
90 |
+
</options>
|
91 |
+
<sort_order>1</sort_order>
|
92 |
+
<show_in_default>1</show_in_default>
|
93 |
+
<show_in_website>1</show_in_website>
|
94 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
95 |
+
</fontfamily>
|
96 |
+
<colorfooter translate="label">
|
97 |
+
<label>Choose color (footer and top-header)</label>
|
98 |
+
<comment></comment>
|
99 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
100 |
+
<source_model>mgthememinimo/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
101 |
+
<options> <!-- only if select|multiselect with constant options -->
|
102 |
+
<lightgray> <!-- just unique -->
|
103 |
+
<label>Light Gray</label>
|
104 |
+
<value>lightgray</value>
|
105 |
+
</lightgray>
|
106 |
+
<dark>
|
107 |
+
<label>Dark</label>
|
108 |
+
<value>dark</value>
|
109 |
+
</dark>
|
110 |
+
<white>
|
111 |
+
<label>White</label>
|
112 |
+
<value>white</value>
|
113 |
+
</white>
|
114 |
+
</options>
|
115 |
+
<sort_order>1</sort_order>
|
116 |
+
<show_in_default>1</show_in_default>
|
117 |
+
<show_in_website>1</show_in_website>
|
118 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
119 |
+
</colorfooter>
|
120 |
+
<breadcrumbs translate="label">
|
121 |
+
<label>Show breadcrumbs</label>
|
122 |
+
<comment>Breadcrumbs under menu navigation.</comment>
|
123 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
124 |
+
<source_model>mgthememinimo/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
125 |
+
<options> <!-- only if select|multiselect with constant options -->
|
126 |
+
<yes> <!-- just unique -->
|
127 |
+
<label>Yes</label>
|
128 |
+
<value>yes</value>
|
129 |
+
</yes>
|
130 |
+
<no>
|
131 |
+
<label>No</label>
|
132 |
+
<value>no</value>
|
133 |
+
</no>
|
134 |
+
</options>
|
135 |
+
<sort_order>1</sort_order>
|
136 |
+
<show_in_default>1</show_in_default>
|
137 |
+
<show_in_website>1</show_in_website>
|
138 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
139 |
+
</breadcrumbs>
|
140 |
+
<showhome translate="label"> <!-- just an example -->
|
141 |
+
<label>Show home page link</label>
|
142 |
+
<comment>Add home page link in top-navigation</comment>
|
143 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
144 |
+
<source_model>mgthememinimo/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
145 |
+
<options> <!-- only if select|multiselect with constant options -->
|
146 |
+
<no>
|
147 |
+
<label>No</label>
|
148 |
+
<value>no</value>
|
149 |
+
</no>
|
150 |
+
<yes>
|
151 |
+
<label>Yes</label>
|
152 |
+
<value>yes</value>
|
153 |
+
</yes>
|
154 |
+
</options>
|
155 |
+
<sort_order>1</sort_order>
|
156 |
+
<show_in_default>1</show_in_default>
|
157 |
+
<show_in_website>1</show_in_website>
|
158 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
159 |
+
</showhome>
|
160 |
+
</fields>
|
161 |
+
</main>
|
162 |
+
</groups>
|
163 |
+
</mgthememinimo>
|
164 |
+
</sections>
|
165 |
+
</config>
|
app/code/community/Modulesgarden/ThemeMinimo/sql/mgthememinimo_setup/install-1.0.0.php
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* * ********************************************************************
|
4 |
+
* Customization Services by ModulesGarden.com
|
5 |
+
* Copyright (c) ModulesGarden, INBS Group Brand, All Rights Reserved
|
6 |
+
* (2014-10-06, 11:20:48)
|
7 |
+
*
|
8 |
+
*
|
9 |
+
* CREATED BY MODULESGARDEN -> http://modulesgarden.com
|
10 |
+
* CONTACT -> contact@modulesgarden.com
|
11 |
+
*
|
12 |
+
*
|
13 |
+
*
|
14 |
+
*
|
15 |
+
* This software is furnished under a license and may be used and copied
|
16 |
+
* only in accordance with the terms of such license and with the
|
17 |
+
* inclusion of the above copyright notice. This software or any other
|
18 |
+
* copies thereof may not be provided or otherwise made available to any
|
19 |
+
* other person. No title to and ownership of the software is hereby
|
20 |
+
* transferred.
|
21 |
+
*
|
22 |
+
*
|
23 |
+
* ******************************************************************** */
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @author Grzegorz Draganik <grzegorz@modulesgarden.com>
|
27 |
+
*/
|
28 |
+
|
29 |
+
$installer = $this;
|
30 |
+
$installer->startSetup();
|
31 |
+
|
32 |
+
$attrs = array(
|
33 |
+
array(
|
34 |
+
'code' => 'mg_is_featured',
|
35 |
+
'type' => 'int',
|
36 |
+
'label' => 'Is Featured?',
|
37 |
+
'note' => 'Attribute For ModulesGarden Themes',
|
38 |
+
'group' => 'General',
|
39 |
+
),
|
40 |
+
array(
|
41 |
+
'code' => 'mg_is_new',
|
42 |
+
'type' => 'int',
|
43 |
+
'label' => 'Is New?',
|
44 |
+
'note' => 'Attribute For ModulesGarden Themes',
|
45 |
+
'group' => 'General',
|
46 |
+
)
|
47 |
+
);
|
48 |
+
|
49 |
+
$objCatalogEavSetup = Mage::getResourceModel('catalog/eav_mysql4_setup', 'core_setup');
|
50 |
+
foreach ($attrs as $attr){
|
51 |
+
$attrIdTest = $objCatalogEavSetup->getAttributeId(Mage_Catalog_Model_Product::ENTITY, $attr['code']);
|
52 |
+
|
53 |
+
if ($attrIdTest === false) {
|
54 |
+
$objCatalogEavSetup->addAttribute(Mage_Catalog_Model_Product::ENTITY, $attr['code'], array(
|
55 |
+
'group' => $attr['group'],
|
56 |
+
'sort_order' => 7,
|
57 |
+
'type' => $attr['type'],
|
58 |
+
'backend' => '',
|
59 |
+
'frontend' => '',
|
60 |
+
'label' => $attr['label'],
|
61 |
+
'note' => $attr['note'],
|
62 |
+
'input' => 'boolean',
|
63 |
+
'source' => 'eav/entity_attribute_source_table',
|
64 |
+
'class' => '',
|
65 |
+
'source' => '',
|
66 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
67 |
+
'visible' => true,
|
68 |
+
'required' => false,
|
69 |
+
'user_defined' => true,
|
70 |
+
'default' => '0',
|
71 |
+
'visible_on_front' => false,
|
72 |
+
'unique' => false,
|
73 |
+
'is_configurable' => false,
|
74 |
+
'used_for_promo_rules' => false
|
75 |
+
));
|
76 |
+
}
|
77 |
+
}
|
78 |
+
|
79 |
+
$installer->endSetup();
|
app/design/frontend/modulesgarden/minimo/layout/catalog.xml
ADDED
@@ -0,0 +1,453 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
Supported layout update handles (action):
|
29 |
+
- catalog_product_gallery
|
30 |
+
- catalog_product_compare_index
|
31 |
+
|
32 |
+
Supported layout update handles (special):
|
33 |
+
- default
|
34 |
+
- catalog_category_default
|
35 |
+
- catalog_category_layered
|
36 |
+
- catalog_product_view
|
37 |
+
|
38 |
+
-->
|
39 |
+
<layout version="0.1.0">
|
40 |
+
|
41 |
+
<!--
|
42 |
+
Default layout, loads most of the pages
|
43 |
+
-->
|
44 |
+
|
45 |
+
<default>
|
46 |
+
|
47 |
+
<!-- Mage_Catalog -->
|
48 |
+
<reference name="left">
|
49 |
+
<block type="core/template" name="left.permanent.callout" template="callouts/left_col.phtml">
|
50 |
+
<action method="setImgSrc"><src>images/media/col_left_callout.jpg</src></action>
|
51 |
+
<action method="setImgAlt" translate="alt" module="catalog"><alt>Our customer service is available 24/7. Call us at (555) 555-0123.</alt></action>
|
52 |
+
<action method="setLinkUrl"><url>checkout/cart</url></action>
|
53 |
+
</block>
|
54 |
+
</reference>
|
55 |
+
|
56 |
+
<reference name="left">
|
57 |
+
<remove name="left.permanent.callout" />
|
58 |
+
</reference>
|
59 |
+
|
60 |
+
<reference name="right">
|
61 |
+
<block type="catalog/product_compare_sidebar" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
|
62 |
+
<block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml">
|
63 |
+
<action method="setImgSrc"><src>images/media/col_right_callout.jpg</src></action>
|
64 |
+
<action method="setImgAlt" translate="alt" module="catalog"><alt>Keep your eyes open for our special Back to School items and save A LOT!</alt></action>
|
65 |
+
</block>
|
66 |
+
</reference>
|
67 |
+
|
68 |
+
<reference name="right">
|
69 |
+
<remove name="right.permanent.callout" />
|
70 |
+
</reference>
|
71 |
+
|
72 |
+
<reference name="footer_links">
|
73 |
+
<action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
|
74 |
+
</reference>
|
75 |
+
<block type="catalog/product_price_template" name="catalog_product_price_template" />
|
76 |
+
</default>
|
77 |
+
|
78 |
+
|
79 |
+
<!--
|
80 |
+
Category default layout
|
81 |
+
-->
|
82 |
+
|
83 |
+
<catalog_category_default translate="label">
|
84 |
+
<label>Catalog Category (Non-Anchor)</label>
|
85 |
+
<reference name="root">
|
86 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
87 |
+
</reference>
|
88 |
+
<reference name="left">
|
89 |
+
<block type="catalog/navigation" name="catalog.leftnav" after="currency" template="catalog/navigation/left.phtml"/>
|
90 |
+
</reference>
|
91 |
+
<reference name="content">
|
92 |
+
<block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
|
93 |
+
<block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
|
94 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
95 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
96 |
+
<!-- The following code shows how to set your own pager increments -->
|
97 |
+
<!--
|
98 |
+
<action method="setDefaultListPerPage"><limit>4</limit></action>
|
99 |
+
<action method="setDefaultGridPerPage"><limit>9</limit></action>
|
100 |
+
<action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
|
101 |
+
<action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
|
102 |
+
<action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
|
103 |
+
<action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
|
104 |
+
<action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
|
105 |
+
-->
|
106 |
+
</block>
|
107 |
+
|
108 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>empty</pageLayout><columnCount>4</columnCount></action>
|
109 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>one_column</pageLayout><columnCount>4</columnCount></action>
|
110 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>two_columns_left</pageLayout><columnCount>3</columnCount></action>
|
111 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>two_columns_right</pageLayout><columnCount>3</columnCount></action>
|
112 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>three_columns</pageLayout><columnCount>2</columnCount></action>
|
113 |
+
|
114 |
+
<action method="addColumnCountLayoutDepend"><layout>empty</layout><count>4</count></action>
|
115 |
+
<action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>4</count></action>
|
116 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>3</count></action>
|
117 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>3</count></action>
|
118 |
+
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>2</count></action>
|
119 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
120 |
+
|
121 |
+
<action method="addAttribute"><name>mg_is_new</name></action>
|
122 |
+
</block>
|
123 |
+
</block>
|
124 |
+
</reference>
|
125 |
+
</catalog_category_default>
|
126 |
+
|
127 |
+
<!--
|
128 |
+
Category layered navigation layout
|
129 |
+
-->
|
130 |
+
|
131 |
+
<catalog_category_layered translate="label">
|
132 |
+
<label>Catalog Category (Anchor)</label>
|
133 |
+
<reference name="root">
|
134 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
135 |
+
</reference>
|
136 |
+
<reference name="left">
|
137 |
+
<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
|
138 |
+
</reference>
|
139 |
+
<reference name="content">
|
140 |
+
<block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
|
141 |
+
<block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
|
142 |
+
<!-- <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/su.phtml</template></action> -->
|
143 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
144 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
145 |
+
<!-- The following code shows how to set your own pager increments -->
|
146 |
+
<!--
|
147 |
+
<action method="setDefaultListPerPage"><limit>4</limit></action>
|
148 |
+
<action method="setDefaultGridPerPage"><limit>3</limit></action>
|
149 |
+
<action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
|
150 |
+
<action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
|
151 |
+
<action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
|
152 |
+
<action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
|
153 |
+
<action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
|
154 |
+
<action method="addPagerLimit"><mode>grid</mode><limit>3</limit></action>
|
155 |
+
<action method="addPagerLimit"><mode>grid</mode><limit>6</limit></action>
|
156 |
+
<action method="addPagerLimit"><mode>grid</mode><limit>9</limit></action>
|
157 |
+
<action method="addPagerLimit" translate="label"><mode>grid</mode><limit>all</limit><label>All</label></action>
|
158 |
+
-->
|
159 |
+
</block>
|
160 |
+
|
161 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>empty</pageLayout><columnCount>4</columnCount></action>
|
162 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>one_column</pageLayout><columnCount>4</columnCount></action>
|
163 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>two_columns_left</pageLayout><columnCount>3</columnCount></action>
|
164 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>two_columns_right</pageLayout><columnCount>3</columnCount></action>
|
165 |
+
<action method="addColumnCountLayoutDepend"><pageLayout>three_columns</pageLayout><columnCount>2</columnCount></action>
|
166 |
+
|
167 |
+
<action method="addColumnCountLayoutDepend"><layout>empty</layout><count>4</count></action>
|
168 |
+
<action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>4</count></action>
|
169 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>3</count></action>
|
170 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>3</count></action>
|
171 |
+
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>2</count></action>
|
172 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
173 |
+
|
174 |
+
<action method="addAttribute"><name>mg_is_new</name></action>
|
175 |
+
</block>
|
176 |
+
</block>
|
177 |
+
</reference>
|
178 |
+
</catalog_category_layered>
|
179 |
+
|
180 |
+
<!--
|
181 |
+
Compare products page
|
182 |
+
-->
|
183 |
+
|
184 |
+
<catalog_product_compare_index translate="label">
|
185 |
+
<label>Catalog Product Compare List</label>
|
186 |
+
<!-- Mage_Catalog -->
|
187 |
+
<reference name="root">
|
188 |
+
<action method="setTemplate"><template>page/popup.phtml</template></action>
|
189 |
+
</reference>
|
190 |
+
<reference name="head">
|
191 |
+
<action method="addJs"><script>scriptaculous/scriptaculous.js</script></action>
|
192 |
+
<action method="addJs"><script>varien/product.js</script></action>
|
193 |
+
</reference>
|
194 |
+
<reference name="content">
|
195 |
+
<block type="catalog/product_compare_list" name="catalog.compare.list" template="catalog/product/compare/list.phtml"/>
|
196 |
+
</reference>
|
197 |
+
</catalog_product_compare_index>
|
198 |
+
|
199 |
+
<customer_account_index>
|
200 |
+
<reference name="right">
|
201 |
+
<action method="unsetChild"><name>catalog.compare.sidebar</name></action>
|
202 |
+
</reference>
|
203 |
+
</customer_account_index>
|
204 |
+
|
205 |
+
<!--
|
206 |
+
Product view
|
207 |
+
-->
|
208 |
+
|
209 |
+
<catalog_product_view translate="label">
|
210 |
+
<label>Catalog Product View (Any)</label>
|
211 |
+
<!-- Mage_Catalog -->
|
212 |
+
<reference name="root">
|
213 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
214 |
+
</reference>
|
215 |
+
<reference name="head">
|
216 |
+
<action method="addJs"><script>varien/product.js</script></action>
|
217 |
+
<action method="addJs"><script>varien/configurable.js</script></action>
|
218 |
+
|
219 |
+
<action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
|
220 |
+
<action method="addItem"><type>js</type><name>calendar/calendar.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
|
221 |
+
<action method="addItem"><type>js</type><name>calendar/calendar-setup.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
|
222 |
+
</reference>
|
223 |
+
<reference name="content">
|
224 |
+
<block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
|
225 |
+
|
226 |
+
<action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/summary.phtml</template></action>
|
227 |
+
<action method="addReviewSummaryTemplate"><type>short</type><template>review/helper/summary_short.phtml</template></action>
|
228 |
+
<action method="addReviewSummaryTemplate"><type>...</type><template>...</template></action>
|
229 |
+
|
230 |
+
<block type="catalog/product_view_media" name="product.info.media" as="media" template="catalog/product/view/media.phtml"/>
|
231 |
+
<block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
|
232 |
+
<label>Alert Urls</label>
|
233 |
+
</block>
|
234 |
+
|
235 |
+
<action method="setTierPriceTemplate"><template>catalog/product/view/tierprices.phtml</template></action>
|
236 |
+
|
237 |
+
<block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
|
238 |
+
<action method="setColumnCount"><columns>3</columns></action>
|
239 |
+
<action method="setItemLimit"><type>upsell</type><limit>4</limit></action>
|
240 |
+
</block>
|
241 |
+
|
242 |
+
<block type="catalog/product_view_additional" name="product.info.additional" as="product_additional_data" />
|
243 |
+
<block type="catalog/product_view_description" name="product.description" as="description" template="catalog/product/view/description.phtml">
|
244 |
+
<action method="addToParentGroup"><group>detailed_info</group></action>
|
245 |
+
</block>
|
246 |
+
<block type="catalog/product_view_attributes" name="product.attributes" as="additional" template="catalog/product/view/attributes.phtml">
|
247 |
+
<action method="addToParentGroup"><group>detailed_info</group></action>
|
248 |
+
</block>
|
249 |
+
<block type="catalog/product_view" name="product.info.addto" as="addto" template="catalog/product/view/addto.phtml"/>
|
250 |
+
<block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml"/>
|
251 |
+
|
252 |
+
<block type="core/text_list" name="product.info.extrahint" as="extrahint" translate="label">
|
253 |
+
<label>Product View Extra Hint</label>
|
254 |
+
</block>
|
255 |
+
|
256 |
+
<block type="catalog/product_view" name="product.info.options.wrapper" as="product_options_wrapper" template="catalog/product/view/options/wrapper.phtml" translate="label">
|
257 |
+
<label>Info Column Options Wrapper</label>
|
258 |
+
<block type="core/template" name="options_js" template="catalog/product/view/options/js.phtml"/>
|
259 |
+
<block type="catalog/product_view_options" name="product.info.options" as="product_options" template="catalog/product/view/options.phtml">
|
260 |
+
<action method="addOptionRenderer"><type>text</type><block>catalog/product_view_options_type_text</block><template>catalog/product/view/options/type/text.phtml</template></action>
|
261 |
+
<action method="addOptionRenderer"><type>file</type><block>catalog/product_view_options_type_file</block><template>catalog/product/view/options/type/file.phtml</template></action>
|
262 |
+
<action method="addOptionRenderer"><type>select</type><block>catalog/product_view_options_type_select</block><template>catalog/product/view/options/type/select.phtml</template></action>
|
263 |
+
<action method="addOptionRenderer"><type>date</type><block>catalog/product_view_options_type_date</block><template>catalog/product/view/options/type/date.phtml</template></action>
|
264 |
+
</block>
|
265 |
+
<block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
|
266 |
+
</block>
|
267 |
+
<block type="catalog/product_view" name="product.info.options.wrapper.bottom" as="product_options_wrapper_bottom" template="catalog/product/view/options/wrapper/bottom.phtml" translate="label">
|
268 |
+
<label>Bottom Block Options Wrapper</label>
|
269 |
+
<action method="insert"><block>product.tierprices</block></action>
|
270 |
+
<block type="catalog/product_view" name="product.clone_prices" as="prices" template="catalog/product/view/price_clone.phtml"/>
|
271 |
+
<action method="append"><block>product.info.addtocart</block></action>
|
272 |
+
<action method="append"><block>product.info.addto</block></action>
|
273 |
+
</block>
|
274 |
+
|
275 |
+
<block type="core/template_facade" name="product.info.container1" as="container1">
|
276 |
+
<action method="setDataByKey"><key>alias_in_layout</key><value>container1</value></action>
|
277 |
+
<action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
|
278 |
+
<action method="append"><block>product.info.options.wrapper</block></action>
|
279 |
+
<action method="append"><block>product.info.options.wrapper.bottom</block></action>
|
280 |
+
</block>
|
281 |
+
<block type="core/template_facade" name="product.info.container2" as="container2">
|
282 |
+
<action method="setDataByKey"><key>alias_in_layout</key><value>container2</value></action>
|
283 |
+
<action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
|
284 |
+
<action method="append"><block>product.info.options.wrapper</block></action>
|
285 |
+
<action method="append"><block>product.info.options.wrapper.bottom</block></action>
|
286 |
+
</block>
|
287 |
+
<action method="unsetCallChild"><child>container1</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
|
288 |
+
<action method="unsetCallChild"><child>container2</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
|
289 |
+
</block>
|
290 |
+
</reference>
|
291 |
+
|
292 |
+
<reference name="right">
|
293 |
+
<block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
|
294 |
+
</reference>
|
295 |
+
</catalog_product_view>
|
296 |
+
|
297 |
+
<!--
|
298 |
+
Additional block dependant on product type
|
299 |
+
-->
|
300 |
+
<PRODUCT_TYPE_simple translate="label" module="catalog">
|
301 |
+
<label>Catalog Product View (Simple)</label>
|
302 |
+
<reference name="product.info">
|
303 |
+
<block type="catalog/product_view_type_simple" name="product.info.simple" as="product_type_data" template="catalog/product/view/type/default.phtml">
|
304 |
+
<block type="core/text_list" name="product.info.simple.extra" as="product_type_data_extra" translate="label">
|
305 |
+
<label>Product Extra Info</label>
|
306 |
+
</block>
|
307 |
+
</block>
|
308 |
+
</reference>
|
309 |
+
</PRODUCT_TYPE_simple>
|
310 |
+
<PRODUCT_TYPE_configurable translate="label" module="catalog">
|
311 |
+
<label>Catalog Product View (Configurable)</label>
|
312 |
+
<reference name="product.info">
|
313 |
+
<block type="catalog/product_view_type_configurable" name="product.info.configurable" as="product_type_data" template="catalog/product/view/type/default.phtml">
|
314 |
+
<block type="core/text_list" name="product.info.configurable.extra" as="product_type_data_extra" translate="label">
|
315 |
+
<label>Product Extra Info</label>
|
316 |
+
</block>
|
317 |
+
</block>
|
318 |
+
</reference>
|
319 |
+
<reference name="product.info.options.wrapper">
|
320 |
+
<block type="catalog/product_view_type_configurable" name="product.info.options.configurable" as="options_configurable" before="-" template="catalog/product/view/type/options/configurable.phtml"/>
|
321 |
+
</reference>
|
322 |
+
</PRODUCT_TYPE_configurable>
|
323 |
+
<PRODUCT_TYPE_grouped translate="label" module="catalog">
|
324 |
+
<label>Catalog Product View (Grouped)</label>
|
325 |
+
<reference name="product.info">
|
326 |
+
<block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml">
|
327 |
+
<block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra" translate="label">
|
328 |
+
<label>Product Extra Info</label>
|
329 |
+
</block>
|
330 |
+
</block>
|
331 |
+
</reference>
|
332 |
+
</PRODUCT_TYPE_grouped>
|
333 |
+
<PRODUCT_TYPE_virtual translate="label" module="catalog">
|
334 |
+
<label>Catalog Product View (Virtual)</label>
|
335 |
+
<reference name="product.info">
|
336 |
+
<block type="catalog/product_view_type_virtual" name="product.info.virtual" as="product_type_data" template="catalog/product/view/type/default.phtml">
|
337 |
+
<block type="core/text_list" name="product.info.virtual.extra" as="product_type_data_extra" translate="label">
|
338 |
+
<label>Product Extra Info</label>
|
339 |
+
</block>
|
340 |
+
</block>
|
341 |
+
</reference>
|
342 |
+
</PRODUCT_TYPE_virtual>
|
343 |
+
|
344 |
+
|
345 |
+
|
346 |
+
<!--
|
347 |
+
Product send to friend
|
348 |
+
-->
|
349 |
+
|
350 |
+
<catalog_product_send translate="label">
|
351 |
+
<label>Catalog Product Email to a Friend</label>
|
352 |
+
<!-- Mage_Catalog -->
|
353 |
+
<reference name="root">
|
354 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
355 |
+
</reference>
|
356 |
+
<reference name="head">
|
357 |
+
<action method="addJs"><script>varien/product.js</script></action>
|
358 |
+
</reference>
|
359 |
+
<reference name="content">
|
360 |
+
<block type="catalog/product_send" name="product.send" template="catalog/product/send.phtml">
|
361 |
+
</block>
|
362 |
+
</reference>
|
363 |
+
</catalog_product_send>
|
364 |
+
|
365 |
+
<!--
|
366 |
+
Product additional images gallery popup
|
367 |
+
-->
|
368 |
+
|
369 |
+
<catalog_product_gallery translate="label">
|
370 |
+
<label>Catalog Product Image Gallery Popup</label>
|
371 |
+
<!-- Mage_Catalog -->
|
372 |
+
<reference name="root">
|
373 |
+
<action method="setTemplate"><template>page/popup.phtml</template></action>
|
374 |
+
</reference>
|
375 |
+
<reference name="content">
|
376 |
+
<block type="catalog/product_gallery" name="catalog_product_gallery" template="catalog/product/gallery.phtml"/>
|
377 |
+
</reference>
|
378 |
+
</catalog_product_gallery>
|
379 |
+
|
380 |
+
<!--
|
381 |
+
SEO Site Map
|
382 |
+
-->
|
383 |
+
|
384 |
+
<catalog_seo_sitemap translate="label">
|
385 |
+
<label>Catalog Seo Sitemap (Common)</label>
|
386 |
+
<remove name="right"/>
|
387 |
+
<remove name="left"/>
|
388 |
+
|
389 |
+
<reference name="root">
|
390 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
391 |
+
</reference>
|
392 |
+
<reference name="content">
|
393 |
+
<block type="page/template_container" name="seo.sitemap.container" template="catalog/seo/sitemap/container.phtml">
|
394 |
+
<block type="page/template_links" name="seo.sitemap.links" as="links" template="page/template/links.phtml"/>
|
395 |
+
<block type="page/html_pager" name="seo.sitemap.pager.top" as="pager_top" template="page/html/pager.phtml"/>
|
396 |
+
<block type="page/html_pager" name="seo.sitemap.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
|
397 |
+
</block>
|
398 |
+
</reference>
|
399 |
+
</catalog_seo_sitemap>
|
400 |
+
|
401 |
+
<catalog_seo_sitemap_category translate="label">
|
402 |
+
<label>Catalog Seo Sitemap (Category List)</label>
|
403 |
+
<reference name="head">
|
404 |
+
<action method="setTitle" translate="title" module="catalog"><title>Site Map</title></action>
|
405 |
+
</reference>
|
406 |
+
<update handle="catalog_seo_sitemap" />
|
407 |
+
<reference name="seo.sitemap.container">
|
408 |
+
<action method="setTitle" translate="title" module="catalog"><title>Categories</title></action>
|
409 |
+
<block type="catalog/seo_sitemap_category" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
|
410 |
+
<action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
|
411 |
+
<action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
|
412 |
+
<action method="setItemsTitle" translate="title" module="catalog"><title>categories</title></action>
|
413 |
+
</block>
|
414 |
+
</reference>
|
415 |
+
<reference name="seo.sitemap.links">
|
416 |
+
<action method="addLink" translate="label title" module="catalog"><label>Products Sitemap</label><url helper="catalog/map/getProductUrl"/><title>Products Sitemap</title></action>
|
417 |
+
</reference>
|
418 |
+
</catalog_seo_sitemap_category>
|
419 |
+
|
420 |
+
<catalog_seo_sitemap_category_tree translate="label">
|
421 |
+
<label>Catalog Seo Sitemap (Category Tree)</label>
|
422 |
+
<reference name="seo.sitemap.container">
|
423 |
+
<remove name="seo.sitemap.pager.top" />
|
424 |
+
<remove name="seo.sitemap.pager.bottom" />
|
425 |
+
<block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.top" as="pager_top" template="page/html/pager.phtml"/>
|
426 |
+
<block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
|
427 |
+
<remove name="seo.sitemap.sitemap" />
|
428 |
+
<block type="catalog/seo_sitemap_tree_category" name="seo.sitemap.sitemap_tree" as="sitemap" after="pager_top" template="catalog/seo/tree.phtml">
|
429 |
+
<action method="bindPager"><pager>seo.sitemap.tree.pager.top</pager></action>
|
430 |
+
<action method="bindPager"><pager>seo.sitemap.tree.pager.bottom</pager></action>
|
431 |
+
</block>
|
432 |
+
</reference>
|
433 |
+
</catalog_seo_sitemap_category_tree>
|
434 |
+
|
435 |
+
<catalog_seo_sitemap_product translate="label">
|
436 |
+
<label>Catalog Seo Sitemap (Product List)</label>
|
437 |
+
<reference name="head">
|
438 |
+
<action method="setTitle" translate="title" module="catalog"><title>Site Map</title></action>
|
439 |
+
</reference>
|
440 |
+
<update handle="catalog_seo_sitemap" />
|
441 |
+
<reference name="seo.sitemap.container">
|
442 |
+
<action method="setTitle" translate="title" module="catalog"><title>Products</title></action>
|
443 |
+
<block type="catalog/seo_sitemap_product" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
|
444 |
+
<action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
|
445 |
+
<action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
|
446 |
+
<action method="setItemsTitle" translate="title" module="catalog"><title>products</title></action>
|
447 |
+
</block>
|
448 |
+
</reference>
|
449 |
+
<reference name="seo.sitemap.links">
|
450 |
+
<action method="addLink" translate="label title" module="catalog"><label>Categories Sitemap</label><url helper="catalog/map/getCategoryUrl"/><title>Categories Sitemap</title></action>
|
451 |
+
</reference>
|
452 |
+
</catalog_seo_sitemap_product>
|
453 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/catalogsearch.xml
ADDED
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
|
31 |
+
<default>
|
32 |
+
<reference name="catalog.topnav">
|
33 |
+
<block type="core/template" name="top.search" as="topSearch" template="catalogsearch/form.mini.phtml"/>
|
34 |
+
</reference>
|
35 |
+
<reference name="footer_links">
|
36 |
+
<action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
|
37 |
+
<label>Search Terms</label>
|
38 |
+
<url helper="catalogsearch/getSearchTermUrl" />
|
39 |
+
<title>Search Terms</title>
|
40 |
+
</action>
|
41 |
+
<action method="addLink" translate="label title" module="catalogsearch">
|
42 |
+
<label>Advanced Search</label>
|
43 |
+
<url helper="catalogsearch/getAdvancedSearchUrl" />
|
44 |
+
<title>Advanced Search</title>
|
45 |
+
</action>
|
46 |
+
</reference>
|
47 |
+
</default>
|
48 |
+
|
49 |
+
<catalogsearch_result_index translate="label">
|
50 |
+
<label>Quick Search Form</label>
|
51 |
+
<reference name="root">
|
52 |
+
<action method="setTemplate"><template>page/3columns.phtml</template></action>
|
53 |
+
</reference>
|
54 |
+
<reference name="left">
|
55 |
+
<block type="catalogsearch/layer" name="catalogsearch.leftnav" after="currency" template="catalog/layer/view.phtml"/>
|
56 |
+
</reference>
|
57 |
+
<reference name="content">
|
58 |
+
<block type="catalogsearch/result" name="search.result" template="catalogsearch/result.phtml">
|
59 |
+
<block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml">
|
60 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
61 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
62 |
+
</block>
|
63 |
+
<action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
|
64 |
+
<action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
|
65 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
|
66 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
|
67 |
+
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
|
68 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
69 |
+
</block>
|
70 |
+
<action method="setListOrders"/>
|
71 |
+
<action method="setListModes"/>
|
72 |
+
<action method="setListCollection"/>
|
73 |
+
</block>
|
74 |
+
</reference>
|
75 |
+
</catalogsearch_result_index>
|
76 |
+
|
77 |
+
<catalogsearch_advanced_index translate="label">
|
78 |
+
<label>Advanced Search Form</label>
|
79 |
+
<!-- Mage_Catalogsearch -->
|
80 |
+
<reference name="root">
|
81 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
82 |
+
</reference>
|
83 |
+
<reference name="head">
|
84 |
+
<action method="setTitle" translate="title" module="catalogsearch"><title>Advanced Search</title></action>
|
85 |
+
<action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
|
86 |
+
<action method="addItem"><type>js</type><name>calendar/calendar.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
|
87 |
+
<action method="addItem"><type>js</type><name>calendar/calendar-setup.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
|
88 |
+
</reference>
|
89 |
+
<reference name="content">
|
90 |
+
<block type="catalogsearch/advanced_form" name="catalogsearch_advanced_form" template="catalogsearch/advanced/form.phtml"/>
|
91 |
+
<block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
|
92 |
+
</reference>
|
93 |
+
</catalogsearch_advanced_index>
|
94 |
+
|
95 |
+
<!--
|
96 |
+
Advanced search results
|
97 |
+
-->
|
98 |
+
|
99 |
+
<catalogsearch_advanced_result translate="label">
|
100 |
+
<label>Advanced Search Result</label>
|
101 |
+
<update handle="page_two_columns_right" />
|
102 |
+
<!-- Mage_Catalogsearch -->
|
103 |
+
<reference name="root">
|
104 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
105 |
+
</reference>
|
106 |
+
<reference name="content">
|
107 |
+
<block type="catalogsearch/advanced_result" name="catalogsearch_advanced_result" template="catalogsearch/advanced/result.phtml">
|
108 |
+
<block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml">
|
109 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
110 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
111 |
+
</block>
|
112 |
+
<action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
|
113 |
+
<action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
|
114 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
|
115 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
|
116 |
+
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
|
117 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
118 |
+
</block>
|
119 |
+
<action method="setListOrders"/>
|
120 |
+
<action method="setListModes"/>
|
121 |
+
<action method="setListCollection"/>
|
122 |
+
</block>
|
123 |
+
</reference>
|
124 |
+
</catalogsearch_advanced_result>
|
125 |
+
|
126 |
+
<catalogsearch_term_popular translate="label">
|
127 |
+
<label>Popular Search Terms</label>
|
128 |
+
<remove name="right"/>
|
129 |
+
<remove name="left"/>
|
130 |
+
|
131 |
+
<reference name="head">
|
132 |
+
<action method="setTitle" translate="title" module="catalogsearch"><title>Search Terms</title></action>
|
133 |
+
</reference>
|
134 |
+
<reference name="root">
|
135 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
136 |
+
</reference>
|
137 |
+
<reference name="content">
|
138 |
+
<block type="catalogsearch/term" name="seo.searchterm" template="catalogsearch/term.phtml"/>
|
139 |
+
</reference>
|
140 |
+
</catalogsearch_term_popular>
|
141 |
+
|
142 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/checkout.xml
ADDED
@@ -0,0 +1,491 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
|
31 |
+
<!--
|
32 |
+
Default layout, loads most of the pages
|
33 |
+
-->
|
34 |
+
|
35 |
+
<default>
|
36 |
+
|
37 |
+
<!-- Mage_Checkout -->
|
38 |
+
<reference name="top.links">
|
39 |
+
<block type="checkout/links" name="checkout_cart_link">
|
40 |
+
<action method="addCartLink"></action>
|
41 |
+
<action method="addCheckoutLink"></action>
|
42 |
+
</block>
|
43 |
+
</reference>
|
44 |
+
<reference name="right">
|
45 |
+
<block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
|
46 |
+
<action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
47 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
48 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
49 |
+
<block type="core/text_list" name="cart_sidebar.extra_actions" as="extra_actions" translate="label" module="checkout">
|
50 |
+
<label>Shopping Cart Sidebar Extra Actions</label>
|
51 |
+
</block>
|
52 |
+
</block>
|
53 |
+
</reference>
|
54 |
+
</default>
|
55 |
+
|
56 |
+
<checkout_cart_index translate="label">
|
57 |
+
<label>Shopping Cart</label>
|
58 |
+
<remove name="right"/>
|
59 |
+
<remove name="left"/>
|
60 |
+
<!-- Mage_Checkout -->
|
61 |
+
<reference name="root">
|
62 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
63 |
+
</reference>
|
64 |
+
<reference name="content">
|
65 |
+
<block type="checkout/cart" name="checkout.cart">
|
66 |
+
<action method="setCartTemplate"><value>checkout/cart.phtml</value></action>
|
67 |
+
<action method="setEmptyTemplate"><value>checkout/cart/noItems.phtml</value></action>
|
68 |
+
<action method="chooseTemplate"/>
|
69 |
+
<action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/item/default.phtml</template></action>
|
70 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/item/default.phtml</template></action>
|
71 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/item/default.phtml</template></action>
|
72 |
+
|
73 |
+
<block type="core/text_list" name="checkout.cart.top_methods" as="top_methods" translate="label">
|
74 |
+
<label>Payment Methods Before Checkout Button</label>
|
75 |
+
<block type="checkout/onepage_link" name="checkout.cart.methods.onepage" template="checkout/onepage/link.phtml"/>
|
76 |
+
</block>
|
77 |
+
|
78 |
+
<block type="page/html_wrapper" name="checkout.cart.form.before" as="form_before" translate="label">
|
79 |
+
<label>Shopping Cart Form Before</label>
|
80 |
+
</block>
|
81 |
+
|
82 |
+
<block type="core/text_list" name="checkout.cart.methods" as="methods" translate="label">
|
83 |
+
<label>Payment Methods After Checkout Button</label>
|
84 |
+
<block type="checkout/onepage_link" name="checkout.cart.methods.onepage" template="checkout/onepage/link.phtml"/>
|
85 |
+
<block type="checkout/multishipping_link" name="checkout.cart.methods.multishipping" template="checkout/multishipping/link.phtml"/>
|
86 |
+
</block>
|
87 |
+
|
88 |
+
<block type="checkout/cart_coupon" name="checkout.cart.coupon" as="coupon" template="checkout/cart/coupon.phtml"/>
|
89 |
+
<block type="checkout/cart_shipping" name="checkout.cart.shipping" as="shipping" template="checkout/cart/shipping.phtml"/>
|
90 |
+
<block type="checkout/cart_crosssell" name="checkout.cart.crosssell" as="crosssell" template="checkout/cart/crosssell.phtml"/>
|
91 |
+
|
92 |
+
<block type="checkout/cart_totals" name="checkout.cart.totals" as="totals" template="checkout/cart/totals.phtml"/>
|
93 |
+
</block>
|
94 |
+
</reference>
|
95 |
+
<block type="core/text_list" name="additional.product.info" translate="label">
|
96 |
+
<label>Additional Product Info</label>
|
97 |
+
</block>
|
98 |
+
</checkout_cart_index>
|
99 |
+
|
100 |
+
<checkout_cart_configure translate="label">
|
101 |
+
<label>Configure Cart Item</label>
|
102 |
+
<update handle="catalog_product_view"/>
|
103 |
+
<reference name="product.info">
|
104 |
+
<block type="checkout/cart_item_configure" name="checkout.cart.item.configure.block"></block>
|
105 |
+
</reference>
|
106 |
+
</checkout_cart_configure>
|
107 |
+
|
108 |
+
<!--
|
109 |
+
Multi address shipping checkout main layout,
|
110 |
+
will be rendered on all checkout pages
|
111 |
+
-->
|
112 |
+
|
113 |
+
<checkout_multishipping translate="label">
|
114 |
+
<label>Multishipping Checkout</label>
|
115 |
+
<!-- Mage_Checkout -->
|
116 |
+
<remove name="right"/>
|
117 |
+
<remove name="left"/>
|
118 |
+
|
119 |
+
<reference name="root">
|
120 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
121 |
+
</reference>
|
122 |
+
<reference name="content">
|
123 |
+
<block type="checkout/multishipping_state" name="checkout_state" template="checkout/multishipping/state.phtml"/>
|
124 |
+
</reference>
|
125 |
+
</checkout_multishipping>
|
126 |
+
|
127 |
+
<checkout_multishipping_login>
|
128 |
+
<update handle="customer_account_login"/>
|
129 |
+
</checkout_multishipping_login>
|
130 |
+
|
131 |
+
<checkout_multishipping_register>
|
132 |
+
<update handle="customer_account_create"/>
|
133 |
+
</checkout_multishipping_register>
|
134 |
+
|
135 |
+
<!--
|
136 |
+
Multi address shipping checkout selection of address per item page
|
137 |
+
-->
|
138 |
+
|
139 |
+
<checkout_multishipping_address_select translate="label">
|
140 |
+
<label>Multishipping Checkout Shipping Address Selection</label>
|
141 |
+
<update handle="checkout_multishipping"/>
|
142 |
+
<!-- Mage_Checkout -->
|
143 |
+
<reference name="content">
|
144 |
+
<block type="checkout/multishipping_address_select" name="checkout_address_select" template="checkout/multishipping/address/select.phtml"/>
|
145 |
+
</reference>
|
146 |
+
</checkout_multishipping_address_select>
|
147 |
+
|
148 |
+
<checkout_multishipping_address_selectbilling translate="label">
|
149 |
+
<label>Multishipping Checkout Billing Address Selection</label>
|
150 |
+
<update handle="checkout_multishipping"/>
|
151 |
+
<!-- Mage_Checkout -->
|
152 |
+
<reference name="content">
|
153 |
+
<block type="checkout/multishipping_address_select" name="checkout_address_select" template="checkout/multishipping/address/select.phtml"/>
|
154 |
+
</reference>
|
155 |
+
</checkout_multishipping_address_selectbilling>
|
156 |
+
|
157 |
+
|
158 |
+
<checkout_multishipping_address_newshipping translate="label">
|
159 |
+
<label>Multishipping Checkout Shipping Address Creation</label>
|
160 |
+
<update handle="checkout_multishipping"/>
|
161 |
+
<update handle="checkout_multishipping_customer_address"/>
|
162 |
+
</checkout_multishipping_address_newshipping>
|
163 |
+
|
164 |
+
<checkout_multishipping_address_newbilling translate="label">
|
165 |
+
<label>Multishipping Checkout Billing Address Creation</label>
|
166 |
+
<update handle="checkout_multishipping"/>
|
167 |
+
<update handle="checkout_multishipping_customer_address"/>
|
168 |
+
</checkout_multishipping_address_newbilling>
|
169 |
+
|
170 |
+
<checkout_multishipping_address_editshipping translate="label">
|
171 |
+
<label>Multishipping Checkout Shipping Address Edit Form</label>
|
172 |
+
<update handle="checkout_multishipping"/>
|
173 |
+
<update handle="checkout_multishipping_customer_address"/>
|
174 |
+
</checkout_multishipping_address_editshipping>
|
175 |
+
|
176 |
+
<checkout_multishipping_address_editaddress>
|
177 |
+
<update handle="checkout_multishipping"/>
|
178 |
+
<update handle="checkout_multishipping_customer_address"/>
|
179 |
+
</checkout_multishipping_address_editaddress>
|
180 |
+
|
181 |
+
<checkout_multishipping_address_editbilling translate="label">
|
182 |
+
<label>Multishipping Checkout Billing Address Edit Form</label>
|
183 |
+
<update handle="checkout_multishipping"/>
|
184 |
+
<update handle="checkout_multishipping_customer_address"/>
|
185 |
+
</checkout_multishipping_address_editbilling>
|
186 |
+
|
187 |
+
<checkout_multishipping_customer_address translate="label">
|
188 |
+
<label>Multishipping Checkout Customer Address Edit Form</label>
|
189 |
+
<reference name="content">
|
190 |
+
<block type="customer/address_edit" name="customer_address_edit" template="customer/address/edit.phtml"/>
|
191 |
+
</reference>
|
192 |
+
</checkout_multishipping_customer_address>
|
193 |
+
|
194 |
+
<!--
|
195 |
+
Multi address shipping checkout address page
|
196 |
+
-->
|
197 |
+
|
198 |
+
<checkout_multishipping_addresses translate="label">
|
199 |
+
<label>Multishipping Checkout Address (Any) Form</label>
|
200 |
+
<update handle="checkout_multishipping"/>
|
201 |
+
<!-- Mage_Checkout -->
|
202 |
+
<reference name="content">
|
203 |
+
<block type="checkout/multishipping_addresses" name="checkout_addresses" template="checkout/multishipping/addresses.phtml">
|
204 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
|
205 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
|
206 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
|
207 |
+
</block>
|
208 |
+
</reference>
|
209 |
+
</checkout_multishipping_addresses>
|
210 |
+
|
211 |
+
<!--
|
212 |
+
Multi address shipping checkout shipping information
|
213 |
+
-->
|
214 |
+
|
215 |
+
<checkout_multishipping_shipping translate="label">
|
216 |
+
<label>Multishipping Checkout Shipping Information Step</label>
|
217 |
+
<update handle="checkout_multishipping"/>
|
218 |
+
<!-- Mage_Checkout -->
|
219 |
+
<reference name="content">
|
220 |
+
<block type="checkout/multishipping_shipping" name="checkout_shipping" template="checkout/multishipping/shipping.phtml">
|
221 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
|
222 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
|
223 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
|
224 |
+
|
225 |
+
<block type="checkout/multishipping_billing_items" name="checkout_billing_items" template="checkout/multishipping/billing/items.phtml">
|
226 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
|
227 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
|
228 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
|
229 |
+
</block>
|
230 |
+
</block>
|
231 |
+
</reference>
|
232 |
+
</checkout_multishipping_shipping>
|
233 |
+
|
234 |
+
<!--
|
235 |
+
Multi address shipping checkout billing information
|
236 |
+
-->
|
237 |
+
|
238 |
+
<checkout_multishipping_billing translate="label">
|
239 |
+
<label>Multishipping Checkout Billing Information Step</label>
|
240 |
+
<update handle="checkout_multishipping"/>
|
241 |
+
<!-- Mage_Checkout -->
|
242 |
+
<reference name="content">
|
243 |
+
<block type="checkout/multishipping_billing" name="checkout_billing" template="checkout/multishipping/billing.phtml">
|
244 |
+
<action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
|
245 |
+
|
246 |
+
<!--<block type="checkout/multishipping_billing_items" name="checkout_billing_items" template="checkout/multishipping/billing/items.phtml">
|
247 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
|
248 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
|
249 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
|
250 |
+
</block>-->
|
251 |
+
|
252 |
+
</block>
|
253 |
+
</reference>
|
254 |
+
</checkout_multishipping_billing>
|
255 |
+
|
256 |
+
<!--
|
257 |
+
Multi address shipping checkout overview
|
258 |
+
-->
|
259 |
+
|
260 |
+
<checkout_multishipping_overview translate="label">
|
261 |
+
<label>Multishipping Checkout Overview</label>
|
262 |
+
<update handle="checkout_multishipping"/>
|
263 |
+
<!-- Mage_Checkout -->
|
264 |
+
<reference name="content">
|
265 |
+
<block type="checkout/multishipping_overview" name="checkout_overview" template="checkout/multishipping/overview.phtml">
|
266 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
|
267 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
|
268 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
|
269 |
+
<action method="addRowItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/overview/item.phtml</template></action>
|
270 |
+
<action method="addRowItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/overview/item.phtml</template></action>
|
271 |
+
<block type="checkout/multishipping_payment_info" name="payment_info">
|
272 |
+
<action method="setInfoTemplate"><method></method><template></template></action>
|
273 |
+
</block>
|
274 |
+
<block type="checkout/agreements" name="checkout.multishipping.agreements" as="agreements" template="checkout/multishipping/agreements.phtml"/>
|
275 |
+
<block type="checkout/cart_totals" name="totals" />
|
276 |
+
<block type="core/text_list" name="checkout.multishipping.overview.items.after" as="items_after" translate="label">
|
277 |
+
<label>Overview Items After</label>
|
278 |
+
</block>
|
279 |
+
</block>
|
280 |
+
</reference>
|
281 |
+
</checkout_multishipping_overview>
|
282 |
+
|
283 |
+
<!--
|
284 |
+
Multi address shipping checkout success
|
285 |
+
-->
|
286 |
+
|
287 |
+
<checkout_multishipping_success translate="label">
|
288 |
+
<label>Multishipping Checkout Success</label>
|
289 |
+
<update handle="checkout_multishipping"/>
|
290 |
+
<!-- Mage_Checkout -->
|
291 |
+
<reference name="content">
|
292 |
+
<block type="checkout/multishipping_success" name="checkout_success" template="checkout/multishipping/success.phtml"/>
|
293 |
+
</reference>
|
294 |
+
</checkout_multishipping_success>
|
295 |
+
|
296 |
+
<!--
|
297 |
+
One page checkout main layout
|
298 |
+
-->
|
299 |
+
|
300 |
+
<checkout_onepage_index translate="label">
|
301 |
+
<label>One Page Checkout</label>
|
302 |
+
<!-- Mage_Checkout -->
|
303 |
+
<remove name="left"/>
|
304 |
+
|
305 |
+
<reference name="root">
|
306 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
307 |
+
</reference>
|
308 |
+
<reference name="right">
|
309 |
+
<action method="unsetChildren"></action>
|
310 |
+
<block type="page/html_wrapper" name="checkout.progress.wrapper" translate="label">
|
311 |
+
<label>Checkout Progress Wrapper</label>
|
312 |
+
<action method="setElementId"><value>checkout-progress-wrapper</value></action>
|
313 |
+
<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml">
|
314 |
+
<block type="checkout/onepage_progress" name="billing.progress" template="checkout/onepage/progress/billing.phtml"></block>
|
315 |
+
<block type="checkout/onepage_progress" name="shipping.progress" template="checkout/onepage/progress/shipping.phtml"></block>
|
316 |
+
<block type="checkout/onepage_progress" name="shippingmethod.progress" template="checkout/onepage/progress/shipping_method.phtml"></block>
|
317 |
+
<block type="checkout/onepage_progress" name="payment.progress" template="checkout/onepage/progress/payment.phtml"></block>
|
318 |
+
</block>
|
319 |
+
</block>
|
320 |
+
</reference>
|
321 |
+
<reference name="content">
|
322 |
+
<block type="checkout/onepage" name="checkout.onepage" template="checkout/onepage.phtml">
|
323 |
+
<block type="checkout/onepage_login" name="checkout.onepage.login" as="login" template="checkout/onepage/login.phtml">
|
324 |
+
<block type="page/html_wrapper" name="checkout.onepage.login.before" as="login_before" translate="label">
|
325 |
+
<label>Login/Registration Before</label>
|
326 |
+
<action method="setMayBeInvisible"><value>1</value></action>
|
327 |
+
</block>
|
328 |
+
</block>
|
329 |
+
<block type="checkout/onepage_billing" name="checkout.onepage.billing" as="billing" template="checkout/onepage/billing.phtml"/>
|
330 |
+
<block type="checkout/onepage_shipping" name="checkout.onepage.shipping" as="shipping" template="checkout/onepage/shipping.phtml"/>
|
331 |
+
<block type="checkout/onepage_shipping_method" name="checkout.onepage.shipping_method" as="shipping_method" template="checkout/onepage/shipping_method.phtml">
|
332 |
+
<block type="checkout/onepage_shipping_method_available" name="checkout.onepage.shipping_method.available" as="available" template="checkout/onepage/shipping_method/available.phtml"/>
|
333 |
+
<block type="checkout/onepage_shipping_method_additional" name="checkout.onepage.shipping_method.additional" as="additional" template="checkout/onepage/shipping_method/additional.phtml"/>
|
334 |
+
</block>
|
335 |
+
<block type="checkout/onepage_payment" name="checkout.onepage.payment" as="payment" template="checkout/onepage/payment.phtml">
|
336 |
+
<block type="checkout/onepage_payment_methods" name="checkout.payment.methods" as="methods" template="checkout/onepage/payment/info.phtml">
|
337 |
+
<action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
|
338 |
+
</block>
|
339 |
+
</block>
|
340 |
+
<block type="checkout/onepage_review" name="checkout.onepage.review" as="review" template="checkout/onepage/review.phtml"/>
|
341 |
+
</block>
|
342 |
+
</reference>
|
343 |
+
</checkout_onepage_index>
|
344 |
+
|
345 |
+
<!--
|
346 |
+
One page checkout progress block
|
347 |
+
-->
|
348 |
+
|
349 |
+
<checkout_onepage_progress>
|
350 |
+
<!-- Mage_Checkout -->
|
351 |
+
<remove name="right"/>
|
352 |
+
<remove name="left"/>
|
353 |
+
|
354 |
+
<block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress.phtml">
|
355 |
+
<action method="setInfoTemplate"><method></method><template></template></action>
|
356 |
+
<block type="checkout/onepage_progress" name="billing.progress" template="checkout/onepage/progress/billing.phtml"></block>
|
357 |
+
<block type="checkout/onepage_progress" name="shipping.progress" template="checkout/onepage/progress/shipping.phtml"></block>
|
358 |
+
<block type="checkout/onepage_progress" name="shippingmethod.progress" template="checkout/onepage/progress/shipping_method.phtml"></block>
|
359 |
+
<block type="checkout/onepage_progress" name="payment.progress" template="checkout/onepage/progress/payment.phtml"></block>
|
360 |
+
</block>
|
361 |
+
</checkout_onepage_progress>
|
362 |
+
|
363 |
+
<!-- Individual blocks for Progress steps begins -->
|
364 |
+
<checkout_onepage_progress_billing>
|
365 |
+
<!-- Mage_Checkout -->
|
366 |
+
<remove name="right"/>
|
367 |
+
<remove name="left"/>
|
368 |
+
|
369 |
+
<block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/billing.phtml">
|
370 |
+
<action method="setInfoTemplate"><method></method><template></template></action>
|
371 |
+
</block>
|
372 |
+
</checkout_onepage_progress_billing>
|
373 |
+
|
374 |
+
|
375 |
+
<checkout_onepage_progress_shipping>
|
376 |
+
<!-- Mage_Checkout -->
|
377 |
+
<remove name="right"/>
|
378 |
+
<remove name="left"/>
|
379 |
+
|
380 |
+
<block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/shipping.phtml">
|
381 |
+
<action method="setInfoTemplate"><method></method><template></template></action>
|
382 |
+
</block>
|
383 |
+
</checkout_onepage_progress_shipping>
|
384 |
+
|
385 |
+
|
386 |
+
<checkout_onepage_progress_shipping_method>
|
387 |
+
<!-- Mage_Checkout -->
|
388 |
+
<remove name="right"/>
|
389 |
+
<remove name="left"/>
|
390 |
+
|
391 |
+
<block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/shipping_method.phtml">
|
392 |
+
<action method="setInfoTemplate"><method></method><template></template></action>
|
393 |
+
</block>
|
394 |
+
</checkout_onepage_progress_shipping_method>
|
395 |
+
|
396 |
+
<checkout_onepage_progress_payment>
|
397 |
+
<!-- Mage_Checkout -->
|
398 |
+
<remove name="right"/>
|
399 |
+
<remove name="left"/>
|
400 |
+
|
401 |
+
<block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/payment.phtml">
|
402 |
+
<block type="checkout/onepage_payment_info" name="payment_info">
|
403 |
+
<action method="setInfoTemplate"><method></method><template></template></action>
|
404 |
+
</block>
|
405 |
+
<action method="setInfoTemplate"><method></method><template></template></action>
|
406 |
+
</block>
|
407 |
+
</checkout_onepage_progress_payment>
|
408 |
+
|
409 |
+
<!-- end individual progress blocks -->
|
410 |
+
|
411 |
+
<!--
|
412 |
+
One page checkout payment methods block
|
413 |
+
-->
|
414 |
+
<checkout_onepage_paymentmethod>
|
415 |
+
<remove name="right"/>
|
416 |
+
<remove name="left"/>
|
417 |
+
|
418 |
+
<block type="checkout/onepage_payment_methods" name="root" output="toHtml" template="checkout/onepage/payment/methods.phtml">
|
419 |
+
<action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
|
420 |
+
</block>
|
421 |
+
</checkout_onepage_paymentmethod>
|
422 |
+
|
423 |
+
|
424 |
+
<!--
|
425 |
+
One page checkout shipping methods block
|
426 |
+
-->
|
427 |
+
|
428 |
+
<checkout_onepage_shippingmethod>
|
429 |
+
<!-- Mage_Checkout -->
|
430 |
+
<remove name="right"/>
|
431 |
+
<remove name="left"/>
|
432 |
+
|
433 |
+
<block type="checkout/onepage_shipping_method_available" name="root" output="toHtml" template="checkout/onepage/shipping_method/available.phtml"/>
|
434 |
+
</checkout_onepage_shippingmethod>
|
435 |
+
|
436 |
+
<checkout_onepage_additional>
|
437 |
+
<!-- Mage_Checkout -->
|
438 |
+
<remove name="right"/>
|
439 |
+
<remove name="left"/>
|
440 |
+
|
441 |
+
<block type="checkout/onepage_shipping_method_additional" name="root" output="toHtml" template="checkout/onepage/shipping_method/additional.phtml">
|
442 |
+
<action method="setDontDisplayContainer"><param>1</param></action>
|
443 |
+
</block>
|
444 |
+
</checkout_onepage_additional>
|
445 |
+
|
446 |
+
<!--
|
447 |
+
One page checkout order review block
|
448 |
+
-->
|
449 |
+
|
450 |
+
<checkout_onepage_review translate="label">
|
451 |
+
<label>One Page Checkout Overview</label>
|
452 |
+
<!-- Mage_Checkout -->
|
453 |
+
<remove name="right"/>
|
454 |
+
<remove name="left"/>
|
455 |
+
|
456 |
+
<block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
|
457 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
|
458 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
|
459 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
|
460 |
+
<block type="checkout/cart_totals" name="checkout.onepage.review.info.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
|
461 |
+
<block type="core/text_list" name="checkout.onepage.review.info.items.before" as="items_before" translate="label">
|
462 |
+
<label>Items Before</label>
|
463 |
+
</block>
|
464 |
+
<block type="core/text_list" name="checkout.onepage.review.info.items.after" as="items_after" translate="label">
|
465 |
+
<label>Items After</label>
|
466 |
+
</block>
|
467 |
+
<block type="checkout/agreements" name="checkout.onepage.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
|
468 |
+
<block type="core/template" name="checkout.onepage.review.button" as="button" template="checkout/onepage/review/button.phtml"/>
|
469 |
+
</block>
|
470 |
+
</checkout_onepage_review>
|
471 |
+
|
472 |
+
<checkout_onepage_success translate="label">
|
473 |
+
<label>One Page Checkout Success</label>
|
474 |
+
<reference name="root">
|
475 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
476 |
+
</reference>
|
477 |
+
<reference name="content">
|
478 |
+
<block type="checkout/onepage_success" name="checkout.success" template="checkout/success.phtml"/>
|
479 |
+
</reference>
|
480 |
+
</checkout_onepage_success>
|
481 |
+
<checkout_onepage_failure translate="label">
|
482 |
+
<label>One Page Checkout Failure</label>
|
483 |
+
<reference name="root">
|
484 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
485 |
+
</reference>
|
486 |
+
<reference name="content">
|
487 |
+
<block type="checkout/onepage_failure" name="checkout.failure" template="checkout/onepage/failure.phtml"/>
|
488 |
+
</reference>
|
489 |
+
</checkout_onepage_failure>
|
490 |
+
<block type="core/list" name="additional.product.info"/>
|
491 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/cms.xml
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
-->
|
28 |
+
<layout version="0.1.0">
|
29 |
+
<!--
|
30 |
+
Default layout, loads most of the pages
|
31 |
+
-->
|
32 |
+
|
33 |
+
<default>
|
34 |
+
<reference name="footer">
|
35 |
+
<block type="cms/block" name="cms_footer_links" before="footer_links">
|
36 |
+
<!--
|
37 |
+
The content of this block is taken from the database by its block_id.
|
38 |
+
You can manage it in admin CMS -> Static Blocks
|
39 |
+
-->
|
40 |
+
<action method="setBlockId"><block_id>footer_links</block_id></action>
|
41 |
+
</block>
|
42 |
+
</reference>
|
43 |
+
</default>
|
44 |
+
|
45 |
+
<cms_page translate="label">
|
46 |
+
<label>CMS Pages (All)</label>
|
47 |
+
<reference name="content">
|
48 |
+
<block type="core/template" name="page_content_heading" template="cms/content_heading.phtml"/>
|
49 |
+
<block type="page/html_wrapper" name="cms.wrapper" translate="label">
|
50 |
+
<label>CMS Content Wrapper</label>
|
51 |
+
<action method="setElementClass"><value>std</value></action>
|
52 |
+
<block type="cms/page" name="cms_page"/>
|
53 |
+
</block>
|
54 |
+
</reference>
|
55 |
+
|
56 |
+
<reference name="content">
|
57 |
+
<remove name="page_content_heading"/>
|
58 |
+
</reference>
|
59 |
+
|
60 |
+
</cms_page>
|
61 |
+
|
62 |
+
<cms_index_index translate="label">
|
63 |
+
<label>CMS Home Page</label>
|
64 |
+
</cms_index_index>
|
65 |
+
|
66 |
+
<cms_index_defaultindex>
|
67 |
+
<remove name="right"/>
|
68 |
+
<remove name="left"/>
|
69 |
+
|
70 |
+
<reference name="root">
|
71 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
72 |
+
</reference>
|
73 |
+
<reference name="content">
|
74 |
+
<block type="core/template" name="default_home_page" template="cms/default/home.phtml"/>
|
75 |
+
</reference>
|
76 |
+
</cms_index_defaultindex>
|
77 |
+
|
78 |
+
<cms_index_noroute translate="label">
|
79 |
+
<label>CMS No-Route Page</label>
|
80 |
+
</cms_index_noroute>
|
81 |
+
|
82 |
+
<cms_index_defaultnoroute>
|
83 |
+
<remove name="right"/>
|
84 |
+
<remove name="left"/>
|
85 |
+
|
86 |
+
<reference name="root">
|
87 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
88 |
+
</reference>
|
89 |
+
<reference name="content">
|
90 |
+
<block type="core/template" name="default_no_route" template="cms/default/no-route.phtml"/>
|
91 |
+
</reference>
|
92 |
+
</cms_index_defaultnoroute>
|
93 |
+
|
94 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/customer.xml
ADDED
@@ -0,0 +1,320 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
Supported layout update handles (action):
|
29 |
+
- customer_account_index
|
30 |
+
- customer_address_index
|
31 |
+
- customer_address_view
|
32 |
+
- customer_account_login
|
33 |
+
- customer_account_logoutsuccess
|
34 |
+
- customer_account_create
|
35 |
+
- customer_account_forgotpassword
|
36 |
+
- customer_account_confirmation
|
37 |
+
- customer_account_edit
|
38 |
+
|
39 |
+
Supported layout update handles (special):
|
40 |
+
- default
|
41 |
+
|
42 |
+
-->
|
43 |
+
<layout version="0.1.0">
|
44 |
+
|
45 |
+
<!--
|
46 |
+
Default layout, loads most of the pages
|
47 |
+
-->
|
48 |
+
|
49 |
+
<default>
|
50 |
+
<!-- Mage_Customer -->
|
51 |
+
<reference name="top.links">
|
52 |
+
<action method="addLink" translate="label title" module="customer">
|
53 |
+
<label>My Account</label>
|
54 |
+
<url helper="customer/getAccountUrl"/>
|
55 |
+
<title>My Account</title>
|
56 |
+
<prepare/>
|
57 |
+
<urlParams/>
|
58 |
+
<position>10</position>
|
59 |
+
<liParams/>
|
60 |
+
<aParams>class="icon-user"</aParams>
|
61 |
+
</action>
|
62 |
+
</reference>
|
63 |
+
</default>
|
64 |
+
|
65 |
+
<!--
|
66 |
+
Load this update on every page when customer is logged in
|
67 |
+
-->
|
68 |
+
|
69 |
+
<customer_logged_in>
|
70 |
+
<reference name="top.links">
|
71 |
+
<action method="addLink" translate="label title" module="customer">
|
72 |
+
<label>Log Out</label>
|
73 |
+
<url helper="customer/getLogoutUrl"/>
|
74 |
+
<title>Log Out</title>
|
75 |
+
<prepare/>
|
76 |
+
<urlParams/>
|
77 |
+
<position>100</position>
|
78 |
+
<liParams/>
|
79 |
+
<aParams>class="icon-logout"</aParams>
|
80 |
+
</action>
|
81 |
+
</reference>
|
82 |
+
</customer_logged_in>
|
83 |
+
|
84 |
+
<!--
|
85 |
+
Load this update on every page when customer is logged out
|
86 |
+
-->
|
87 |
+
|
88 |
+
<customer_logged_out>
|
89 |
+
<!---<reference name="right">
|
90 |
+
<block type="customer/form_login" name="customer_form_mini_login" before="-" template="customer/form/mini.login.phtml"/>
|
91 |
+
</reference>-->
|
92 |
+
<reference name="top.links">
|
93 |
+
<action method="addLink" translate="label title" module="customer">
|
94 |
+
<label>Log In</label>
|
95 |
+
<url helper="customer/getLoginUrl"/>
|
96 |
+
<title>Log In</title>
|
97 |
+
<prepare/>
|
98 |
+
<urlParams/>
|
99 |
+
<position>100</position>
|
100 |
+
<liParams/>
|
101 |
+
<aParams>class="icon-login"</aParams>
|
102 |
+
</action>
|
103 |
+
</reference>
|
104 |
+
<remove name="reorder"></remove>
|
105 |
+
</customer_logged_out>
|
106 |
+
|
107 |
+
<!--
|
108 |
+
Layout for customer login page
|
109 |
+
-->
|
110 |
+
|
111 |
+
<customer_account_login translate="label">
|
112 |
+
<label>Customer Account Login Form</label>
|
113 |
+
<!-- Mage_Customer -->
|
114 |
+
<remove name="right"/>
|
115 |
+
<remove name="left"/>
|
116 |
+
|
117 |
+
<reference name="root">
|
118 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
119 |
+
</reference>
|
120 |
+
<reference name="content">
|
121 |
+
<block type="customer/form_login" name="customer_form_login" template="customer/form/login.phtml" />
|
122 |
+
</reference>
|
123 |
+
</customer_account_login>
|
124 |
+
|
125 |
+
<!--
|
126 |
+
Layout for customer log out page
|
127 |
+
-->
|
128 |
+
|
129 |
+
<customer_account_logoutsuccess translate="label">
|
130 |
+
<label>Customer Account Logout Success</label>
|
131 |
+
<!-- Mage_Customer -->
|
132 |
+
<remove name="right"/>
|
133 |
+
<remove name="left"/>
|
134 |
+
|
135 |
+
<reference name="root">
|
136 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
137 |
+
</reference>
|
138 |
+
<reference name="content">
|
139 |
+
<block type="core/template" name="customer_logout" template="customer/logout.phtml"/>
|
140 |
+
</reference>
|
141 |
+
</customer_account_logoutsuccess>
|
142 |
+
|
143 |
+
<!--
|
144 |
+
New customer registration
|
145 |
+
-->
|
146 |
+
|
147 |
+
<customer_account_create translate="label">
|
148 |
+
<label>Customer Account Registration Form</label>
|
149 |
+
<!-- Mage_Customer -->
|
150 |
+
<remove name="right"/>
|
151 |
+
<remove name="left"/>
|
152 |
+
|
153 |
+
<reference name="root">
|
154 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
155 |
+
</reference>
|
156 |
+
<reference name="content">
|
157 |
+
<block type="customer/form_register" name="customer_form_register" template="customer/form/register.phtml">
|
158 |
+
<block type="page/html_wrapper" name="customer.form.register.fields.before" as="form_fields_before" translate="label">
|
159 |
+
<label>Form Fields Before</label>
|
160 |
+
</block>
|
161 |
+
</block>
|
162 |
+
</reference>
|
163 |
+
</customer_account_create>
|
164 |
+
|
165 |
+
<customer_account_forgotpassword translate="label">
|
166 |
+
<label>Customer Forgot Password Form</label>
|
167 |
+
<remove name="right"/>
|
168 |
+
<remove name="left"/>
|
169 |
+
|
170 |
+
<reference name="head">
|
171 |
+
<action method="setTitle" translate="title" module="customer"><title>Forgot Your Password</title></action>
|
172 |
+
</reference>
|
173 |
+
<reference name="root">
|
174 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
175 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>Password forgotten</title></action>
|
176 |
+
</reference>
|
177 |
+
<reference name="content">
|
178 |
+
<!--<block type="core/template" name="forgotPassword" template="customer/form/forgotpassword.phtml"/>-->
|
179 |
+
<block type="customer/account_forgotpassword" name="forgotPassword" template="customer/form/forgotpassword.phtml" />
|
180 |
+
</reference>
|
181 |
+
</customer_account_forgotpassword>
|
182 |
+
|
183 |
+
<customer_account_resetpassword translate="label">
|
184 |
+
<label>Reset a Password</label>
|
185 |
+
<remove name="right"/>
|
186 |
+
<remove name="left"/>
|
187 |
+
|
188 |
+
<reference name="head">
|
189 |
+
<action method="setTitle" translate="title" module="customer">
|
190 |
+
<title>Reset a Password</title>
|
191 |
+
</action>
|
192 |
+
</reference>
|
193 |
+
<reference name="root">
|
194 |
+
<action method="setTemplate">
|
195 |
+
<template>page/1column.phtml</template>
|
196 |
+
</action>
|
197 |
+
<action method="setHeaderTitle" translate="title" module="customer">
|
198 |
+
<title>Reset a Password</title>
|
199 |
+
</action>
|
200 |
+
</reference>
|
201 |
+
<reference name="content">
|
202 |
+
<block type="customer/account_resetpassword" name="resetPassword" template="customer/form/resetforgottenpassword.phtml"/>
|
203 |
+
</reference>
|
204 |
+
</customer_account_resetpassword>
|
205 |
+
|
206 |
+
<customer_account_confirmation>
|
207 |
+
<remove name="right"/>
|
208 |
+
<remove name="left"/>
|
209 |
+
|
210 |
+
<reference name="root">
|
211 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
212 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>Send confirmation link</title></action>
|
213 |
+
</reference>
|
214 |
+
<reference name="content">
|
215 |
+
<block type="core/template" name="accountConfirmation" template="customer/form/confirmation.phtml"/>
|
216 |
+
</reference>
|
217 |
+
</customer_account_confirmation>
|
218 |
+
|
219 |
+
<customer_account_edit translate="label">
|
220 |
+
<label>Customer Account Edit Form</label>
|
221 |
+
<update handle="customer_account"/>
|
222 |
+
<reference name="root">
|
223 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>Edit Account Info</title></action>
|
224 |
+
</reference>
|
225 |
+
<reference name="my.account.wrapper">
|
226 |
+
<block type="customer/form_edit" name="customer_edit" template="customer/form/edit.phtml"/>
|
227 |
+
</reference>
|
228 |
+
|
229 |
+
<reference name="left">
|
230 |
+
<action method="unsetChild"><name>left.permanent.callout</name></action>
|
231 |
+
</reference>
|
232 |
+
</customer_account_edit>
|
233 |
+
|
234 |
+
<!--
|
235 |
+
Customer account pages, rendered for all tabs in dashboard
|
236 |
+
-->
|
237 |
+
|
238 |
+
<customer_account translate="label">
|
239 |
+
<label>Customer My Account (All Pages)</label>
|
240 |
+
<!--remove name="catalog.compare.sidebar"/>
|
241 |
+
<remove name="sale.reorder.sidebar"/-->
|
242 |
+
<!-- Mage_Customer -->
|
243 |
+
<reference name="root">
|
244 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
245 |
+
</reference>
|
246 |
+
|
247 |
+
<reference name="content">
|
248 |
+
<block type="page/html_wrapper" name="my.account.wrapper" translate="label">
|
249 |
+
<label>My Account Wrapper</label>
|
250 |
+
<action method="setElementClass"><value>my-account</value></action>
|
251 |
+
</block>
|
252 |
+
</reference>
|
253 |
+
|
254 |
+
<reference name="left">
|
255 |
+
<block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml">
|
256 |
+
<action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action>
|
257 |
+
<action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>Account Information</label></action>
|
258 |
+
<action method="addLink" translate="label" module="customer"><name>address_book</name><path>customer/address/</path><label>Address Book</label></action>
|
259 |
+
</block>
|
260 |
+
<block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml">
|
261 |
+
<action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
262 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
263 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
264 |
+
</block>
|
265 |
+
<block type="catalog/product_compare_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
|
266 |
+
<remove name="tags_popular"/>
|
267 |
+
|
268 |
+
</reference>
|
269 |
+
</customer_account>
|
270 |
+
|
271 |
+
<!--
|
272 |
+
Customer account home dashboard layout
|
273 |
+
-->
|
274 |
+
|
275 |
+
<customer_account_index translate="label">
|
276 |
+
<label>Customer My Account Dashboard</label>
|
277 |
+
<update handle="customer_account"/>
|
278 |
+
<!-- Mage_Customer -->
|
279 |
+
<reference name="root">
|
280 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
281 |
+
</reference>
|
282 |
+
<reference name="my.account.wrapper">
|
283 |
+
<block type="customer/account_dashboard" name="customer_account_dashboard" template="customer/account/dashboard.phtml">
|
284 |
+
<block type="customer/account_dashboard_hello" name="customer_account_dashboard_hello" as="hello" template="customer/account/dashboard/hello.phtml"/>
|
285 |
+
<block type="core/template" name="customer_account_dashboard_top" as="top" />
|
286 |
+
<block type="customer/account_dashboard_info" name="customer_account_dashboard_info" as="info" template="customer/account/dashboard/info.phtml"/>
|
287 |
+
<block type="customer/account_dashboard_newsletter" name="customer_account_dashboard_newsletter" as="newsletter" template="customer/account/dashboard/newsletter.phtml"/>
|
288 |
+
<block type="customer/account_dashboard_address" name="customer_account_dashboard_address" as="address" template="customer/account/dashboard/address.phtml"/>
|
289 |
+
</block>
|
290 |
+
</reference>
|
291 |
+
|
292 |
+
</customer_account_index>
|
293 |
+
|
294 |
+
<!--
|
295 |
+
Customer account address book
|
296 |
+
-->
|
297 |
+
|
298 |
+
<customer_address_index translate="label">
|
299 |
+
<label>Customer My Account Address Book</label>
|
300 |
+
<!-- Mage_Customer -->
|
301 |
+
<update handle="customer_account"/>
|
302 |
+
<reference name="my.account.wrapper">
|
303 |
+
<block type="customer/address_book" name="address_book" template="customer/address/book.phtml"/>
|
304 |
+
</reference>
|
305 |
+
</customer_address_index>
|
306 |
+
|
307 |
+
<!--
|
308 |
+
Customer account address edit page
|
309 |
+
-->
|
310 |
+
|
311 |
+
<customer_address_form translate="label">
|
312 |
+
<label>Customer My Account Address Edit Form</label>
|
313 |
+
<!-- Mage_Customer -->
|
314 |
+
<update handle="customer_account"/>
|
315 |
+
<reference name="my.account.wrapper">
|
316 |
+
<block type="customer/address_edit" name="customer_address_edit" template="customer/address/edit.phtml"/>
|
317 |
+
</reference>
|
318 |
+
</customer_address_form>
|
319 |
+
|
320 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/local.xml
ADDED
@@ -0,0 +1,141 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<layout version="0.1.0">
|
3 |
+
|
4 |
+
<catalog_category_layered>
|
5 |
+
|
6 |
+
<reference name="root">
|
7 |
+
<block type="core/template" name="categoryimg" as="categoryimg" template="page/categoryimg.phtml" />
|
8 |
+
</reference>
|
9 |
+
|
10 |
+
<reference name="root">
|
11 |
+
<block type="core/template" name="breadcrumbsnew" as="breadcrumbsnew" template="page/breadcrumbsnew.phtml" >
|
12 |
+
<block type="mgthememinimo/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs" template="page/html/breadcrumbs.phtml" />
|
13 |
+
</block>
|
14 |
+
</reference>
|
15 |
+
|
16 |
+
<reference name="breadcrumbs">
|
17 |
+
<block type="catalog/product_list" name="toolbar_only" template="catalog/product/list/toolbar_only.phtml">
|
18 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar_only" template="catalog/product/list/toolbar.phtml">
|
19 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
20 |
+
</block>
|
21 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar_only</name></action>
|
22 |
+
</block>
|
23 |
+
</reference>
|
24 |
+
|
25 |
+
</catalog_category_layered>
|
26 |
+
|
27 |
+
<cms_index_index>
|
28 |
+
|
29 |
+
<reference name="left">
|
30 |
+
<remove name="left.newsletter" />
|
31 |
+
<remove name="tags_popular" />
|
32 |
+
</reference>
|
33 |
+
|
34 |
+
<reference name="right">
|
35 |
+
<remove name="catalog.compare.sidebar"/>
|
36 |
+
<remove name="cart_sidebar"/>
|
37 |
+
<remove name="right.reports.product.viewed" />
|
38 |
+
<remove name="wishlist_sidebar"/>
|
39 |
+
<remove name="sale.reorder.sidebar"/>
|
40 |
+
<remove name="right.reports.product.viewed"/>
|
41 |
+
<remove name="right.reports.product.compared"/>
|
42 |
+
</reference>
|
43 |
+
|
44 |
+
<reference name="content">
|
45 |
+
<remove name="home.catalog.product.new"/>
|
46 |
+
<remove name="home.reports.product.viewed"/>
|
47 |
+
<remove name="home.reports.product.compared"/>
|
48 |
+
<remove name="tags_popular" />
|
49 |
+
</reference>
|
50 |
+
|
51 |
+
<reference name="newreference">
|
52 |
+
<block type="mgthememinimo/product_featured" name="featured" template="catalog/product/featured.phtml" />
|
53 |
+
</reference>
|
54 |
+
|
55 |
+
<reference name="root">
|
56 |
+
<block type="core/text_list" name="newBanerList" as="newBanerList" translate="label">
|
57 |
+
<label>New Baner List</label>
|
58 |
+
</block>
|
59 |
+
</reference>
|
60 |
+
|
61 |
+
<reference name="newBanerList">
|
62 |
+
<block type="core/template" name="newBanerListBlock" template="page/newBanerList.phtml" />
|
63 |
+
</reference>
|
64 |
+
|
65 |
+
<reference name="baners">
|
66 |
+
<block type="core/template" name="newBanersBlock" template="page/baners.phtml" />
|
67 |
+
</reference>
|
68 |
+
|
69 |
+
</cms_index_index>
|
70 |
+
|
71 |
+
<default>
|
72 |
+
|
73 |
+
<reference name="root">
|
74 |
+
<action method="unsetChild"><name>breadcrumbs</name></action>
|
75 |
+
</reference>
|
76 |
+
|
77 |
+
<reference name="wishlist_link">
|
78 |
+
<action method="setAParams"><params>class="icon-wishlist"</params></action>
|
79 |
+
</reference>
|
80 |
+
|
81 |
+
<reference name="top.links">
|
82 |
+
<remove name="checkout_cart_link"/>
|
83 |
+
<block type="checkout/links" name="checkout_cart_link_custom">
|
84 |
+
<action method="addCartLink"></action>
|
85 |
+
<!--<action method="addCheckoutLink"></action>-->
|
86 |
+
</block>
|
87 |
+
</reference>
|
88 |
+
|
89 |
+
<reference name="root">
|
90 |
+
<block type="core/text_list" name="topimagebar" as="topimagebar" translate="label">
|
91 |
+
<label>Top Image Bar</label>
|
92 |
+
</block>
|
93 |
+
</reference>
|
94 |
+
|
95 |
+
<reference name="right">
|
96 |
+
<remove name="paypal.partner.right.logo" />
|
97 |
+
</reference>
|
98 |
+
|
99 |
+
<reference name="brands">
|
100 |
+
<block type="core/template" name="brandsBlock" template="page/brands.phtml" />
|
101 |
+
</reference>
|
102 |
+
|
103 |
+
</default>
|
104 |
+
|
105 |
+
<catalog_category_default translate="label">
|
106 |
+
|
107 |
+
<reference name="root">
|
108 |
+
<block type="core/template" name="categoryimg" as="categoryimg" template="page/categoryimg.phtml"></block>
|
109 |
+
</reference>
|
110 |
+
|
111 |
+
<reference name="root">
|
112 |
+
<block type="core/template" name="breadcrumbsnew" as="breadcrumbsnew" template="page/breadcrumbsnew.phtml" >
|
113 |
+
<block type="mgthememinimo/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs" template="page/html/breadcrumbs.phtml" />
|
114 |
+
</block>
|
115 |
+
</reference>
|
116 |
+
|
117 |
+
<reference name="breadcrumbs">
|
118 |
+
<block type="catalog/product_list" name="toolbar_only" template="catalog/product/list/toolbar_only.phtml">
|
119 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar_only" template="catalog/product/list/toolbar.phtml">
|
120 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
121 |
+
</block>
|
122 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar_only</name></action>
|
123 |
+
</block>
|
124 |
+
</reference>
|
125 |
+
|
126 |
+
<reference name="root">
|
127 |
+
<block type="core/text_list" name="newToolbar" as="newToolbar" translate="label">
|
128 |
+
<label>New Toolbar List</label>
|
129 |
+
</block>
|
130 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
131 |
+
</reference>
|
132 |
+
|
133 |
+
</catalog_category_default>
|
134 |
+
|
135 |
+
<catalogsearch_result_index>
|
136 |
+
<reference name="root">
|
137 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
138 |
+
</reference>
|
139 |
+
</catalogsearch_result_index>
|
140 |
+
|
141 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/newsletter.xml
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
|
31 |
+
<!--
|
32 |
+
Default layout, loads most of the pages
|
33 |
+
-->
|
34 |
+
|
35 |
+
<default>
|
36 |
+
|
37 |
+
<!-- Mage_Newsletter -->
|
38 |
+
<reference name="footer">
|
39 |
+
<block type="newsletter/subscribe" name="footer.newsletter" template="newsletter/subscribe.phtml"/>
|
40 |
+
</reference>
|
41 |
+
|
42 |
+
</default>
|
43 |
+
|
44 |
+
<!--
|
45 |
+
Customer account pages, rendered for all tabs in dashboard
|
46 |
+
-->
|
47 |
+
|
48 |
+
<customer_account>
|
49 |
+
<!-- Mage_Newsletter -->
|
50 |
+
<reference name="customer_account_navigation">
|
51 |
+
<action method="addLink" translate="label" module="newsletter"><name>newsletter</name><path>newsletter/manage/</path><label>Newsletter Subscriptions</label></action>
|
52 |
+
</reference>
|
53 |
+
<remove name="left.newsletter"/>
|
54 |
+
</customer_account>
|
55 |
+
|
56 |
+
<newsletter_manage_index translate="label">
|
57 |
+
<label>Customer My Account Newsletter Subscriptions</label>
|
58 |
+
<update handle="customer_account"/>
|
59 |
+
<reference name="my.account.wrapper">
|
60 |
+
<block type="customer/newsletter" name="customer_newsletter">
|
61 |
+
<block type="page/html_wrapper" name="customer.newsletter.form.before" as="form_before" translate="label">
|
62 |
+
<label>Newsletter Subscription Form Before</label>
|
63 |
+
<action method="setMayBeInvisible"><value>1</value></action>
|
64 |
+
</block>
|
65 |
+
</block>
|
66 |
+
</reference>
|
67 |
+
</newsletter_manage_index>
|
68 |
+
|
69 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/page.xml
ADDED
@@ -0,0 +1,215 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
-->
|
28 |
+
<layout version="0.1.0">
|
29 |
+
<!--
|
30 |
+
Default layout, loads most of the pages
|
31 |
+
-->
|
32 |
+
|
33 |
+
<default translate="label" module="page">
|
34 |
+
<label>All Pages</label>
|
35 |
+
<block type="page/html" name="root" output="toHtml" template="page/3columns.phtml">
|
36 |
+
|
37 |
+
<block type="page/html_head" name="head" as="head">
|
38 |
+
|
39 |
+
<!--<action method="addItem"><type>skin_js</type><name>js/layerslider/js/jquery.js</name></action>-->
|
40 |
+
|
41 |
+
<action method="addItem"><type>skin_js</type><name>js/jquery.flexisel.js</name></action>
|
42 |
+
<action method="addJs"><script>prototype/prototype.js</script></action>
|
43 |
+
<action method="addJs"><script>lib/ccard.js</script></action>
|
44 |
+
<action method="addJs"><script>prototype/validation.js</script></action>
|
45 |
+
<action method="addJs"><script>scriptaculous/builder.js</script></action>
|
46 |
+
<action method="addJs"><script>scriptaculous/effects.js</script></action>
|
47 |
+
<action method="addJs"><script>scriptaculous/dragdrop.js</script></action>
|
48 |
+
<action method="addJs"><script>scriptaculous/controls.js</script></action>
|
49 |
+
<action method="addJs"><script>scriptaculous/slider.js</script></action>
|
50 |
+
<action method="addJs"><script>varien/js.js</script></action>
|
51 |
+
<action method="addJs"><script>varien/form.js</script></action>
|
52 |
+
<action method="addJs"><script>mage/translate.js</script></action>
|
53 |
+
<action method="addJs"><script>mage/cookies.js</script></action>
|
54 |
+
|
55 |
+
|
56 |
+
<block type="page/js_cookie" name="js_cookies" template="page/js/cookie.phtml"/>
|
57 |
+
|
58 |
+
<action method="addCss"><stylesheet>js/owl-carousel/owl.carousel.css</stylesheet></action>
|
59 |
+
<action method="addCss"><stylesheet>js/owl-carousel/owl.theme.css</stylesheet></action>
|
60 |
+
<action method="addCss"><stylesheet>js/owl-carousel/owl.transitions.css</stylesheet></action>
|
61 |
+
<action method="addCss"><stylesheet>css/font_awesome/css/font-awesome.min.css</stylesheet></action>
|
62 |
+
<action method="addCss"><stylesheet>js/fancybox/jquery.fancybox.css</stylesheet></action>
|
63 |
+
<!-- <action method="addCss"><stylesheet>css/styles.css</stylesheet></action> -->
|
64 |
+
<action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
|
65 |
+
<action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
|
66 |
+
<action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
|
67 |
+
<action method="addCss"><stylesheet>css/responsive.css</stylesheet></action>
|
68 |
+
<action method="addCss"><stylesheet>js/layerslider/css/layerslider.css</stylesheet></action>
|
69 |
+
<action method="addCss"><stylesheet>css/dcmegamenu.css</stylesheet></action>
|
70 |
+
<action method="addCss"><stylesheet>css/selectric.css</stylesheet></action>
|
71 |
+
<!--<action method="addCss"><stylesheet>css/bootstrap/bootstrap.min.css</stylesheet></action>-->
|
72 |
+
|
73 |
+
<action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
|
74 |
+
<action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
|
75 |
+
</block>
|
76 |
+
|
77 |
+
<block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
|
78 |
+
<label>Page Top</label>
|
79 |
+
</block>
|
80 |
+
|
81 |
+
<block type="page/html_notices" name="global_notices" as="global_notices" template="page/html/notices.phtml" />
|
82 |
+
|
83 |
+
<block type="page/html_header" name="header" as="header">
|
84 |
+
<block type="page/template_links" name="top.links" as="topLinks"/>
|
85 |
+
<block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
|
86 |
+
<block type="core/text_list" name="top.menu" as="topMenu" translate="label">
|
87 |
+
<label>Navigation Bar</label>
|
88 |
+
<block type="page/html_topmenu" name="catalog.topnav" template="page/html/topmenu.phtml"/>
|
89 |
+
</block>
|
90 |
+
<block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
|
91 |
+
<label>Page Header</label>
|
92 |
+
<action method="setElementClass"><value>top-container</value></action>
|
93 |
+
</block>
|
94 |
+
<block type="page/html_welcome" name="welcome" as="welcome"/>
|
95 |
+
</block>
|
96 |
+
|
97 |
+
<block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>
|
98 |
+
|
99 |
+
<block type="core/text_list" name="left" as="left" translate="label">
|
100 |
+
<label>Left Column</label>
|
101 |
+
</block>
|
102 |
+
|
103 |
+
<block type="core/text_list" name="baners" as="baners"/>
|
104 |
+
|
105 |
+
<block type="core/text_list" name="newreference" as="newreference"/>
|
106 |
+
|
107 |
+
<block type="core/messages" name="global_messages" as="global_messages"/>
|
108 |
+
<block type="core/messages" name="messages" as="messages"/>
|
109 |
+
|
110 |
+
<block type="core/text_list" name="content" as="content" translate="label">
|
111 |
+
<label>Main Content Area</label>
|
112 |
+
</block>
|
113 |
+
|
114 |
+
<block type="core/text_list" name="brands" as="brands"/>
|
115 |
+
|
116 |
+
<block type="core/text_list" name="right" as="right" translate="label">
|
117 |
+
<label>Right Column</label>
|
118 |
+
</block>
|
119 |
+
|
120 |
+
<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
|
121 |
+
<block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
|
122 |
+
<label>Page Footer</label>
|
123 |
+
<action method="setElementClass"><value>bottom-container</value></action>
|
124 |
+
</block>
|
125 |
+
<block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
|
126 |
+
<block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
|
127 |
+
</block>
|
128 |
+
|
129 |
+
<block type="core/text_list" name="before_body_end" as="before_body_end" translate="label">
|
130 |
+
<label>Page Bottom</label>
|
131 |
+
<block type="page/html_cookieNotice" name="global_cookie_notice" as ="global_cookie_notice" template="page/html/cookienotice.phtml" before="-" />
|
132 |
+
</block>
|
133 |
+
</block>
|
134 |
+
|
135 |
+
<block type="core/profiler" output="toHtml" name="core_profiler"/>
|
136 |
+
</default>
|
137 |
+
|
138 |
+
<print translate="label" module="page">
|
139 |
+
<label>All Pages (Print Version)</label>
|
140 |
+
<!-- Mage_Page -->
|
141 |
+
<block type="page/html" name="root" output="toHtml" template="page/print.phtml">
|
142 |
+
|
143 |
+
<block type="page/html_head" name="head" as="head">
|
144 |
+
<action method="addJs"><script>prototype/prototype.js</script></action>
|
145 |
+
<action method="addJs"><script>mage/translate.js</script></action>
|
146 |
+
<action method="addJs"><script>lib/ccard.js</script></action>
|
147 |
+
<action method="addJs"><script>prototype/validation.js</script></action>
|
148 |
+
<action method="addJs"><script>varien/js.js</script></action>
|
149 |
+
|
150 |
+
<!-- <action method="addCss"><stylesheet>css/styles.css</stylesheet></action> -->
|
151 |
+
<action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
|
152 |
+
<action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
|
153 |
+
<action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
|
154 |
+
|
155 |
+
<action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
|
156 |
+
<action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
|
157 |
+
|
158 |
+
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);
|
159 |
+
|
160 |
+
</block>
|
161 |
+
|
162 |
+
<block type="core/text_list" name="content" as="content" translate="label">
|
163 |
+
<label>Main Content Area</label>
|
164 |
+
</block>
|
165 |
+
|
166 |
+
</block>
|
167 |
+
</print>
|
168 |
+
|
169 |
+
<!-- Custom page layout handles -->
|
170 |
+
<page_empty translate="label">
|
171 |
+
<label>All Empty Layout Pages</label>
|
172 |
+
<reference name="root">
|
173 |
+
<action method="setTemplate"><template>page/empty.phtml</template></action>
|
174 |
+
<!-- Mark root page block that template is applied -->
|
175 |
+
<action method="setIsHandle"><applied>1</applied></action>
|
176 |
+
</reference>
|
177 |
+
</page_empty>
|
178 |
+
|
179 |
+
<page_one_column translate="label">
|
180 |
+
<label>All One-Column Layout Pages</label>
|
181 |
+
<reference name="root">
|
182 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
183 |
+
<!-- Mark root page block that template is applied -->
|
184 |
+
<action method="setIsHandle"><applied>1</applied></action>
|
185 |
+
</reference>
|
186 |
+
</page_one_column>
|
187 |
+
|
188 |
+
<page_two_columns_left translate="label">
|
189 |
+
<label>All Two-Column Layout Pages (Left Column)</label>
|
190 |
+
<reference name="root">
|
191 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
192 |
+
<!-- Mark root page block that template is applied -->
|
193 |
+
<action method="setIsHandle"><applied>1</applied></action>
|
194 |
+
</reference>
|
195 |
+
|
196 |
+
</page_two_columns_left>
|
197 |
+
|
198 |
+
<page_two_columns_right translate="label">
|
199 |
+
<label>All Two-Column Layout Pages (Right Column)</label>
|
200 |
+
<reference name="root">
|
201 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
202 |
+
<!-- Mark root page block that template is applied -->
|
203 |
+
<action method="setIsHandle"><applied>1</applied></action>
|
204 |
+
</reference>
|
205 |
+
</page_two_columns_right>
|
206 |
+
|
207 |
+
<page_three_columns translate="label">
|
208 |
+
<label>All Three-Column Layout Pages</label>
|
209 |
+
<reference name="root">
|
210 |
+
<action method="setTemplate"><template>page/3columns.phtml</template></action>
|
211 |
+
<!-- Mark root page block that template is applied -->
|
212 |
+
<action method="setIsHandle"><applied>1</applied></action>
|
213 |
+
</reference>
|
214 |
+
</page_three_columns>
|
215 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/paypal.xml
ADDED
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
<checkout_cart_index>
|
31 |
+
<reference name="checkout.cart.top_methods">
|
32 |
+
<block type="paypal/express_shortcut" name="checkout.cart.methods.paypal_express.top" before="-" template="paypal/express/shortcut.phtml">
|
33 |
+
<action method="setIsQuoteAllowed"><value>1</value></action>
|
34 |
+
</block>
|
35 |
+
</reference>
|
36 |
+
|
37 |
+
<reference name="checkout.cart.methods">
|
38 |
+
<block type="paypal/express_shortcut" name="checkout.cart.methods.paypal_express.bottom" before="-" template="paypal/express/shortcut.phtml">
|
39 |
+
<action method="setIsQuoteAllowed"><value>1</value></action>
|
40 |
+
</block>
|
41 |
+
</reference>
|
42 |
+
|
43 |
+
<update handle="SHORTCUT_popup" />
|
44 |
+
</checkout_cart_index>
|
45 |
+
|
46 |
+
<paypal_express_review translate="label">
|
47 |
+
<label>PayPal Express Order Review Form</label>
|
48 |
+
<remove name="right"/>
|
49 |
+
<remove name="left"/>
|
50 |
+
|
51 |
+
<reference name="root">
|
52 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
53 |
+
</reference>
|
54 |
+
<reference name="content">
|
55 |
+
<block type="paypal/express_review" name="paypal.express.review" template="paypal/express/review.phtml">
|
56 |
+
<block type="paypal/express_review" name="express.review.shipping.method" as="shipping_method" template="paypal/express/review/shipping/method.phtml"/>
|
57 |
+
<block type="paypal/express_review_details" name="paypal.express.review.details" as="details" template="paypal/express/review/details.phtml">
|
58 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
|
59 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
|
60 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
|
61 |
+
<block type="checkout/cart_totals" name="paypal.express.review.details.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
|
62 |
+
</block>
|
63 |
+
<block type="checkout/agreements" name="paypal.express.review.details.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
|
64 |
+
</block>
|
65 |
+
</reference>
|
66 |
+
<reference name="head">
|
67 |
+
<action method="addItem"><type>skin_js</type><name>js/checkout/review.js</name></action>
|
68 |
+
</reference>
|
69 |
+
<block type="core/text_list" name="additional.product.info" />
|
70 |
+
</paypal_express_review>
|
71 |
+
|
72 |
+
<paypal_express_review_details>
|
73 |
+
<block type="paypal/express_review_details" name="root" output="toHtml" template="paypal/express/review/details.phtml">
|
74 |
+
<action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
|
75 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
|
76 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
|
77 |
+
<block type="checkout/cart_totals" name="paypal.express.review.details.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
|
78 |
+
</block>
|
79 |
+
</paypal_express_review_details>
|
80 |
+
|
81 |
+
<!--
|
82 |
+
Available logo types can be assigned with action="setLogoType":
|
83 |
+
- wePrefer_150x60
|
84 |
+
- wePrefer_150x40
|
85 |
+
- nowAccepting_150x60
|
86 |
+
- nowAccepting_150x40
|
87 |
+
- paymentsBy_150x60
|
88 |
+
- paymentsBy_150x40
|
89 |
+
- shopNowUsing_150x60
|
90 |
+
- shopNowUsing_150x40
|
91 |
+
-->
|
92 |
+
<catalog_product_view>
|
93 |
+
<reference name="product.info.addtocart">
|
94 |
+
<block type="page/html_wrapper" name="product.info.addtocart.paypal.wrapper" translate="label">
|
95 |
+
<label>PayPal Express Checkout Shortcut Wrapper</label>
|
96 |
+
<block type="paypal/express_shortcut" name="product.info.addtocart.paypal" template="paypal/express/shortcut.phtml">
|
97 |
+
<action method="setIsInCatalogProduct"><value>1</value></action>
|
98 |
+
</block>
|
99 |
+
</block>
|
100 |
+
</reference>
|
101 |
+
<update handle="SHORTCUT_popup" />
|
102 |
+
<reference name="right">
|
103 |
+
<block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml">
|
104 |
+
<!--action method="setLogoType"><value>wePrefer_150x60</value></action-->
|
105 |
+
</block>
|
106 |
+
</reference>
|
107 |
+
|
108 |
+
<reference name="right">
|
109 |
+
<remove name="paypal.partner.right.logo" />
|
110 |
+
</reference>
|
111 |
+
|
112 |
+
</catalog_product_view>
|
113 |
+
|
114 |
+
<catalog_category_default>
|
115 |
+
<update handle="SHORTCUT_popup" />
|
116 |
+
<reference name="right">
|
117 |
+
<block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml"/>
|
118 |
+
</reference>
|
119 |
+
</catalog_category_default>
|
120 |
+
|
121 |
+
<catalog_category_layered>
|
122 |
+
<update handle="SHORTCUT_popup" />
|
123 |
+
<reference name="right">
|
124 |
+
<block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml"/>
|
125 |
+
</reference>
|
126 |
+
</catalog_category_layered>
|
127 |
+
|
128 |
+
<catalog_product_compare_index>
|
129 |
+
<update handle="SHORTCUT_popup" />
|
130 |
+
</catalog_product_compare_index>
|
131 |
+
|
132 |
+
<catalogsearch_result_index>
|
133 |
+
<update handle="SHORTCUT_popup" />
|
134 |
+
</catalogsearch_result_index>
|
135 |
+
|
136 |
+
<catalogsearch_advanced_result>
|
137 |
+
<update handle="SHORTCUT_popup" />
|
138 |
+
</catalogsearch_advanced_result>
|
139 |
+
|
140 |
+
<tag_product_list>
|
141 |
+
<update handle="SHORTCUT_popup" />
|
142 |
+
</tag_product_list>
|
143 |
+
<tag_customer_view>
|
144 |
+
<update handle="SHORTCUT_popup" />
|
145 |
+
</tag_customer_view>
|
146 |
+
|
147 |
+
<wishlist_index_index>
|
148 |
+
<update handle="SHORTCUT_popup" />
|
149 |
+
</wishlist_index_index>
|
150 |
+
<review_product_list>
|
151 |
+
<update handle="SHORTCUT_popup" />
|
152 |
+
</review_product_list>
|
153 |
+
|
154 |
+
<checkout_onepage_success>
|
155 |
+
<update handle="SHORTCUT_popup" />
|
156 |
+
</checkout_onepage_success>
|
157 |
+
<checkout_onepage_failure>
|
158 |
+
<update handle="SHORTCUT_popup" />
|
159 |
+
</checkout_onepage_failure>
|
160 |
+
|
161 |
+
<cms_index_index>
|
162 |
+
<reference name="right">
|
163 |
+
<block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml"/>
|
164 |
+
</reference>
|
165 |
+
</cms_index_index>
|
166 |
+
|
167 |
+
<default>
|
168 |
+
<reference name="topCart.extra_actions">
|
169 |
+
<block type="paypal/express_shortcut" name="paypal.partner.top_cart.shortcut" template="paypal/express/shortcut.phtml"/>
|
170 |
+
</reference>
|
171 |
+
<reference name="cart_sidebar.extra_actions">
|
172 |
+
<block type="paypal/express_shortcut" name="paypal.partner.cart_sidebar.shortcut" template="paypal/express/shortcut.phtml"/>
|
173 |
+
</reference>
|
174 |
+
</default>
|
175 |
+
|
176 |
+
<checkout_onepage_review>
|
177 |
+
<reference name="checkout.onepage.review.info.items.after">
|
178 |
+
<block type="paypal/iframe" name="paypal.iframe" />
|
179 |
+
</reference>
|
180 |
+
<reference name="checkout.onepage.review.button">
|
181 |
+
<action method="setTemplate"><template helper="paypal/hss/getReviewButtonTemplate"><name>paypal/hss/review/button.phtml</name><block>checkout.onepage.review.button</block></template></action>
|
182 |
+
</reference>
|
183 |
+
</checkout_onepage_review>
|
184 |
+
|
185 |
+
<paypal_payflow_link_iframe>
|
186 |
+
<block type="paypal/payflow_link_iframe" name="payflow.link.iframe" template="paypal/payflowlink/form.phtml" />
|
187 |
+
</paypal_payflow_link_iframe>
|
188 |
+
|
189 |
+
<paypal_payflow_advanced_iframe>
|
190 |
+
<block type="paypal/payflow_advanced_iframe" name="payflow.advanced.iframe" template="paypal/payflowadvanced/form.phtml" />
|
191 |
+
</paypal_payflow_advanced_iframe>
|
192 |
+
|
193 |
+
<paypal_hosted_pro_iframe>
|
194 |
+
<block type="paypal/hosted_pro_iframe" name="hosted.pro.iframe" template="paypal/hss/form.phtml"/>
|
195 |
+
</paypal_hosted_pro_iframe>
|
196 |
+
|
197 |
+
<SHORTCUT_popup>
|
198 |
+
<reference name="product.tooltip">
|
199 |
+
<block type="page/html_wrapper" name="product.info.addtocart.paypal.wrapper" translate="label">
|
200 |
+
<block type="paypal/express_shortcut" name="product.info.addtocart.paypal" template="paypal/express/shortcut.phtml">
|
201 |
+
<action method="setIsInCatalogProduct"><value>1</value></action>
|
202 |
+
<action method="setShowOrPosition"><value>after</value></action>
|
203 |
+
</block>
|
204 |
+
</block>
|
205 |
+
</reference>
|
206 |
+
</SHORTCUT_popup>
|
207 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/poll.xml
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
|
31 |
+
<!--
|
32 |
+
Default layout, loads most of the pages
|
33 |
+
-->
|
34 |
+
|
35 |
+
<default>
|
36 |
+
|
37 |
+
<!-- Mage_Poll -->
|
38 |
+
<reference name="right">
|
39 |
+
<block type="poll/activePoll" name="right.poll">
|
40 |
+
<action method="setPollTemplate"><template>poll/active.phtml</template><type>poll</type></action>
|
41 |
+
<action method="setPollTemplate"><template>poll/result.phtml</template><type>results</type></action>
|
42 |
+
</block>
|
43 |
+
</reference>
|
44 |
+
|
45 |
+
<reference name="right">
|
46 |
+
<remove name="right.poll"/>
|
47 |
+
</reference>
|
48 |
+
|
49 |
+
</default>
|
50 |
+
|
51 |
+
<!--
|
52 |
+
Customer account home dashboard layout
|
53 |
+
-->
|
54 |
+
|
55 |
+
<customer_account_index>
|
56 |
+
<reference name="right">
|
57 |
+
<action method="unsetChild"><name>right.poll</name></action>
|
58 |
+
</reference>
|
59 |
+
</customer_account_index>
|
60 |
+
|
61 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/reports.xml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
<default>
|
31 |
+
<!-- Mage_Reports -->
|
32 |
+
<reference name="right">
|
33 |
+
<block type="reports/product_viewed" after="-" name="right.reports.product.viewed" template="reports/product_viewed.phtml" />
|
34 |
+
<block type="reports/product_compared" before="right.permanent.callout" name="right.reports.product.compared" template="reports/product_compared.phtml" />
|
35 |
+
</reference>
|
36 |
+
</default>
|
37 |
+
|
38 |
+
<catalog_category_layered_nochildren translate="label">
|
39 |
+
<label>Catalog Category (Without Subcategories)</label>
|
40 |
+
<remove name="right.reports.product.viewed" />
|
41 |
+
<reference name="right">
|
42 |
+
<block type="reports/product_viewed" before="right.permanent.callout" name="left.reports.product.viewed" template="reports/product_viewed.phtml" />
|
43 |
+
</reference>
|
44 |
+
</catalog_category_layered_nochildren>
|
45 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/review.xml
ADDED
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
|
31 |
+
<customer_account>
|
32 |
+
<!-- Mage_Review -->
|
33 |
+
<reference name="customer_account_navigation">
|
34 |
+
<action method="addLink" translate="label" module="review"><name>reviews</name><path>review/customer</path><label>My Product Reviews</label></action>
|
35 |
+
</reference>
|
36 |
+
|
37 |
+
</customer_account>
|
38 |
+
|
39 |
+
<!--
|
40 |
+
Customer account home dashboard layout
|
41 |
+
-->
|
42 |
+
|
43 |
+
<customer_account_index>
|
44 |
+
|
45 |
+
<!-- Mage_Review -->
|
46 |
+
<reference name="customer_account_dashboard">
|
47 |
+
<block type="review/customer_recent" name="customer_account_dashboard_info1" as="info1" template="review/customer/recent.phtml"/>
|
48 |
+
</reference>
|
49 |
+
|
50 |
+
</customer_account_index>
|
51 |
+
|
52 |
+
|
53 |
+
<!--
|
54 |
+
Product reviews page (?)
|
55 |
+
-->
|
56 |
+
|
57 |
+
<reviews>
|
58 |
+
<!-- Mage_Review -->
|
59 |
+
<reference name="root">
|
60 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
61 |
+
</reference>
|
62 |
+
</reviews>
|
63 |
+
|
64 |
+
<!--
|
65 |
+
Product reviews page
|
66 |
+
-->
|
67 |
+
|
68 |
+
<review_product_list translate="label">
|
69 |
+
<label>Catalog Product Reviews List</label>
|
70 |
+
<reference name="root">
|
71 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
72 |
+
</reference>
|
73 |
+
<reference name="head">
|
74 |
+
<action method="addJs"><script>varien/product.js</script></action>
|
75 |
+
<action method="addJs"><script>varien/configurable.js</script></action>
|
76 |
+
</reference>
|
77 |
+
<reference name="content">
|
78 |
+
<block type="review/product_view" name="product.info" template="catalog/product/view.phtml">
|
79 |
+
<block type="catalog/product_view_media" name="product.info.media" as="media" template="catalog/product/view/media.phtml">
|
80 |
+
<action method="disableGallery"/>
|
81 |
+
</block>
|
82 |
+
<block type="catalog/product_view" name="product.info.addto" as="addto" template="catalog/product/view/addto.phtml"/>
|
83 |
+
<block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml">
|
84 |
+
<!-- workaround: a better place for this code is in paypal.xml -->
|
85 |
+
<block type="page/html_wrapper" name="review.product.info.addtocart.paypal.wrapper" translate="label" module="paypal">
|
86 |
+
<label>PayPal Express Checkout Shortcut Wrapper</label>
|
87 |
+
<block type="paypal/express_shortcut" name="review.product.info.addtocart.paypal" template="paypal/express/shortcut.phtml">
|
88 |
+
<action method="setIsInCatalogProduct"><value>1</value></action>
|
89 |
+
</block>
|
90 |
+
</block>
|
91 |
+
</block>
|
92 |
+
<block type="catalog/product_view" name="product.tierprices" as="tierprices" template="catalog/product/view/tierprices.phtml"/>
|
93 |
+
<block type="core/template" name="product.info.other" as="other" template="review/product/view/other.phtml"/>
|
94 |
+
<block type="page/html_pager" name="product_review_list.toolbar" />
|
95 |
+
<block type="core/template" name="product_review_list.count" template="review/product/view/count.phtml" />
|
96 |
+
<block type="review/product_view_list" name="product.info.product_additional_data" as="product_additional_data" template="review/product/view/list.phtml">
|
97 |
+
<block type="review/form" name="product.review.form" as="review_form">
|
98 |
+
<block type="page/html_wrapper" name="product.review.form.fields.before" as="form_fields_before" translate="label">
|
99 |
+
<label>Review Form Fields Before</label>
|
100 |
+
<action method="setMayBeInvisible"><value>1</value></action>
|
101 |
+
</block>
|
102 |
+
</block>
|
103 |
+
</block>
|
104 |
+
</block>
|
105 |
+
</reference>
|
106 |
+
</review_product_list>
|
107 |
+
|
108 |
+
<review_product_view translate="label">
|
109 |
+
<label>Catalog Product Review View</label>
|
110 |
+
<reference name="root">
|
111 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
112 |
+
</reference>
|
113 |
+
<reference name="content">
|
114 |
+
<block type="review/view" name="review_view"/>
|
115 |
+
</reference>
|
116 |
+
|
117 |
+
</review_product_view>
|
118 |
+
|
119 |
+
<review_customer_index translate="label">
|
120 |
+
<label>Customer My Account Product Reviews</label>
|
121 |
+
<update handle="customer_account"/>
|
122 |
+
<reference name="my.account.wrapper">
|
123 |
+
<block type="review/customer_list" name="review_customer_list" template="review/customer/list.phtml"/>
|
124 |
+
</reference>
|
125 |
+
</review_customer_index>
|
126 |
+
|
127 |
+
<review_customer_view translate="label">
|
128 |
+
<label>Customer My Account Review Details</label>
|
129 |
+
<update handle="customer_account"/>
|
130 |
+
<reference name="my.account.wrapper">
|
131 |
+
<block type="review/customer_view" name="customers_review"/>
|
132 |
+
</reference>
|
133 |
+
</review_customer_view>
|
134 |
+
|
135 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/tag.xml
ADDED
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
|
31 |
+
<!--
|
32 |
+
Default layout, loads most of the pages
|
33 |
+
-->
|
34 |
+
|
35 |
+
<default>
|
36 |
+
<!-- Mage_Tag -->
|
37 |
+
<reference name="left">
|
38 |
+
<block type="tag/popular" name="tags_popular" template="tag/popular.phtml"/>
|
39 |
+
</reference>
|
40 |
+
|
41 |
+
</default>
|
42 |
+
|
43 |
+
<!--
|
44 |
+
Customer account pages, rendered for all tabs in dashboard
|
45 |
+
-->
|
46 |
+
|
47 |
+
<customer_account>
|
48 |
+
<!-- Mage_Tag -->
|
49 |
+
<reference name="customer_account_navigation">
|
50 |
+
<action method="addLink" translate="label" module="tag"><name>tags</name><path>tag/customer/</path><label>My Tags</label></action>
|
51 |
+
</reference>
|
52 |
+
</customer_account>
|
53 |
+
|
54 |
+
<!--
|
55 |
+
Customer account home dashboard layout
|
56 |
+
-->
|
57 |
+
|
58 |
+
<customer_account_index>
|
59 |
+
<!-- Mage_Tag -->
|
60 |
+
<reference name="customer_account_dashboard">
|
61 |
+
<action method="unsetChild"><name>customer_account_dashboard_info2</name></action>
|
62 |
+
<block type="tag/customer_recent" name="customer_account_dashboard_info2" as="info2" template="tag/customer/recent.phtml"/>
|
63 |
+
</reference>
|
64 |
+
</customer_account_index>
|
65 |
+
|
66 |
+
<catalog_product_view translate="label">
|
67 |
+
<label>Catalog Product View</label>
|
68 |
+
<!-- Mage_Tag -->
|
69 |
+
<reference name="product.info.additional">
|
70 |
+
<block type="tag/product_list" name="product_tag_list" before="-" template="tag/list.phtml">
|
71 |
+
<block type="page/html_wrapper" name="product.tag.list.list.before" as="list_before" translate="label">
|
72 |
+
<label>Tags List Before</label>
|
73 |
+
<action method="setMayBeInvisible"><value>1</value></action>
|
74 |
+
</block>
|
75 |
+
</block>
|
76 |
+
</reference>
|
77 |
+
</catalog_product_view>
|
78 |
+
|
79 |
+
<!--
|
80 |
+
All tags page
|
81 |
+
-->
|
82 |
+
|
83 |
+
<tag_list_index translate="label">
|
84 |
+
<label>Tags List (All Available)</label>
|
85 |
+
<!-- Mage_Tag -->
|
86 |
+
<reference name="root">
|
87 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
88 |
+
</reference>
|
89 |
+
<reference name="content">
|
90 |
+
<block type="tag/all" name="tags_all" template="tag/cloud.phtml"/>
|
91 |
+
</reference>
|
92 |
+
</tag_list_index>
|
93 |
+
|
94 |
+
<tag_product_list translate="label">
|
95 |
+
<label>Tagged Products List</label>
|
96 |
+
<!-- Mage_Tag -->
|
97 |
+
<reference name="content">
|
98 |
+
<block type="tag/product_result" name="tag_products" template="catalogsearch/result.phtml">
|
99 |
+
<block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml">
|
100 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
101 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
102 |
+
</block>
|
103 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
104 |
+
</block>
|
105 |
+
<action method="setListOrders"/>
|
106 |
+
<action method="setListModes"/>
|
107 |
+
<action method="setListCollection"/>
|
108 |
+
</block>
|
109 |
+
</reference>
|
110 |
+
</tag_product_list>
|
111 |
+
|
112 |
+
<tag_customer_index translate="label">
|
113 |
+
<label>Customer My Account My Tags List</label>
|
114 |
+
<update handle="customer_account"/>
|
115 |
+
<reference name="root">
|
116 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>My Account</title></action>
|
117 |
+
</reference>
|
118 |
+
<reference name="my.account.wrapper">
|
119 |
+
<block type="tag/customer_tags" name="customer_tags" template="tag/customer/tags.phtml"/>
|
120 |
+
</reference>
|
121 |
+
</tag_customer_index>
|
122 |
+
|
123 |
+
<tag_customer_view translate="label">
|
124 |
+
<label>Customer My Account Tag View</label>
|
125 |
+
<update handle="customer_account"/>
|
126 |
+
<reference name="root">
|
127 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>My Account</title></action>
|
128 |
+
</reference>
|
129 |
+
<reference name="my.account.wrapper">
|
130 |
+
<block type="tag/customer_view" name="customer_view" template="tag/customer/view.phtml"/>
|
131 |
+
</reference>
|
132 |
+
</tag_customer_view>
|
133 |
+
|
134 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/layout/wishlist.xml
ADDED
@@ -0,0 +1,139 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package base_default
|
24 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
|
28 |
+
-->
|
29 |
+
<layout version="0.1.0">
|
30 |
+
|
31 |
+
<!--
|
32 |
+
Default layout, loads most of the pages
|
33 |
+
-->
|
34 |
+
|
35 |
+
<default>
|
36 |
+
<reference name="top.links">
|
37 |
+
<block type="wishlist/links" name="wishlist_link" />
|
38 |
+
<action method="addLinkBlock"><blockName>wishlist_link</blockName></action>
|
39 |
+
</reference>
|
40 |
+
|
41 |
+
<!-- Mage_Wishlist -->
|
42 |
+
<reference name="right">
|
43 |
+
<block type="wishlist/customer_sidebar" name="wishlist_sidebar" as="wishlist" after="cart_sidebar" template="wishlist/sidebar.phtml" />
|
44 |
+
</reference>
|
45 |
+
</default>
|
46 |
+
|
47 |
+
<!--
|
48 |
+
Customer account pages, rendered for all tabs in dashboard
|
49 |
+
-->
|
50 |
+
|
51 |
+
<customer_account>
|
52 |
+
<!-- Mage_Wishlist -->
|
53 |
+
<reference name="customer_account_navigation">
|
54 |
+
<action method="addLink" translate="label" module="wishlist" ifconfig="wishlist/general/active"><name>wishlist</name><path>wishlist/</path><label>My Wishlist</label></action>
|
55 |
+
</reference>
|
56 |
+
</customer_account>
|
57 |
+
|
58 |
+
<!--
|
59 |
+
Customer account home dashboard layout
|
60 |
+
-->
|
61 |
+
|
62 |
+
<customer_account_index>
|
63 |
+
<reference name="right">
|
64 |
+
<action method="unsetChild"><name>wishlist</name></action>
|
65 |
+
</reference>
|
66 |
+
</customer_account_index>
|
67 |
+
|
68 |
+
<!--
|
69 |
+
Wishlist pages
|
70 |
+
-->
|
71 |
+
|
72 |
+
<wishlist_index_index translate="label">
|
73 |
+
<label>Customer My Account My Wishlist</label>
|
74 |
+
<!-- Mage_Wishlist -->
|
75 |
+
<update handle="customer_account" />
|
76 |
+
<reference name="my.account.wrapper">
|
77 |
+
<block type="wishlist/customer_wishlist" name="customer.wishlist" template="wishlist/view.phtml">
|
78 |
+
<action method="setTitle" translate="title">
|
79 |
+
<title>My Wishlist</title>
|
80 |
+
</action>
|
81 |
+
<block type="wishlist/customer_wishlist_items" name="customer.wishlist.items" as="items" template="wishlist/item/list.phtml">
|
82 |
+
<block type="wishlist/customer_wishlist_item_column_image" name="customer.wishlist.item.image" template="wishlist/item/column/image.phtml" />
|
83 |
+
<block type="wishlist/customer_wishlist_item_column_comment" name="customer.wishlist.item.info" template="wishlist/item/column/info.phtml">
|
84 |
+
<action method="setTitle" translate="title">
|
85 |
+
<title>Product Details and Comment</title>
|
86 |
+
</action>
|
87 |
+
</block>
|
88 |
+
<block type="wishlist/customer_wishlist_item_column_cart" name="customer.wishlist.item.cart" template="wishlist/item/column/cart.phtml">
|
89 |
+
<action method="setTitle" translate="title">
|
90 |
+
<title>Add to Cart</title>
|
91 |
+
</action>
|
92 |
+
<block type="wishlist/customer_wishlist_item_options" name="customer.wishlist.item.options" />
|
93 |
+
</block>
|
94 |
+
<block type="wishlist/customer_wishlist_item_column_remove" name="customer.wishlist.item.remove" template="wishlist/item/column/remove.phtml" />
|
95 |
+
</block>
|
96 |
+
<block type="core/text_list" name="customer.wishlist.buttons" as="control_buttons">
|
97 |
+
<block type="wishlist/customer_wishlist_button" name="customer.wishlist.button.share" template="wishlist/button/share.phtml" />
|
98 |
+
<block type="wishlist/customer_wishlist_button" name="customer.wishlist.button.toCart" template="wishlist/button/tocart.phtml" />
|
99 |
+
<block type="wishlist/customer_wishlist_button" name="customer.wishlist.button.update" template="wishlist/button/update.phtml" />
|
100 |
+
</block>
|
101 |
+
</block>
|
102 |
+
</reference>
|
103 |
+
<reference name="right">
|
104 |
+
<action method="unsetChild"><name>wishlist_customer_sidebar</name></action>
|
105 |
+
</reference>
|
106 |
+
</wishlist_index_index>
|
107 |
+
|
108 |
+
<wishlist_index_share translate="label">
|
109 |
+
<label>Customer My Account Wishlist Sharing Form</label>
|
110 |
+
<!-- Mage_Wishlist -->
|
111 |
+
<update handle="customer_account" />
|
112 |
+
<reference name="my.account.wrapper">
|
113 |
+
<block type="wishlist/customer_sharing" name="wishlist.sharing" template="wishlist/sharing.phtml" />
|
114 |
+
</reference>
|
115 |
+
<reference name="right">
|
116 |
+
<action method="unsetChild"><name>wishlist_customer_sidebar</name></action>
|
117 |
+
</reference>
|
118 |
+
</wishlist_index_share>
|
119 |
+
|
120 |
+
<wishlist_index_configure translate="label">
|
121 |
+
<label>Configure Wishlist Item</label>
|
122 |
+
<update handle="catalog_product_view" />
|
123 |
+
<reference name="product.info">
|
124 |
+
<block type="wishlist/item_configure" name="product.info.addto" as="addto" template="wishlist/item/configure/addto.phtml" />
|
125 |
+
</reference>
|
126 |
+
<reference name="product.info.options.wrapper.bottom">
|
127 |
+
<action method="unsetChild"><name>product.info.addto</name></action>
|
128 |
+
<action method="append"><block>product.info.addto</block></action>
|
129 |
+
</reference>
|
130 |
+
</wishlist_index_configure>
|
131 |
+
|
132 |
+
<wishlist_shared_index translate="label">
|
133 |
+
<label>Customer Shared Wishlist View</label>
|
134 |
+
<!-- Mage_Wishlist -->
|
135 |
+
<reference name="content">
|
136 |
+
<block type="wishlist/share_wishlist" name="customer.wishlist" template="wishlist/shared.phtml" />
|
137 |
+
</reference>
|
138 |
+
</wishlist_shared_index>
|
139 |
+
</layout>
|
app/design/frontend/modulesgarden/minimo/template/bundle/catalog/product/view/type/bundle/option/radio.phtml
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
?>
|
28 |
+
|
29 |
+
<?php /* @var $this Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option_Radio */ ?>
|
30 |
+
<?php $_option = $this->getOption(); ?>
|
31 |
+
<?php $_selections = $_option->getSelections(); ?>
|
32 |
+
<?php $_default = $_option->getDefaultSelection(); ?>
|
33 |
+
<?php list($_defaultQty, $_canChangeQty) = $this->_getDefaultValues(); ?>
|
34 |
+
<?php $tierPriceHtml = ''; ?>
|
35 |
+
|
36 |
+
<dt>
|
37 |
+
<label<?php if ($_option->getRequired()) echo ' class="required"' ?>><?php echo $this->escapeHtml($_option->getTitle()) ?><?php if ($_option->getRequired()) echo '<em>*</em>' ?></label>
|
38 |
+
</dt>
|
39 |
+
<dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
|
40 |
+
<div class="input-box">
|
41 |
+
<?php /** @var $_selection Mage_Catalog_Model_Product*/ ?>
|
42 |
+
<?php if ($this->_showSingle()): ?>
|
43 |
+
<?php echo $this->getSelectionTitlePrice($_selections[0]); ?>
|
44 |
+
<?php if ($_selections[0]->getSelectionCanChangeQty()): ?>
|
45 |
+
<?php $tierPriceHtml = $this->getTierPriceHtml($_selections[0]); ?>
|
46 |
+
<?php endif; ?>
|
47 |
+
<input type="hidden" name="bundle_option[<?php echo $_option->getId() ?>]" value="<?php echo $_selections[0]->getSelectionId() ?>" />
|
48 |
+
<?php else:?>
|
49 |
+
<ul class="options-list">
|
50 |
+
<?php if (!$_option->getRequired()): ?>
|
51 |
+
<li><input type="radio" onclick="bundle.changeSelection(this)" class="radio" id="bundle-option-<?php echo $_option->getId() ?>" name="bundle_option[<?php echo $_option->getId() ?>]"<?php echo ($_default && $_default->isSalable())?'':' checked="checked" ' ?> value=""/>
|
52 |
+
<span class="label"><label for="bundle-option-<?php echo $_option->getId() ?>"><?php echo $this->__('None') ?></label></span>
|
53 |
+
</li>
|
54 |
+
<?php endif; ?>
|
55 |
+
<?php foreach ($_selections as $_selection): ?>
|
56 |
+
<?php if ($_selection->getSelectionCanChangeQty() && $this->_isSelected($_selection)): ?>
|
57 |
+
<?php $tierPriceHtml = $this->getTierPriceHtml($_selection); ?>
|
58 |
+
<?php endif; ?>
|
59 |
+
<li><input type="radio" onclick="bundle.changeSelection(this)" class="radio<?php echo $_option->getRequired()?' validate-one-required-by-name':'' ?> change-container-classname" id="bundle-option-<?php echo $_option->getId() ?>-<?php echo $_selection->getSelectionId() ?>" name="bundle_option[<?php echo $_option->getId() ?>]"<?php if ($this->_isSelected($_selection)) echo ' checked="checked"' ?><?php if (!$_selection->isSaleable()) echo ' disabled="disabled"' ?>value="<?php echo $_selection->getSelectionId() ?>"/>
|
60 |
+
<span class="label"><label for="bundle-option-<?php echo $_option->getId() ?>-<?php echo $_selection->getSelectionId() ?>"><?php echo $this->getSelectionTitlePrice($_selection) ?></label></span>
|
61 |
+
<?php if ($_option->getRequired()): ?>
|
62 |
+
<?php echo $this->setValidationContainer('bundle-option-'.$_option->getId().'-'.$_selection->getSelectionId(), 'bundle-option-'.$_option->getId().'-container') ?>
|
63 |
+
<?php endif; ?>
|
64 |
+
</li>
|
65 |
+
<?php endforeach; ?>
|
66 |
+
</ul>
|
67 |
+
<div id="bundle-option-<?php echo $_option->getId() ?>-container"></div>
|
68 |
+
<?php endif; ?>
|
69 |
+
</div>
|
70 |
+
<span id="bundle-option-<?php echo $_option->getId() ?>-tier-prices"> <?php echo $tierPriceHtml; ?></span>
|
71 |
+
<span class="qty-holder">
|
72 |
+
<label for="bundle-option-<?php echo $_option->getId() ?>-qty-input"><?php echo $this->__('Qty:') ?> </label>
|
73 |
+
<span class="qty-container">
|
74 |
+
<input onkeyup="bundle.changeOptionQty(this, event)" onblur="bundle.changeOptionQty(this, event)" <?php if (!$_canChangeQty) echo ' disabled="disabled"' ?> id="bundle-option-<?php echo $_option->getId() ?>-qty-input" class="input-text qty<?php if (!$_canChangeQty) echo ' qty-disabled' ?>" type="text" name="bundle_option_qty[<?php echo $_option->getId() ?>]" value="<?php echo $_defaultQty ?>"/>
|
75 |
+
<i class="fa fa-angle-up"></i>
|
76 |
+
<i class="fa fa-angle-down"></i>
|
77 |
+
</span>
|
78 |
+
</span>
|
79 |
+
</dd>
|
app/design/frontend/modulesgarden/minimo/template/bundle/catalog/product/view/type/bundle/option/select.phtml
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
?>
|
28 |
+
|
29 |
+
<?php /* @var $this Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option_Select */ ?>
|
30 |
+
<?php $_option = $this->getOption(); ?>
|
31 |
+
<?php $_selections = $_option->getSelections(); ?>
|
32 |
+
<?php $_default = $_option->getDefaultSelection(); ?>
|
33 |
+
<?php list($_defaultQty, $_canChangeQty) = $this->_getDefaultValues(); ?>
|
34 |
+
<?php $tierPriceHtml = ''; ?>
|
35 |
+
|
36 |
+
<dt>
|
37 |
+
<label<?php if ($_option->getRequired()) echo ' class="required"' ?>><?php echo $this->escapeHtml($_option->getTitle()) ?><?php if ($_option->getRequired()) echo '<em>*</em>' ?></label>
|
38 |
+
</dt>
|
39 |
+
<dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
|
40 |
+
<div class="input-box">
|
41 |
+
<?php /** @var $_selection Mage_Catalog_Model_Product*/ ?>
|
42 |
+
<?php if ($this->_showSingle()): ?>
|
43 |
+
<?php echo $this->getSelectionTitlePrice($_selections[0]); ?>
|
44 |
+
<?php if ($_selections[0]->getSelectionCanChangeQty()): ?>
|
45 |
+
<?php $tierPriceHtml = $this->getTierPriceHtml($_selections[0]); ?>
|
46 |
+
<?php endif; ?>
|
47 |
+
<input type="hidden" name="bundle_option[<?php echo $_option->getId() ?>]" value="<?php echo $_selections[0]->getSelectionId() ?>"/>
|
48 |
+
<?php else:?>
|
49 |
+
<select onchange="bundle.changeSelection(this)" id="bundle-option-<?php echo $_option->getId() ?>" name="bundle_option[<?php echo $_option->getId() ?>]" class="bundle-option-<?php echo $_option->getId() ?><?php if ($_option->getRequired()) echo ' required-entry' ?> bundle-option-select change-container-classname">
|
50 |
+
<option value=""><?php echo $this->__('Choose a selection...') ?></option>
|
51 |
+
<?php foreach ($_selections as $_selection): ?>
|
52 |
+
<?php if ($_selection->getSelectionCanChangeQty() && $this->_isSelected($_selection)): ?>
|
53 |
+
<?php $tierPriceHtml = $this->getTierPriceHtml($_selection); ?>
|
54 |
+
<?php endif; ?>
|
55 |
+
<option value="<?php echo $_selection->getSelectionId() ?>"<?php if ($this->_isSelected($_selection)) echo ' selected="selected"' ?><?php if (!$_selection->isSaleable()) echo ' disabled="disabled"' ?>><?php echo $this->getSelectionTitlePrice($_selection, false) ?></option>
|
56 |
+
<?php endforeach; ?>
|
57 |
+
</select>
|
58 |
+
<?php endif; ?>
|
59 |
+
</div>
|
60 |
+
<span id="bundle-option-<?php echo $_option->getId() ?>-tier-prices"> <?php echo $tierPriceHtml; ?></span>
|
61 |
+
<span class="qty-holder">
|
62 |
+
<label for="bundle-option-<?php echo $_option->getId() ?>-qty-input"><?php echo $this->__('Qty:') ?> </label>
|
63 |
+
<span class="qty-container">
|
64 |
+
<input onkeyup="bundle.changeOptionQty(this, event)" onblur="bundle.changeOptionQty(this, event)" <?php if (!$_canChangeQty) echo ' disabled="disabled"' ?> id="bundle-option-<?php echo $_option->getId() ?>-qty-input" class="input-text qty<?php if (!$_canChangeQty) echo ' qty-disabled' ?>" type="text" name="bundle_option_qty[<?php echo $_option->getId() ?>]" value="<?php echo $_defaultQty ?>"/>
|
65 |
+
<i class="fa fa-angle-up"></i>
|
66 |
+
<i class="fa fa-angle-down"></i>
|
67 |
+
</span>
|
68 |
+
|
69 |
+
</span>
|
70 |
+
</dd>
|
app/design/frontend/modulesgarden/minimo/template/callouts/left_col.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="block block-banner">
|
28 |
+
<div class="block-content">
|
29 |
+
<?php if(strtolower(substr($this->getLinkUrl(),0,4))==='http'): ?>
|
30 |
+
<a href="<?php echo $this->getLinkUrl() ?>" title="<?php echo $this->__($this->getImgAlt()) ?>">
|
31 |
+
<?php elseif($this->getLinkUrl()): ?>
|
32 |
+
<a href="<?php echo $this->getUrl($this->getLinkUrl()) ?>" title="<?php echo $this->__($this->getImgAlt()) ?>">
|
33 |
+
<?php endif; ?>
|
34 |
+
<img src="<?php echo $this->getSkinUrl($this->getImgSrc()) ?>"<?php if(!$this->getLinkUrl()): ?> title="<?php echo $this->__($this->getImgAlt()) ?>"<?php endif; ?> alt="<?php echo $this->__($this->getImgAlt()) ?>" />
|
35 |
+
<?php if($this->getLinkUrl()): ?>
|
36 |
+
</a>
|
37 |
+
<?php endif ?>
|
38 |
+
</div>
|
39 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/callouts/right_col.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="block block-banner">
|
28 |
+
<div class="block-content">
|
29 |
+
<?php if(strtolower(substr($this->getLinkUrl(),0,4))==='http'): ?>
|
30 |
+
<a href="<?php echo $this->getLinkUrl() ?>" title="<?php echo $this->__($this->getImgAlt()) ?>">
|
31 |
+
<?php elseif($this->getLinkUrl()): ?>
|
32 |
+
<a href="<?php echo $this->getUrl($this->getLinkUrl()) ?>" title="<?php echo $this->__($this->getImgAlt()) ?>">
|
33 |
+
<?php endif; ?>
|
34 |
+
<img src="<?php echo $this->getSkinUrl($this->getImgSrc()) ?>"<?php if(!$this->getLinkUrl()): ?> title="<?php echo $this->__($this->getImgAlt()) ?>"<?php endif; ?> alt="<?php echo $this->__($this->getImgAlt()) ?>" />
|
35 |
+
<?php if($this->getLinkUrl()): ?>
|
36 |
+
</a>
|
37 |
+
<?php endif ?>
|
38 |
+
</div>
|
39 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/category/page.phtml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @deprecated after 1.4.0.0-alpha3
|
29 |
+
*/
|
30 |
+
?>
|
31 |
+
<div class="page-title">
|
32 |
+
<h1><?php echo $this->getTitle() ?></h1>
|
33 |
+
</div>
|
34 |
+
<div>
|
35 |
+
<?php echo $this->getContent() ?>
|
36 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/category/view.phtml
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Category view template
|
30 |
+
*
|
31 |
+
* @see Mage_Catalog_Block_Category_View
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php
|
35 |
+
$_helper = $this->helper('catalog/output');
|
36 |
+
$_category = $this->getCurrentCategory();
|
37 |
+
$_imgHtml = '';
|
38 |
+
if ($_imgUrl = $_category->getImageUrl()) {
|
39 |
+
$_imgHtml = '<p class="category-image"><img src="'.$_imgUrl.'" alt="'.$this->escapeHtml($_category->getName()).'" title="'.$this->escapeHtml($_category->getName()).'" /></p>';
|
40 |
+
$_imgHtml = $_helper->categoryAttribute($_category, $_imgHtml, 'image');
|
41 |
+
}
|
42 |
+
?>
|
43 |
+
|
44 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
45 |
+
|
46 |
+
|
47 |
+
<?php if($_imgUrl): ?>
|
48 |
+
<div class="img_category"><?php echo $_imgHtml ?></div>
|
49 |
+
<?php endif; ?>
|
50 |
+
|
51 |
+
<?php if($this->isContentMode()): ?>
|
52 |
+
<div class="block-category-wrapp" style="clear: both; display: block; padding-top: 20px; width: 100%;">
|
53 |
+
<?php echo $this->getCmsBlockHtml() ?>
|
54 |
+
</div>
|
55 |
+
|
56 |
+
<?php elseif($this->isMixedMode()): ?>
|
57 |
+
<?php echo $this->getCmsBlockHtml() ?>
|
58 |
+
<?php echo $this->getProductListHtml() ?>
|
59 |
+
|
60 |
+
<?php else: ?>
|
61 |
+
<?php echo $this->getProductListHtml() ?>
|
62 |
+
<?php endif; ?>
|
63 |
+
|
64 |
+
<br class="clear"/>
|
app/design/frontend/modulesgarden/minimo/template/catalog/category/widget/link/link_block.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<span class="widget widget-category-link"><a <?php echo $this->getLinkAttributes() ?>><span><?php echo $this->escapeHtml($this->getAnchorText()) ?></span></a></span>
|
app/design/frontend/modulesgarden/minimo/template/catalog/category/widget/link/link_inline.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<span class="widget widget-category-link-inline"><a <?php echo $this->getLinkAttributes() ?>><span><?php echo $this->escapeHtml($this->getAnchorText()) ?></span></a></span>
|
app/design/frontend/modulesgarden/minimo/template/catalog/layer/filter.phtml
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Template for filter items block
|
30 |
+
*
|
31 |
+
* @see Mage_Catalog_Block_Layer_Filter
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
|
35 |
+
<ol>
|
36 |
+
<?php foreach ($this->getItems() as $_item): ?>
|
37 |
+
<li>
|
38 |
+
<?php if ($_item->getCount() > 0): ?>
|
39 |
+
<a href="<?php echo $this->urlEscape($_item->getUrl()) ?>"><?php echo $_item->getLabel() ?>
|
40 |
+
<?php else: echo $_item->getLabel() ?>
|
41 |
+
<?php endif; ?>
|
42 |
+
<?php if ($this->shouldDisplayProductCount()): ?>
|
43 |
+
(<?php echo $_item->getCount() ?>)
|
44 |
+
</a>
|
45 |
+
<?php endif; ?>
|
46 |
+
</li>
|
47 |
+
<?php endforeach ?>
|
48 |
+
</ol>
|
app/design/frontend/modulesgarden/minimo/template/catalog/layer/state.phtml
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Category layered navigation state
|
30 |
+
*
|
31 |
+
* @see Mage_Catalog_Block_Layer_State
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php $_filters = $this->getActiveFilters() ?>
|
35 |
+
<?php if(!empty($_filters)): ?>
|
36 |
+
<div class="currently">
|
37 |
+
<p class="block-subtitle"><?php echo $this->__('Currently Shopping by:') ?></p>
|
38 |
+
<ol>
|
39 |
+
<?php foreach ($_filters as $_filter): ?>
|
40 |
+
<li>
|
41 |
+
<span class="label"><?php echo $this->__($_filter->getName()) ?>:</span> <span class="value"><?php echo $this->stripTags($_filter->getLabel()) ?></span>
|
42 |
+
<?php
|
43 |
+
$clearLinkUrl = $_filter->getClearLinkUrl();
|
44 |
+
if ($clearLinkUrl):
|
45 |
+
?>
|
46 |
+
<a class="btn-previous" href="<?php echo $_filter->getRemoveUrl() ?>" title="<?php echo $this->__('Previous') ?>"><?php echo $this->__('Previous') ?></a>
|
47 |
+
<a class="btn-remove" title="<?php echo $this->escapeHtml($_filter->getFilter()->getClearLinkText()) ?>" href="<?php echo $clearLinkUrl ?>"><?php echo $this->escapeHtml($_filter->getFilter()->getClearLinkText()) ?></a>
|
48 |
+
<?php else: ?>
|
49 |
+
<a class="btn-remove" href="<?php echo $_filter->getRemoveUrl() ?>" title="<?php echo $this->__('Remove This Item') ?>"><?php echo $this->__('Remove This Item') ?></a>
|
50 |
+
<?php endif; ?>
|
51 |
+
</li>
|
52 |
+
<?php endforeach; ?>
|
53 |
+
</ol>
|
54 |
+
</div>
|
55 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/layer/view.phtml
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Category layered navigation
|
30 |
+
*
|
31 |
+
* @see Mage_Catalog_Block_Layer_View
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php if($this->canShowBlock()): ?>
|
35 |
+
<div class="block block-layered-nav">
|
36 |
+
<div class="block-content">
|
37 |
+
<?php echo $this->getStateHtml() ?>
|
38 |
+
<?php if ($this->getLayer()->getState()->getFilters()): ?>
|
39 |
+
<div class="actions"><a class="button_green" href="<?php echo $this->getClearUrl() ?>"><?php echo $this->__('Clear All') ?></a></div>
|
40 |
+
<?php endif; ?>
|
41 |
+
<?php if($this->canShowOptions()): ?>
|
42 |
+
<p class="block-subtitle"><?php echo $this->__('Shop by') ?></p>
|
43 |
+
<dl id="narrow-by-list">
|
44 |
+
<?php $_filters = $this->getFilters() ?>
|
45 |
+
<?php foreach ($_filters as $_filter): ?>
|
46 |
+
<?php if($_filter->getItemsCount()): ?>
|
47 |
+
<dt><?php echo $this->__($_filter->getName()) ?></dt>
|
48 |
+
<dd><?php echo $_filter->getHtml() ?></dd>
|
49 |
+
<?php endif; ?>
|
50 |
+
<?php endforeach; ?>
|
51 |
+
</dl>
|
52 |
+
<script type="text/javascript">decorateDataList('narrow-by-list')</script>
|
53 |
+
<?php endif; ?>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/navigation/left.phtml
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Category left navigation
|
29 |
+
*
|
30 |
+
* @see Mage_Catalog_Block_Navigation
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<?php if (!Mage::registry('current_category')) return ?>
|
34 |
+
<?php $_categories = $this->getCurrentChildCategories() ?>
|
35 |
+
<?php $_count = is_array($_categories)?count($_categories):$_categories->count(); ?>
|
36 |
+
<?php if($_count): ?>
|
37 |
+
<div class="block block-layered-nav">
|
38 |
+
<div class="block-title">
|
39 |
+
<strong><span><?php echo $this->__('Browse By') ?></span></strong>
|
40 |
+
</div>
|
41 |
+
<div class="block-content">
|
42 |
+
<dl id="narrow-by-list2">
|
43 |
+
<dt><?php echo $this->__('Category') ?></dt>
|
44 |
+
<dd>
|
45 |
+
<ol>
|
46 |
+
<?php foreach ($_categories as $_category): ?>
|
47 |
+
<?php if($_category->getIsActive()): ?>
|
48 |
+
<li>
|
49 |
+
<a href="<?php echo $this->getCategoryUrl($_category) ?>"<?php if ($this->isCategoryActive($_category)): ?> class="current"<?php endif; ?>><?php echo $this->escapeHtml($_category->getName()) ?></a> (<?php echo $_category->getProductCount() ?>)
|
50 |
+
</li>
|
51 |
+
<?php endif; ?>
|
52 |
+
<?php endforeach ?>
|
53 |
+
</ol>
|
54 |
+
</dd>
|
55 |
+
</dl>
|
56 |
+
<script type="text/javascript">decorateDataList('narrow-by-list2')</script>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/navigation/top.phtml
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Top menu for store
|
30 |
+
*
|
31 |
+
* @see Mage_Catalog_Block_Navigation
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php
|
35 |
+
/**
|
36 |
+
* $this->renderCategoriesMenuHtml() supports optional arguments:
|
37 |
+
* int Level number for list item class to start from
|
38 |
+
* string Extra class of outermost list items
|
39 |
+
* string If specified wraps children list in div with this class
|
40 |
+
*/
|
41 |
+
?>
|
42 |
+
<?php $_menu = $this->renderCategoriesMenuHtml(0,'level-top') ?>
|
43 |
+
<?php if($_menu): ?>
|
44 |
+
<div class="nav-container">
|
45 |
+
<ul id="nav">
|
46 |
+
<?php echo $_menu ?>
|
47 |
+
</ul>
|
48 |
+
</div>
|
49 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/bestseller.phtml
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="bestseller-container">
|
2 |
+
<?php $_helper = $this->helper('catalog/output'); ?>
|
3 |
+
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
|
4 |
+
<div class="home-page-cntr">
|
5 |
+
<div class="page-title catalog_title"><h2><?php echo $this->__('Bestsellers') ?></h2></div>
|
6 |
+
<div class="customNavigation">
|
7 |
+
<a class="btn prev2"></a>
|
8 |
+
<a class="btn next2"></a>
|
9 |
+
</div>
|
10 |
+
<div id="owl-bestseller" class="owl-carousel-bestsellers owl-carousel products-grid">
|
11 |
+
<?php $i=0; foreach ($_products->getItems() as $_product): ?>
|
12 |
+
<?php if ($i>5): continue; endif; ?>
|
13 |
+
<div class="home-page-item item first">
|
14 |
+
<div class="home-page-img">
|
15 |
+
<div class="product_img_container">
|
16 |
+
<a class="product-image" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>">
|
17 |
+
<?php if($_product->getMgIsNew()) { ?>
|
18 |
+
<div class="new-product"><?php echo $this->__('NEW') ?></div>
|
19 |
+
<?php } ?>
|
20 |
+
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(277,277); ?>" alt="<?php echo $this->htmlEscape($_product->getName()) ?>"/>
|
21 |
+
</a>
|
22 |
+
<a href="<?php echo $_product->getProductUrl() ?>" class="hover view_more"><?php echo $this->__('View product') ?></a>
|
23 |
+
</div>
|
24 |
+
<?php //echo $_product->getShortDescription(); //also getShortDescription ?>
|
25 |
+
</div>
|
26 |
+
<div class="gird_prod_desc">
|
27 |
+
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>)"><?php echo $_product->getName() ?></a></h2>
|
28 |
+
<?php //echo $this->helper('review/product')->getSummaryHtml($_product, 'short') //product review link ?>
|
29 |
+
<?php //echo $this->getReviewsSummaryHtml($_product, false, true)?>
|
30 |
+
<?php //echo $this->helper('catalog/product')->getPriceHtml($_product) ?>
|
31 |
+
<?php echo $this->getPriceHtml($_product) ?>
|
32 |
+
<?php echo $_product->getProductId(); ?>
|
33 |
+
<?php if($_product->isSaleable()): ?>
|
34 |
+
<p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart hover" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"></button></p>
|
35 |
+
<?php else: ?>
|
36 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
37 |
+
<?php endif; ?>
|
38 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
39 |
+
<a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="wishlist_icon hover"></a>
|
40 |
+
<?php endif; ?>
|
41 |
+
<ul class="add-to-links">
|
42 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
43 |
+
<li><a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
44 |
+
<?php endif; ?>
|
45 |
+
</ul>
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
<?php $i++; endforeach; ?>
|
49 |
+
<?php for($i;$i%5!=0;$i++): ?>
|
50 |
+
<?php endfor ?>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
<?php endif; ?>
|
54 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/compare/list.phtml
ADDED
@@ -0,0 +1,181 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
/* @var $this Mage_Catalog_Block_Product_Compare_List */
|
27 |
+
?>
|
28 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
29 |
+
if ( $imgStyle == 'green'){
|
30 |
+
$img = '-green';
|
31 |
+
}else {
|
32 |
+
$img = '-blue';
|
33 |
+
}
|
34 |
+
?>
|
35 |
+
<?php
|
36 |
+
$style = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
37 |
+
if ( $style == 'green'){
|
38 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles-inversion.css').'" media="all" />';
|
39 |
+
}else {
|
40 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles.css').'" media="all" />';
|
41 |
+
}
|
42 |
+
?>
|
43 |
+
<div class="compare-wrapper">
|
44 |
+
<div class="page-title title-buttons">
|
45 |
+
<h1><?php echo $this->__('Compare Products') ?></h1>
|
46 |
+
<a href="#" onclick="window.print(); return false;" class="link-print"><?php echo $this->__('Print This Page') ?></a>
|
47 |
+
</div>
|
48 |
+
<?php $_total=$this->getItems()->getSize() ?>
|
49 |
+
<?php if($_total): ?>
|
50 |
+
<table class="compare-table" id="product_comparison">
|
51 |
+
<?php $_i=0 ?>
|
52 |
+
<?php foreach($this->getItems() as $_item): ?>
|
53 |
+
<?php if($_i++%10==0): ?>
|
54 |
+
<col width="1" />
|
55 |
+
<?php endif; ?>
|
56 |
+
<col width="<?php echo floor(100/$_total); ?>%" />
|
57 |
+
<?php endforeach; ?>
|
58 |
+
<?php if ($_total>2): ?>
|
59 |
+
<thead>
|
60 |
+
<tr>
|
61 |
+
<?php $_i=0 ?>
|
62 |
+
<?php foreach($this->getItems() as $_item): ?>
|
63 |
+
<?php if($_i++%10==0): ?>
|
64 |
+
<th> </th>
|
65 |
+
<?php endif; ?>
|
66 |
+
<td class="a-right"><a href="#" class="btn-remove" onclick="removeItem('<?php echo $this->helper('catalog/product_compare')->getRemoveUrl($_item) ?>');" title="<?php echo $this->__('Remove This Item') ?>"><?php echo $this->__('Remove This Item') ?></a></td>
|
67 |
+
<?php endforeach; ?>
|
68 |
+
</tr>
|
69 |
+
</thead>
|
70 |
+
<?php endif ?>
|
71 |
+
<tbody>
|
72 |
+
<tr class="product-shop-row">
|
73 |
+
<?php $_i=0 ?>
|
74 |
+
<?php foreach($this->getItems() as $_item): ?>
|
75 |
+
<?php if($_i++%10==0): ?>
|
76 |
+
<th> </th>
|
77 |
+
<?php endif; ?>
|
78 |
+
<td>
|
79 |
+
<a class="product-image" href="#" onclick="setPLocation('<?php echo $this->getProductUrl($_item) ?>', true)" title="<?php echo $this->stripTags($_item->getName(), null, true) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'small_image')->resize(125, 125); ?>" width="125" height="125" alt="<?php echo $this->stripTags($_item->getName(), null, true) ?>" /></a>
|
80 |
+
<h2 class="product-name"><a href="#" onclick="setPLocation('<?php echo $this->getProductUrl($_item) ?>', true)" title="<?php echo $this->stripTags($_item->getName(), null, true) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></h2>
|
81 |
+
<?php echo $this->getReviewsSummaryHtml($_item, 'short') ?>
|
82 |
+
<?php echo $this->getPriceHtml($_item, true, '-compare-list-top') ?>
|
83 |
+
<div class="compare-buttons">
|
84 |
+
<?php if($_item->isSaleable()): ?>
|
85 |
+
<p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
|
86 |
+
<?php else: ?>
|
87 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
88 |
+
<?php endif; ?>
|
89 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
90 |
+
<ul class="add-to-links">
|
91 |
+
<li><a href="#" class="link-wishlist" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToWishlistUrl($_item) ?>', true)"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
92 |
+
</ul>
|
93 |
+
<?php endif; ?>
|
94 |
+
</div>
|
95 |
+
</td>
|
96 |
+
<?php endforeach; ?>
|
97 |
+
</tr>
|
98 |
+
</tbody>
|
99 |
+
<tbody>
|
100 |
+
<?php foreach ($this->getAttributes() as $_attribute): ?>
|
101 |
+
<tr>
|
102 |
+
<?php $_i=0 ?>
|
103 |
+
<?php foreach($this->getItems() as $_item): ?>
|
104 |
+
<?php if($_i++%10==0): ?>
|
105 |
+
<th><span class="nobr"><?php echo $_attribute->getStoreLabel() ?></span></th>
|
106 |
+
<?php endif; ?>
|
107 |
+
<td>
|
108 |
+
<?php switch ($_attribute->getAttributeCode()) {
|
109 |
+
case "price": ?>
|
110 |
+
<?php echo $this->getPriceHtml($_item, true, '-compare-list-' . $_attribute->getCode()) ?>
|
111 |
+
<?php break;
|
112 |
+
case "small_image": ?>
|
113 |
+
<img src="<?php echo $this->helper('catalog/image')->init($_item, 'small_image')->resize(125, 125); ?>" width="125" height="125" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" title="<?php echo $this->escapeHtml($_item->getName()) ?>" />
|
114 |
+
<?php break;
|
115 |
+
case "date":
|
116 |
+
echo substr($this->getProductAttributeValue($_item, $_attribute),0,10);
|
117 |
+
break;
|
118 |
+
default: ?>
|
119 |
+
<div class="std">
|
120 |
+
<?php echo $this->helper('catalog/output')->productAttribute($_item, $this->getProductAttributeValue($_item, $_attribute), $_attribute->getAttributeCode()) ?>
|
121 |
+
</div>
|
122 |
+
<?php break;
|
123 |
+
} ?>
|
124 |
+
</td>
|
125 |
+
<?php endforeach; ?>
|
126 |
+
</tr>
|
127 |
+
<?php endforeach; ?>
|
128 |
+
</tbody>
|
129 |
+
<tbody>
|
130 |
+
<tr class="add-to-row">
|
131 |
+
<?php $_i=0 ?>
|
132 |
+
<?php foreach($this->getItems() as $_item): ?>
|
133 |
+
<?php if($_i++%10==0): ?>
|
134 |
+
<th> </th>
|
135 |
+
<?php endif; ?>
|
136 |
+
<td>
|
137 |
+
<?php echo $this->getPriceHtml($_item, true, '-compare-list-bottom') ?>
|
138 |
+
<?php if($_item->isSaleable()): ?>
|
139 |
+
<p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
|
140 |
+
<?php else: ?>
|
141 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
142 |
+
<?php endif; ?>
|
143 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
144 |
+
<ul class="add-to-links">
|
145 |
+
<li><a href="#" class="link-wishlist" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToWishlistUrl($_item) ?>', true)"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
146 |
+
</ul>
|
147 |
+
<?php endif; ?>
|
148 |
+
</td>
|
149 |
+
<?php endforeach; ?>
|
150 |
+
</tr>
|
151 |
+
</tbody>
|
152 |
+
</table>
|
153 |
+
<div class="buttons-set">
|
154 |
+
<button type="button" title="<?php echo $this->__('Close Window') ?>" class="button" onclick="window.close();"><span><span><?php echo $this->__('Close Window') ?></span></span></button>
|
155 |
+
<span class="please-wait" id="compare-list-please-wait" style="display:none;">
|
156 |
+
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader'.$img.'.gif') ?>" alt="<?php echo $this->__('Please wait...') ?>" title="<?php echo $this->__('Please wait...') ?>" class="v-middle" /> <?php echo $this->__('Please wait...') ?>
|
157 |
+
</span>
|
158 |
+
</div>
|
159 |
+
<script type="text/javascript">
|
160 |
+
decorateTable('product_comparison');
|
161 |
+
|
162 |
+
/**
|
163 |
+
* Send remove item request, after that reload windows
|
164 |
+
*/
|
165 |
+
function removeItem(url)
|
166 |
+
{
|
167 |
+
new Ajax.Request(url, {
|
168 |
+
parameters: {isAjax: 1, method: 'POST'},
|
169 |
+
onLoading: function(){$('compare-list-please-wait').show();},
|
170 |
+
onSuccess: function(transport) {
|
171 |
+
$('compare-list-please-wait').hide();
|
172 |
+
window.location.reload();
|
173 |
+
window.opener.location.reload();
|
174 |
+
}
|
175 |
+
});
|
176 |
+
}
|
177 |
+
</script>
|
178 |
+
<?php else: ?>
|
179 |
+
<script type="text/javascript">window.close();</script>
|
180 |
+
<?php endif; ?>
|
181 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/compare/sidebar.phtml
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
/* @var $this Mage_Catalog_Block_Product_Compare_Sidebar */
|
27 |
+
?>
|
28 |
+
<?php
|
29 |
+
$_helper = $this->helper('catalog/product_compare');
|
30 |
+
$_items = $_helper->getItemCount() > 0 ? $_helper->getItemCollection() : null;
|
31 |
+
?>
|
32 |
+
<div class="block block-list block-compare">
|
33 |
+
<div class="block-title">
|
34 |
+
<strong><span><?php echo $this->__('Compare Products') ?>
|
35 |
+
<?php if($_helper->getItemCount() > 0): ?>
|
36 |
+
<small><?php echo $this->__('(%d)', $_helper->getItemCount()) ?></small>
|
37 |
+
<?php endif; ?>
|
38 |
+
</span></strong>
|
39 |
+
</div>
|
40 |
+
<div class="block-content">
|
41 |
+
<?php if($_helper->getItemCount() > 0): ?>
|
42 |
+
<ol id="compare-items">
|
43 |
+
<?php foreach($_items as $_index => $_item): ?>
|
44 |
+
<li class="item">
|
45 |
+
<input type="hidden" class="compare-item-id" value="<?php echo $_item->getId() ?>" />
|
46 |
+
<a href="<?php echo $_helper->getRemoveUrl($_item) ?>" title="<?php echo $this->__('Remove This Item') ?>" class="btn-remove" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the compare products?') ?>');"><?php echo $this->__('Remove This Item') ?></a>
|
47 |
+
<p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></p>
|
48 |
+
</li>
|
49 |
+
<?php endforeach; ?>
|
50 |
+
</ol>
|
51 |
+
<script type="text/javascript">decorateList('compare-items')</script>
|
52 |
+
<div class="actions">
|
53 |
+
<a class="clear-all" href="<?php echo $_helper->getClearListUrl() ?>" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove all products from your comparison?') ?>');"><?php echo $this->__('Clear All') ?></a>
|
54 |
+
<button type="button" title="<?php echo $this->__('Compare') ?>" class="button_green" onclick="popWin('<?php echo $_helper->getListUrl() ?>','compare','top:0,left:0,width=820,height=600,resizable=yes,scrollbars=yes')"><span><span><?php echo $this->__('Compare') ?></span></span></button>
|
55 |
+
</div>
|
56 |
+
<?php else: ?>
|
57 |
+
<p class="empty"><?php echo $this->__('You have no items to compare.') ?></p>
|
58 |
+
<?php endif; ?>
|
59 |
+
</div>
|
60 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/featured.phtml
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="features-container">
|
2 |
+
<?php $featured_products = $this->getProducts(); ?>
|
3 |
+
<?php $_helper = $this->helper('catalog/output'); ?>
|
4 |
+
<?php if (($featured_products = $this->getProducts()) && $featured_products->getSize()): ?>
|
5 |
+
<?php $featured_products = $featured_products->getItems() ?>
|
6 |
+
<?php shuffle($featured_products); ?>
|
7 |
+
<div class="box recently">
|
8 |
+
<div class="page-title catalog_title"><h2><?php echo $this->__('Featured Products') ?></h2></div>
|
9 |
+
<div class="customNavigation">
|
10 |
+
<a class="btn prev1"></a>
|
11 |
+
<a class="btn next1"></a>
|
12 |
+
</div>
|
13 |
+
<br class="clear"/>
|
14 |
+
<div class="listing-type-grid catalog-listing">
|
15 |
+
<?php $_collectionSize = count($featured_products) ?>
|
16 |
+
<div id="owl-featured" class="owl-carousel-features owl-carousel products-grid">
|
17 |
+
<?php
|
18 |
+
$i=0;
|
19 |
+
foreach ($featured_products as $_product): ?>
|
20 |
+
<?php $_columnCount = 20; ?>
|
21 |
+
|
22 |
+
<?php if ($i++%3==0): ?><?php endif ?>
|
23 |
+
<div class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
|
24 |
+
<div>
|
25 |
+
<div class="product_img_container">
|
26 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
|
27 |
+
<?php if($_product->getMgIsNew()) { ?>
|
28 |
+
<div class="new-product"><?php echo $this->__('NEW') ?></div>
|
29 |
+
<?php } ?>
|
30 |
+
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(277); ?>" width="277" height="277" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
|
31 |
+
</a>
|
32 |
+
|
33 |
+
<?php if($_product->isSaleable()): ?>
|
34 |
+
<a class="btn-cart hover" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span class="cart-span"><?php echo $this->__('Add to Cart') ?></span><i class="fa fa-shopping-cart"></i></a>
|
35 |
+
<?php else : ?>
|
36 |
+
<p class="out-of-stock hover"><i class="fa fa-times"></i></p>
|
37 |
+
<?php endif; ?>
|
38 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
39 |
+
<a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="wishlist-icon hover"><i class="fa fa-heart"></i></a>
|
40 |
+
<?php endif; ?>
|
41 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
42 |
+
<a href="<?php echo $_compareUrl ?>" class="compare-icon hover"><i class="fa fa-plus"></i></a>
|
43 |
+
<?php endif; ?>
|
44 |
+
</div>
|
45 |
+
</div>
|
46 |
+
<div class="gird_prod_desc">
|
47 |
+
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
|
48 |
+
|
49 |
+
<?php echo $this->getPriceHtml($_product, true) ?>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
<?php if ($i%3==0 && $i!=$_collectionSize): ?><?php endif ?>
|
53 |
+
<?php endforeach ?>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
</div>
|
57 |
+
<?php endif; ?>
|
58 |
+
</div>
|
59 |
+
<br class="clear"/>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/gallery.phtml
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_width=$this->getImageWidth() ?>
|
28 |
+
<div class="product-image-popup" style="width:<?php echo $_width; ?>px;">
|
29 |
+
<div class="buttons-set"><a href="#" onclick="window.close(); return false;" class="button"><span><?php echo $this->__('Close Window') ?></span></a></div>
|
30 |
+
<?php if($this->getPreviusImageUrl() || $this->getNextImageUrl()): ?>
|
31 |
+
<div class="nav">
|
32 |
+
<?php if($_prevUrl = $this->getPreviusImageUrl()): ?>
|
33 |
+
<a href="<?php echo $_prevUrl ?>" class="prev">« <?php echo $this->__('Prev') ?></a>
|
34 |
+
<?php endif; ?>
|
35 |
+
<?php if($_nextUrl = $this->getNextImageUrl()): ?>
|
36 |
+
<a href="<?php echo $_nextUrl ?>" class="next"><?php echo $this->__('Next') ?> »</a>
|
37 |
+
<?php endif; ?>
|
38 |
+
</div>
|
39 |
+
<?php endif; ?>
|
40 |
+
<?php if($_imageTitle = $this->escapeHtml($this->getCurrentImage()->getLabel())): ?>
|
41 |
+
<h1 class="image-label"><?php echo $_imageTitle ?></h1>
|
42 |
+
<?php endif; ?>
|
43 |
+
<img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'image', $this->getImageFile()); ?>"<?php if($_width): ?> width="<?php echo $_width ?>"<?php endif; ?> alt="<?php echo $this->escapeHtml($this->getCurrentImage()->getLabel()) ?>" title="<?php echo $this->escapeHtml($this->getCurrentImage()->getLabel()) ?>" id="product-gallery-image" class="image" />
|
44 |
+
<div class="buttons-set"><a href="#" onclick="window.close(); return false;" class="button"><span><?php echo $this->__('Close Window') ?></span></a></div>
|
45 |
+
<?php if($this->getPreviusImageUrl() || $this->getNextImageUrl()): ?>
|
46 |
+
<div class="nav">
|
47 |
+
<?php if($_prevUrl = $this->getPreviusImageUrl()): ?>
|
48 |
+
<a href="<?php echo $_prevUrl ?>" class="prev">« <?php echo $this->__('Prev') ?></a>
|
49 |
+
<?php endif; ?>
|
50 |
+
<?php if($_nextUrl = $this->getNextImageUrl()): ?>
|
51 |
+
<a href="<?php echo $_nextUrl ?>" class="next"><?php echo $this->__('Next') ?> »</a>
|
52 |
+
<?php endif; ?>
|
53 |
+
</div>
|
54 |
+
<?php endif; ?>
|
55 |
+
</div>
|
56 |
+
<script type="text/javascript">
|
57 |
+
//<![CDATA[
|
58 |
+
Event.observe(window, 'load', function(){
|
59 |
+
var demensions = $('product-gallery-image').getDimensions();
|
60 |
+
if (demensions.width < 300) {
|
61 |
+
demensions.width = 300
|
62 |
+
}
|
63 |
+
window.resizeTo(demensions.width+90, demensions.height+210);
|
64 |
+
});
|
65 |
+
//]]>
|
66 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/list.phtml
ADDED
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Product list template
|
30 |
+
*
|
31 |
+
* @see Mage_Catalog_Block_Product_List
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php
|
35 |
+
$_productCollection=$this->getLoadedProductCollection();
|
36 |
+
$_helper = $this->helper('catalog/output');
|
37 |
+
?>
|
38 |
+
<?php if(!$_productCollection->count()): ?>
|
39 |
+
<div class="clear"></div>
|
40 |
+
<p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
|
41 |
+
<?php else: ?>
|
42 |
+
<div class="category-products">
|
43 |
+
<div class="clear"></div>
|
44 |
+
<?php // List mode ?>
|
45 |
+
<?php if($this->getMode()!='grid'): ?>
|
46 |
+
<?php $_iterator = 0; ?>
|
47 |
+
<ol class="products-list" id="products-list">
|
48 |
+
<?php foreach ($_productCollection as $_product): ?>
|
49 |
+
<li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
|
50 |
+
<?php // Product Image ?>
|
51 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
|
52 |
+
<?php if($_product->getMgIsNew()) { ?>
|
53 |
+
<div class="new-product"><?php echo $this->__('NEW') ?></div>
|
54 |
+
<?php } ?>
|
55 |
+
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(277); ?>" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
|
56 |
+
<?php // Product description ?>
|
57 |
+
<div class="product-shop">
|
58 |
+
<div class="f-fix">
|
59 |
+
<?php $_productNameStripped = $this->stripTags($_product->getName(), null, true); ?>
|
60 |
+
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a></h2>
|
61 |
+
<?php echo $this->getPriceHtml($_product, true) ?>
|
62 |
+
<?php if($_product->isSaleable()): ?>
|
63 |
+
<p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><?php echo $this->__('Add to Cart') ?></span></button></p>
|
64 |
+
<?php else: ?>
|
65 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
66 |
+
<?php endif; ?>
|
67 |
+
<div class="desc std">
|
68 |
+
<?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
|
69 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a>
|
70 |
+
</div>
|
71 |
+
<ul class="add-to-links">
|
72 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
73 |
+
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
74 |
+
<?php endif; ?>
|
75 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
76 |
+
<li class="compare-li"><a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
77 |
+
<?php endif; ?>
|
78 |
+
</ul>
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
</li>
|
82 |
+
<?php endforeach; ?>
|
83 |
+
</ol>
|
84 |
+
<script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
|
85 |
+
|
86 |
+
<?php else: ?>
|
87 |
+
|
88 |
+
<?php // Grid Mode ?>
|
89 |
+
|
90 |
+
<?php $_collectionSize = $_productCollection->count() ?>
|
91 |
+
|
92 |
+
<?php
|
93 |
+
/* Get the layout's page template */
|
94 |
+
$pageLayoutRootTemplate = $this->getLayout()->getBlock('root')->getTemplate();
|
95 |
+
|
96 |
+
/* Set the column count based on the layout template used */
|
97 |
+
switch ($pageLayoutRootTemplate) {
|
98 |
+
case 'page/1column.phtml':
|
99 |
+
$_columnCount = 4;
|
100 |
+
break;
|
101 |
+
|
102 |
+
case 'page/2columns-left.phtml':
|
103 |
+
$_columnCount = 3;
|
104 |
+
break;
|
105 |
+
|
106 |
+
case 'page/2columns-right.phtml':
|
107 |
+
$_columnCount = 3;
|
108 |
+
break;
|
109 |
+
|
110 |
+
case 'page/3columns.phtml':
|
111 |
+
$_columnCount = 2;
|
112 |
+
break;
|
113 |
+
|
114 |
+
default:
|
115 |
+
$_columnCount = 3;
|
116 |
+
break;
|
117 |
+
}
|
118 |
+
?>
|
119 |
+
|
120 |
+
<?php $i=0; foreach ($_productCollection as $_product): ?>
|
121 |
+
<?php if ($i++%$_columnCount==0): ?>
|
122 |
+
<ul class="products-grid">
|
123 |
+
<?php endif ?>
|
124 |
+
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
|
125 |
+
<div class="product_img_container">
|
126 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
|
127 |
+
<?php if($_product->getMgIsNew()) { ?>
|
128 |
+
<div class="new-product"><?php echo $this->__('NEW') ?></div>
|
129 |
+
<?php } ?>
|
130 |
+
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(277); ?>" width="277" height="277" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
|
131 |
+
</a>
|
132 |
+
|
133 |
+
<?php if($_product->isSaleable()): ?>
|
134 |
+
<a class="btn-cart hover" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span class="cart-span"><?php echo $this->__('Add to Cart') ?></span><i class="fa fa-shopping-cart"></i></a>
|
135 |
+
<?php else : ?>
|
136 |
+
<p class="out-of-stock hover"><i class="fa fa-times"></i></p>
|
137 |
+
<?php endif; ?>
|
138 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
139 |
+
<a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="wishlist-icon hover"><i class="fa fa-heart"></i></a>
|
140 |
+
<?php endif; ?>
|
141 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
142 |
+
<a href="<?php echo $_compareUrl ?>" class="compare-icon hover"><i class="fa fa-plus"></i></a>
|
143 |
+
<?php endif; ?>
|
144 |
+
</div>
|
145 |
+
<div class="gird_prod_desc">
|
146 |
+
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
|
147 |
+
|
148 |
+
<?php echo $this->getPriceHtml($_product, true) ?>
|
149 |
+
</div>
|
150 |
+
</li>
|
151 |
+
<?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
|
152 |
+
</ul>
|
153 |
+
<?php endif ?>
|
154 |
+
<?php endforeach ?>
|
155 |
+
<script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
|
156 |
+
<?php endif; ?>
|
157 |
+
|
158 |
+
<div class="toolbar-bottom">
|
159 |
+
<?php echo $this->getToolbarBlock()->setHidePager(false)->toHtml();?>
|
160 |
+
</div>
|
161 |
+
</div>
|
162 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/list/related.phtml
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if($this->getItems()->getSize()): ?>
|
28 |
+
<div class="block block-related">
|
29 |
+
<div class="block-title">
|
30 |
+
<strong><span><?php echo $this->__('Related Products') ?></span></strong>
|
31 |
+
</div>
|
32 |
+
<div class="block-content">
|
33 |
+
<p class="block-subtitle"><?php echo $this->__('Check items to add to the cart or') ?> <a href="#" onclick="selectAllRelated(this); return false;"><?php echo $this->__('select all') ?></a></p>
|
34 |
+
<ol class="mini-products-list" id="block-related">
|
35 |
+
<?php foreach($this->getItems() as $_item): ?>
|
36 |
+
<li class="item">
|
37 |
+
<?php if(!$_item->isComposite() && $_item->isSaleable()): ?>
|
38 |
+
<?php if (!$_item->getRequiredOptions()): ?>
|
39 |
+
<input type="checkbox" class="checkbox related-checkbox" id="related-checkbox<?php echo $_item->getId() ?>" name="related_products[]" value="<?php echo $_item->getId() ?>" />
|
40 |
+
<?php endif; ?>
|
41 |
+
<?php endif; ?>
|
42 |
+
<div class="product">
|
43 |
+
<a href="<?php echo $_item->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_item->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(50) ?>" width="50" height="50" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" /></a>
|
44 |
+
<div class="product-details">
|
45 |
+
<p class="product-name"><a href="<?php echo $_item->getProductUrl() ?>"><?php echo $this->escapeHtml($_item->getName()) ?></a></p>
|
46 |
+
<?php echo $this->getPriceHtml($_item, true, '-related') ?>
|
47 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
48 |
+
<a href="<?php echo $this->getAddToWishlistUrl($_item) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a>
|
49 |
+
<?php endif; ?>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
</li>
|
53 |
+
<?php endforeach ?>
|
54 |
+
</ol>
|
55 |
+
<script type="text/javascript">decorateList('block-related', 'none-recursive')</script>
|
56 |
+
</div>
|
57 |
+
<script type="text/javascript">
|
58 |
+
//<![CDATA[
|
59 |
+
$$('.related-checkbox').each(function(elem){
|
60 |
+
Event.observe(elem, 'click', addRelatedToProduct)
|
61 |
+
});
|
62 |
+
|
63 |
+
var relatedProductsCheckFlag = false;
|
64 |
+
function selectAllRelated(txt){
|
65 |
+
if (relatedProductsCheckFlag == false) {
|
66 |
+
$$('.related-checkbox').each(function(elem){
|
67 |
+
elem.checked = true;
|
68 |
+
});
|
69 |
+
relatedProductsCheckFlag = true;
|
70 |
+
txt.innerHTML="<?php echo $this->__('unselect all') ?>";
|
71 |
+
} else {
|
72 |
+
$$('.related-checkbox').each(function(elem){
|
73 |
+
elem.checked = false;
|
74 |
+
});
|
75 |
+
relatedProductsCheckFlag = false;
|
76 |
+
txt.innerHTML="<?php echo $this->__('select all') ?>";
|
77 |
+
}
|
78 |
+
addRelatedToProduct();
|
79 |
+
}
|
80 |
+
|
81 |
+
function addRelatedToProduct(){
|
82 |
+
var checkboxes = $$('.related-checkbox');
|
83 |
+
var values = [];
|
84 |
+
for(var i=0;i<checkboxes.length;i++){
|
85 |
+
if(checkboxes[i].checked) values.push(checkboxes[i].value);
|
86 |
+
}
|
87 |
+
if($('related-products-field')){
|
88 |
+
$('related-products-field').value = values.join(',');
|
89 |
+
}
|
90 |
+
}
|
91 |
+
//]]>
|
92 |
+
</script>
|
93 |
+
</div>
|
94 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/list/toolbar.phtml
ADDED
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Product list toolbar
|
30 |
+
*
|
31 |
+
* @see Mage_Catalog_Block_Product_List_Toolbar
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
35 |
+
if ( $imgStyle == 'green'){
|
36 |
+
$img = '-green';
|
37 |
+
}else {
|
38 |
+
$img = '-blue';
|
39 |
+
}
|
40 |
+
?>
|
41 |
+
|
42 |
+
<?php if($this->getCollection()->getSize()): ?>
|
43 |
+
<div class="toolbar">
|
44 |
+
<div class="pager">
|
45 |
+
<p class="amount">
|
46 |
+
<?php if($this->getLastPageNum()>1): ?>
|
47 |
+
<?php echo $this->__('Items %s to %s of %s total', $this->getFirstNum(), $this->getLastNum(), $this->getTotalNum()) ?>
|
48 |
+
<?php else: ?>
|
49 |
+
<strong><?php echo $this->__('%s Item(s)', $this->getTotalNum()) ?></strong>
|
50 |
+
<?php endif; ?>
|
51 |
+
</p>
|
52 |
+
|
53 |
+
<div class="limiter clearfix">
|
54 |
+
<span class="pull-right"><?php echo $this->__('per page') ?></span>
|
55 |
+
<select onchange="setLocation(this.value)" class="selectric-select">
|
56 |
+
<?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
|
57 |
+
<option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
|
58 |
+
<?php echo $_limit ?>
|
59 |
+
</option>
|
60 |
+
<?php endforeach; ?>
|
61 |
+
</select>
|
62 |
+
<label class="pull-right"><?php echo $this->__('Show') ?></label>
|
63 |
+
</div>
|
64 |
+
|
65 |
+
<?php echo $this->getPagerHtml() ?>
|
66 |
+
|
67 |
+
</div>
|
68 |
+
|
69 |
+
<?php if( $this->isExpanded() ): ?>
|
70 |
+
<div class="sorter clearfix">
|
71 |
+
<?php if( $this->isEnabledViewSwitcher() ): ?>
|
72 |
+
<p class="view-mode">
|
73 |
+
<?php $_modes = $this->getModes(); ?>
|
74 |
+
<?php if($_modes && count($_modes)>1): ?>
|
75 |
+
<?php foreach ($this->getModes() as $_code=>$_label): ?>
|
76 |
+
<?php if($this->isModeActive($_code)){ ?>
|
77 |
+
<?php if($_code == 'grid'){ ?>
|
78 |
+
<a href="<?php echo $this->getModeUrl($_code) ?>" title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>">
|
79 |
+
<img src="<?php echo $this->getSkinUrl('images/grid'.$img.'.png'); ?>"/>
|
80 |
+
</a>
|
81 |
+
<?php }elseif($_code == 'list'){ ?>
|
82 |
+
<a href="<?php echo $this->getModeUrl($_code) ?>" title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>">
|
83 |
+
<img src="<?php echo $this->getSkinUrl('images/list'.$img.'.png'); ?>"/>
|
84 |
+
</a>
|
85 |
+
<?php } ?>
|
86 |
+
<?php }else{ ?>
|
87 |
+
<?php if($_code == 'grid'){ ?>
|
88 |
+
<a href="<?php echo $this->getModeUrl($_code) ?>" title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>">
|
89 |
+
<img src="<?php echo $this->getSkinUrl('images/grid-n.png'); ?>"/>
|
90 |
+
</a>
|
91 |
+
<?php }elseif($_code == 'list'){ ?>
|
92 |
+
<a href="<?php echo $this->getModeUrl($_code) ?>" title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>">
|
93 |
+
<img src="<?php echo $this->getSkinUrl('images/list-n.png'); ?>"/>
|
94 |
+
</a>
|
95 |
+
<?php } ?>
|
96 |
+
<?php } ?>
|
97 |
+
<?php endforeach; ?>
|
98 |
+
<?php endif; ?>
|
99 |
+
</p>
|
100 |
+
<?php endif; ?>
|
101 |
+
|
102 |
+
<div class="sort-by clearfix">
|
103 |
+
<?php if($this->getCurrentDirection() == 'desc'): ?>
|
104 |
+
<a class="pull-right" href="<?php echo $this->getOrderUrl(null, 'asc') ?>" title="<?php echo $this->__('Set Ascending Direction') ?>"><i class="fa fa-fw fa-long-arrow-down toolbar-arrow"></i></a>
|
105 |
+
<?php else: ?>
|
106 |
+
<a class="pull-right" href="<?php echo $this->getOrderUrl(null, 'desc') ?>" title="<?php echo $this->__('Set Descending Direction') ?>"><i class="fa fa-fw fa-long-arrow-up toolbar-arrow"></i></a>
|
107 |
+
<?php endif; ?>
|
108 |
+
<select onchange="setLocation(this.value)" class="selectric-select">
|
109 |
+
<?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
|
110 |
+
<option value="<?php echo $this->getOrderUrl($_key, 'asc') ?>"<?php if($this->isOrderCurrent($_key)): ?> selected="selected"<?php endif; ?>>
|
111 |
+
<?php echo $this->__($_order) ?>
|
112 |
+
</option>
|
113 |
+
<?php endforeach; ?>
|
114 |
+
</select>
|
115 |
+
<label class="pull-right"><?php echo $this->__('Sort By') ?></label>
|
116 |
+
</div>
|
117 |
+
</div>
|
118 |
+
<?php endif; ?>
|
119 |
+
</div>
|
120 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/list/toolbar_only.phtml
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<?php echo $this->getToolbarBlock()->setHidePager(true)->toHtml();?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/list/upsell.phtml
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if(count($this->getItemCollection()->getItems())): ?>
|
28 |
+
<div class="box-collateral box-up-sell">
|
29 |
+
<h2><?php echo $this->__('Similar products') ?></h2>
|
30 |
+
<?php // $this->setColumnCount(5); // uncomment this line if you want to have another number of columns. also can be changed in layout ?>
|
31 |
+
<?php $this->resetItemsIterator() ?>
|
32 |
+
<?php for($_i=0;$_i<$this->getRowCount();$_i++): ?>
|
33 |
+
<ul class="products-grid" id="upsell-product-table">
|
34 |
+
<?php for($_j=0;$_j<$this->getColumnCount();$_j++): ?>
|
35 |
+
<?php if($_link=$this->getIterableItem()): ?>
|
36 |
+
<li class="item<?php if($_j==0): ?> first<?php elseif($_j==3): ?> last<?php endif; ?>">
|
37 |
+
<div class="product_img_container">
|
38 |
+
<a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>" class="product-image">
|
39 |
+
<img src="<?php echo $this->helper('catalog/image')->init($_link, 'small_image')->resize(277) ?>" width="277" height="277" alt="<?php echo $this->escapeHtml($_link->getName()) ?>" />
|
40 |
+
</a>
|
41 |
+
|
42 |
+
<?php if($_link->isSaleable()): ?>
|
43 |
+
<a title="<?php echo $this->__('Add to Cart') ?>" class="btn-cart hover" onclick="setLocation('<?php echo $this->getAddToCartUrl($_link) ?>')"><span><?php echo $this->__('Add to Cart') ?></span><i class="fa fa-shopping-cart"></i></a>
|
44 |
+
<?php else: ?>
|
45 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
46 |
+
<?php endif; ?>
|
47 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
48 |
+
<a href="<?php echo $this->helper('wishlist')->getAddUrl($_link) ?>" class="wishlist-icon hover"><i class="fa fa-heart"></i></a>
|
49 |
+
<?php endif; ?>
|
50 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_link)): ?>
|
51 |
+
<a href="<?php echo $_compareUrl ?>" class="compare-icon hover"><i class="fa fa-plus"></i></a>
|
52 |
+
<?php endif; ?>
|
53 |
+
</div>
|
54 |
+
<div class="gird_prod_desc">
|
55 |
+
<h2 class="product-name"><a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>"><?php echo $this->escapeHtml($_link->getName()) ?></a></h2>
|
56 |
+
<?php echo $this->getPriceHtml($_link, true, '-upsell') ?>
|
57 |
+
</div>
|
58 |
+
|
59 |
+
|
60 |
+
</li>
|
61 |
+
<?php else: ?>
|
62 |
+
<td class="empty"> </td>
|
63 |
+
<?php endif; ?>
|
64 |
+
<?php endfor; ?>
|
65 |
+
</ul>
|
66 |
+
<?php endfor; ?>
|
67 |
+
<script type="text/javascript">decorateTable('upsell-product-table')</script>
|
68 |
+
</div>
|
69 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/new.phtml
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
|
28 |
+
<div id="new-container">
|
29 |
+
<h2 class="subtitle"><?php echo $this->__('New Products') ?></h2>
|
30 |
+
<div class="customNavigation">
|
31 |
+
<a class="btn prev3"></a>
|
32 |
+
<a class="btn next3"></a>
|
33 |
+
</div>
|
34 |
+
<?php $_columnCount = $this->getColumnCount(); ?>
|
35 |
+
<div id="owl-new" class="owl-carousel products-grid">
|
36 |
+
<?php $i=0; foreach ($_products->getItems() as $_product): ?>
|
37 |
+
<?php if ($i++%$_columnCount==0): ?>
|
38 |
+
<?php endif ?>
|
39 |
+
<div class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
|
40 |
+
<div class="product_img_container">
|
41 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="product-image">
|
42 |
+
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(277) ?>" width="277" height="2" alt="<?php echo $this->escapeHtml($_product->getName()) ?>" />
|
43 |
+
</a>
|
44 |
+
<a href="<?php echo $_product->getProductUrl() ?>" class="hover view_more"><?php echo $this->__('View product') ?></a>
|
45 |
+
</div>
|
46 |
+
<h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>"><?php echo $this->escapeHtml($_product->getName()) ?></a></h3>
|
47 |
+
<?php echo $this->getPriceHtml($_product, true, '-new') ?>
|
48 |
+
<div class="actions">
|
49 |
+
<?php if($_product->isSaleable()): ?>
|
50 |
+
<button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="btn-cart hover" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"></button>
|
51 |
+
<?php else: ?>
|
52 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
53 |
+
<?php endif; ?>
|
54 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
55 |
+
<a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="wishlist_icon hover"></a>
|
56 |
+
<?php endif; ?>
|
57 |
+
<ul class="add-to-links">
|
58 |
+
<?php if ($_compareUrl = $this->getAddToCompareUrl($_product)): ?>
|
59 |
+
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
60 |
+
<?php endif; ?>
|
61 |
+
</ul>
|
62 |
+
</div>
|
63 |
+
</div>
|
64 |
+
<?php if ($i%$_columnCount==0 || $i==count($_products)): ?>
|
65 |
+
<?php endif ?>
|
66 |
+
<?php endforeach; ?>
|
67 |
+
</div>
|
68 |
+
<?php endif; ?>
|
69 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/price.phtml
ADDED
@@ -0,0 +1,471 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php
|
29 |
+
/**
|
30 |
+
* Template for displaying product price in different places (products grid, product view page etc)
|
31 |
+
*
|
32 |
+
* @see Mage_Catalog_Block_Product_Abstract
|
33 |
+
*/
|
34 |
+
?>
|
35 |
+
<?php
|
36 |
+
$_coreHelper = $this->helper('core');
|
37 |
+
$_weeeHelper = $this->helper('weee');
|
38 |
+
$_taxHelper = $this->helper('tax');
|
39 |
+
/* @var $_coreHelper Mage_Core_Helper_Data */
|
40 |
+
/* @var $_weeeHelper Mage_Weee_Helper_Data */
|
41 |
+
/* @var $_taxHelper Mage_Tax_Helper_Data */
|
42 |
+
|
43 |
+
$_product = $this->getProduct();
|
44 |
+
$_storeId = $_product->getStoreId();
|
45 |
+
$_store = $_product->getStore();
|
46 |
+
$_id = $_product->getId();
|
47 |
+
$_weeeSeparator = '';
|
48 |
+
$_simplePricesTax = ($_taxHelper->displayPriceIncludingTax() || $_taxHelper->displayBothPrices());
|
49 |
+
$_minimalPriceValue = $_product->getMinimalPrice();
|
50 |
+
$_minimalPriceValue = $_store->roundPrice($_store->convertPrice($_minimalPriceValue));
|
51 |
+
$_minimalPrice = $_taxHelper->getPrice($_product, $_minimalPriceValue, $_simplePricesTax);
|
52 |
+
$_convertedFinalPrice = $_store->roundPrice($_store->convertPrice($_product->getFinalPrice()));
|
53 |
+
$_specialPriceStoreLabel = $this->getProductAttribute('special_price') ? $this->getProductAttribute('special_price')->getStoreLabel() : '';
|
54 |
+
?>
|
55 |
+
|
56 |
+
<?php if (!$_product->isGrouped()): ?>
|
57 |
+
<?php $_weeeTaxAmount = $_weeeHelper->getAmountForDisplay($_product); ?>
|
58 |
+
<?php $_weeeTaxAttributes = $_weeeHelper->getProductWeeeAttributesForRenderer($_product, null, null, null, true); ?>
|
59 |
+
<?php $_weeeTaxAmountInclTaxes = $_weeeTaxAmount; ?>
|
60 |
+
<?php if ($_weeeHelper->isTaxable()): ?>
|
61 |
+
<?php $_weeeTaxAmountInclTaxes = $_weeeHelper->getAmountInclTaxes($_weeeTaxAttributes); ?>
|
62 |
+
<?php endif; ?>
|
63 |
+
<?php $_weeeTaxAmount = $_store->roundPrice($_store->convertPrice($_weeeTaxAmount)); ?>
|
64 |
+
<?php $_weeeTaxAmountInclTaxes = $_store->roundPrice($_store->convertPrice($_weeeTaxAmountInclTaxes)); ?>
|
65 |
+
|
66 |
+
<div class="price-box">
|
67 |
+
<?php $_convertedPrice = $_store->roundPrice($_store->convertPrice($_product->getPrice())); ?>
|
68 |
+
<?php $_price = $_taxHelper->getPrice($_product, $_convertedPrice); ?>
|
69 |
+
<?php $_regularPrice = $_taxHelper->getPrice($_product, $_convertedPrice, $_simplePricesTax); ?>
|
70 |
+
<?php $_finalPrice = $_taxHelper->getPrice($_product, $_convertedFinalPrice) ?>
|
71 |
+
<?php $_finalPriceInclTax = $_taxHelper->getPrice($_product, $_convertedFinalPrice, true) ?>
|
72 |
+
<?php $_weeeDisplayType = $_weeeHelper->getPriceDisplayType(); ?>
|
73 |
+
<?php if ($_finalPrice >= $_price): ?>
|
74 |
+
<?php if ($_taxHelper->displayBothPrices()): ?>
|
75 |
+
<?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
|
76 |
+
<span class="price-excluding-tax">
|
77 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
78 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
79 |
+
<?php echo $_coreHelper->formatPrice($_price + $_weeeTaxAmount, false) ?>
|
80 |
+
</span>
|
81 |
+
</span>
|
82 |
+
<span class="price-including-tax">
|
83 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
84 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
85 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
86 |
+
</span>
|
87 |
+
</span>
|
88 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
|
89 |
+
<span class="price-excluding-tax">
|
90 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
91 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
92 |
+
<?php echo $_coreHelper->formatPrice($_price + $_weeeTaxAmount, false) ?>
|
93 |
+
</span>
|
94 |
+
</span>
|
95 |
+
<span class="weee">(
|
96 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
97 |
+
<?php echo $_weeeSeparator; ?>
|
98 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
|
99 |
+
<?php $_weeeSeparator = ' + '; ?>
|
100 |
+
<?php endforeach; ?>
|
101 |
+
)</span>
|
102 |
+
<span class="price-including-tax">
|
103 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
104 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
105 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
106 |
+
</span>
|
107 |
+
</span>
|
108 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
|
109 |
+
<span class="price-excluding-tax">
|
110 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
111 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
112 |
+
<?php echo $_coreHelper->formatPrice($_price + $_weeeTaxAmount, false) ?>
|
113 |
+
</span>
|
114 |
+
</span>
|
115 |
+
<span class="price-including-tax">
|
116 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
117 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
118 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
119 |
+
</span>
|
120 |
+
<span class="weee">(
|
121 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
122 |
+
<?php echo $_weeeSeparator; ?>
|
123 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>
|
124 |
+
<?php $_weeeSeparator = ' + '; ?>
|
125 |
+
<?php endforeach; ?>
|
126 |
+
)</span>
|
127 |
+
</span>
|
128 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
|
129 |
+
<span class="price-excluding-tax">
|
130 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
131 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
132 |
+
<?php echo $_coreHelper->formatPrice($_price, false) ?>
|
133 |
+
</span>
|
134 |
+
</span>
|
135 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
136 |
+
<span class="weee">
|
137 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>
|
138 |
+
: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>
|
139 |
+
</span>
|
140 |
+
<?php endforeach; ?>
|
141 |
+
<span class="price-including-tax">
|
142 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
143 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
144 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
145 |
+
</span>
|
146 |
+
</span>
|
147 |
+
<?php else: ?>
|
148 |
+
<span class="price-excluding-tax">
|
149 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
150 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
151 |
+
<?php if ($_finalPrice == $_price): ?>
|
152 |
+
<?php echo $_coreHelper->formatPrice($_price, false) ?>
|
153 |
+
<?php else: ?>
|
154 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice, false) ?>
|
155 |
+
<?php endif; ?>
|
156 |
+
</span>
|
157 |
+
</span>
|
158 |
+
<span class="price-including-tax">
|
159 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
160 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
161 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax, false) ?>
|
162 |
+
</span>
|
163 |
+
</span>
|
164 |
+
<?php endif; ?>
|
165 |
+
<?php else: ?>
|
166 |
+
<?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, array(0, 1))): // including ?>
|
167 |
+
<?php $weeeAmountToDisplay = $_taxHelper->displayPriceIncludingTax() ? $_weeeTaxAmountInclTaxes : $_weeeTaxAmount ?>
|
168 |
+
<span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
169 |
+
<?php echo $_coreHelper->currency($_price + $weeeAmountToDisplay, true, true) ?>
|
170 |
+
</span>
|
171 |
+
|
172 |
+
<?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // show description ?>
|
173 |
+
<span class="weee">(
|
174 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
175 |
+
<?php echo $_weeeSeparator; ?>
|
176 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>
|
177 |
+
: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + ($_taxHelper->displayPriceIncludingTax() ? $_weeeTaxAttribute->getTaxAmount() : 0), true, true); ?>
|
178 |
+
<?php $_weeeSeparator = ' + '; ?>
|
179 |
+
<?php endforeach; ?>
|
180 |
+
)</span>
|
181 |
+
<?php endif; ?>
|
182 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
|
183 |
+
<span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
184 |
+
<?php echo $_coreHelper->formatPrice($_price + $_weeeTaxAmount, true) ?>
|
185 |
+
</span>
|
186 |
+
<span class="weee">(
|
187 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
188 |
+
<?php echo $_weeeSeparator; ?>
|
189 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>
|
190 |
+
<?php $_weeeSeparator = ' + '; ?>
|
191 |
+
<?php endforeach; ?>
|
192 |
+
)</span>
|
193 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
|
194 |
+
<span class="regular-price"><?php echo $_coreHelper->formatPrice($_price, true) ?></span><br/>
|
195 |
+
<?php $weeeAmountToDisplay = $_taxHelper->displayPriceIncludingTax() ? $_weeeTaxAmountInclTaxes : $_weeeTaxAmount ?>
|
196 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
197 |
+
<span class="weee">
|
198 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>
|
199 |
+
: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + ($_taxHelper->displayPriceIncludingTax() ? $_weeeTaxAttribute->getTaxAmount() : 0), true, true); ?>
|
200 |
+
</span>
|
201 |
+
<?php endforeach; ?>
|
202 |
+
<span class="regular-price"
|
203 |
+
id="product-price-weee-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
204 |
+
<?php echo $_coreHelper->currency($_price + $weeeAmountToDisplay, true, true) ?>
|
205 |
+
</span>
|
206 |
+
<?php else: ?>
|
207 |
+
<span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
208 |
+
<?php if ($_finalPrice == $_price): ?>
|
209 |
+
<?php echo $_coreHelper->formatPrice($_price, true) ?>
|
210 |
+
<?php else: ?>
|
211 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice, true) ?>
|
212 |
+
<?php endif; ?>
|
213 |
+
</span>
|
214 |
+
<?php endif; ?>
|
215 |
+
<?php endif; ?>
|
216 |
+
<?php else: /* if ($_finalPrice == $_price): */ ?>
|
217 |
+
<?php $_originalWeeeTaxAmount = $_weeeHelper->getOriginalAmount($_product); ?>
|
218 |
+
<?php $_originalWeeeTaxAmount = $_store->roundPrice($_store->convertPrice($_originalWeeeTaxAmount)) ?>
|
219 |
+
|
220 |
+
<?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
|
221 |
+
<p class="old-price">
|
222 |
+
<span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
|
223 |
+
<span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
224 |
+
<?php echo $_coreHelper->formatPrice($_regularPrice + $_originalWeeeTaxAmount, false) ?>
|
225 |
+
</span>
|
226 |
+
</p>
|
227 |
+
|
228 |
+
<?php if ($_taxHelper->displayBothPrices()): ?>
|
229 |
+
<p class="special-price">
|
230 |
+
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
|
231 |
+
<span class="price-excluding-tax">
|
232 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
233 |
+
<span class="price"
|
234 |
+
id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
235 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice + $_weeeTaxAmount, false) ?>
|
236 |
+
</span>
|
237 |
+
</span>
|
238 |
+
<span class="price-including-tax">
|
239 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
240 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
241 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
242 |
+
</span>
|
243 |
+
</span>
|
244 |
+
</p>
|
245 |
+
<?php else: ?>
|
246 |
+
<p class="special-price">
|
247 |
+
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
|
248 |
+
<span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
249 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice + $_weeeTaxAmountInclTaxes, false) ?>
|
250 |
+
</span>
|
251 |
+
</p>
|
252 |
+
<?php endif; ?>
|
253 |
+
|
254 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
|
255 |
+
<p class="old-price">
|
256 |
+
<span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
|
257 |
+
<span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
258 |
+
<?php echo $_coreHelper->formatPrice($_regularPrice + $_originalWeeeTaxAmount, false) ?>
|
259 |
+
</span>
|
260 |
+
</p>
|
261 |
+
|
262 |
+
<p class="special-price">
|
263 |
+
<?php if ($_taxHelper->displayBothPrices()): ?>
|
264 |
+
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
|
265 |
+
<span class="price-excluding-tax">
|
266 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
267 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
268 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice + $_weeeTaxAmount, false) ?>
|
269 |
+
</span>
|
270 |
+
</span>
|
271 |
+
<span class="weee">(
|
272 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
273 |
+
<?php echo $_weeeSeparator; ?>
|
274 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>
|
275 |
+
: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
|
276 |
+
<?php $_weeeSeparator = ' + '; ?>
|
277 |
+
<?php endforeach; ?>
|
278 |
+
)</span>
|
279 |
+
<span class="price-including-tax">
|
280 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
281 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
282 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
283 |
+
</span>
|
284 |
+
</span>
|
285 |
+
<?php else: ?>
|
286 |
+
<p class="special-price">
|
287 |
+
<span class="price-label"><?php echo $this->__('Special Price:') ?></span>
|
288 |
+
<span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
289 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice + $_weeeTaxAmountInclTaxes, false) ?>
|
290 |
+
</span>
|
291 |
+
</p>
|
292 |
+
<span class="weee">(
|
293 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
294 |
+
<?php echo $_weeeSeparator; ?>
|
295 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>
|
296 |
+
: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
|
297 |
+
<?php $_weeeSeparator = ' + '; ?>
|
298 |
+
<?php endforeach; ?>
|
299 |
+
)</span>
|
300 |
+
<?php endif; ?>
|
301 |
+
</p>
|
302 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
|
303 |
+
<p class="old-price">
|
304 |
+
<span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
|
305 |
+
<span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
306 |
+
<?php echo $_coreHelper->formatPrice($_regularPrice + $_originalWeeeTaxAmount, false) ?>
|
307 |
+
</span>
|
308 |
+
</p>
|
309 |
+
|
310 |
+
<p class="special-price">
|
311 |
+
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
|
312 |
+
<span class="price-excluding-tax">
|
313 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
314 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
315 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice + $_weeeTaxAmount, false) ?>
|
316 |
+
</span>
|
317 |
+
</span>
|
318 |
+
<span class="weee">(
|
319 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
320 |
+
<?php echo $_weeeSeparator; ?>
|
321 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>
|
322 |
+
<?php $_weeeSeparator = ' + '; ?>
|
323 |
+
<?php endforeach; ?>
|
324 |
+
)</span>
|
325 |
+
<span class="price-including-tax">
|
326 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
327 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
328 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
329 |
+
</span>
|
330 |
+
</span>
|
331 |
+
</p>
|
332 |
+
<?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
|
333 |
+
<p class="old-price">
|
334 |
+
<span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
|
335 |
+
<span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
336 |
+
<?php echo $_coreHelper->formatPrice($_regularPrice, false) ?>
|
337 |
+
</span>
|
338 |
+
</p>
|
339 |
+
|
340 |
+
<p class="special-price">
|
341 |
+
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
|
342 |
+
<span class="price-excluding-tax">
|
343 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
344 |
+
<span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
345 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice, false) ?>
|
346 |
+
</span>
|
347 |
+
</span>
|
348 |
+
<?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
|
349 |
+
<span class="weee">
|
350 |
+
<?php echo $_weeeTaxAttribute->getName(); ?>
|
351 |
+
: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
|
352 |
+
</span>
|
353 |
+
<?php endforeach; ?>
|
354 |
+
<span class="price-including-tax">
|
355 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
356 |
+
<span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
357 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, false) ?>
|
358 |
+
</span>
|
359 |
+
</span>
|
360 |
+
</p>
|
361 |
+
<?php else: // excl. ?>
|
362 |
+
<p class="old-price">
|
363 |
+
<span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
|
364 |
+
<span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
365 |
+
<?php echo $_coreHelper->formatPrice($_regularPrice, false) ?>
|
366 |
+
</span>
|
367 |
+
</p>
|
368 |
+
|
369 |
+
<?php if ($_taxHelper->displayBothPrices()): ?>
|
370 |
+
<p class="special-price">
|
371 |
+
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
|
372 |
+
<span class="price-excluding-tax">
|
373 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
374 |
+
<span class="price"
|
375 |
+
id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
376 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice, false) ?>
|
377 |
+
</span>
|
378 |
+
</span>
|
379 |
+
<span class="price-including-tax">
|
380 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
381 |
+
<span class="price"
|
382 |
+
id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
383 |
+
<?php echo $_coreHelper->formatPrice($_finalPriceInclTax, false) ?>
|
384 |
+
</span>
|
385 |
+
</span>
|
386 |
+
</p>
|
387 |
+
<?php else: ?>
|
388 |
+
<p class="special-price">
|
389 |
+
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
|
390 |
+
<span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
391 |
+
<?php echo $_coreHelper->formatPrice($_finalPrice, false) ?>
|
392 |
+
</span>
|
393 |
+
</p>
|
394 |
+
<?php endif; ?>
|
395 |
+
<?php endif; ?>
|
396 |
+
|
397 |
+
<?php endif; /* if ($_finalPrice == $_price): */ ?>
|
398 |
+
|
399 |
+
<?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue && $_minimalPriceValue < $_convertedFinalPrice): ?>
|
400 |
+
|
401 |
+
<?php $_minimalPriceDisplayValue = $_minimalPrice; ?>
|
402 |
+
<?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, array(0, 1, 4))): ?>
|
403 |
+
<?php $_minimalPriceDisplayValue = $_minimalPrice + $_weeeTaxAmount; ?>
|
404 |
+
<?php endif; ?>
|
405 |
+
|
406 |
+
<?php if ($this->getUseLinkForAsLowAs()): ?>
|
407 |
+
<a href="<?php echo $_product->getProductUrl(); ?>" class="minimal-price-link">
|
408 |
+
<?php else: ?>
|
409 |
+
<span class="minimal-price-link">
|
410 |
+
<?php endif ?>
|
411 |
+
<span class="label"><?php echo $this->__('As low as:') ?></span>
|
412 |
+
<span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
413 |
+
<?php echo $_coreHelper->formatPrice($_minimalPriceDisplayValue, false) ?>
|
414 |
+
</span>
|
415 |
+
<?php if ($this->getUseLinkForAsLowAs()): ?>
|
416 |
+
</a>
|
417 |
+
<?php else: ?>
|
418 |
+
</span>
|
419 |
+
<?php endif ?>
|
420 |
+
<?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): */ ?>
|
421 |
+
</div>
|
422 |
+
|
423 |
+
<?php else: /* if (!$_product->isGrouped()): */ ?>
|
424 |
+
<?php
|
425 |
+
$showMinPrice = $this->getDisplayMinimalPrice();
|
426 |
+
if ($showMinPrice && $_minimalPriceValue) {
|
427 |
+
$_exclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue);
|
428 |
+
$_inclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue, true);
|
429 |
+
$price = $showMinPrice ? $_minimalPriceValue : 0;
|
430 |
+
} else {
|
431 |
+
$price = $_convertedFinalPrice;
|
432 |
+
$_exclTax = $_taxHelper->getPrice($_product, $price);
|
433 |
+
$_inclTax = $_taxHelper->getPrice($_product, $price, true);
|
434 |
+
}
|
435 |
+
?>
|
436 |
+
<?php if ($price): ?>
|
437 |
+
<div class="price-box">
|
438 |
+
<p<?php if ($showMinPrice): ?> class="minimal-price"<?php endif ?>>
|
439 |
+
<?php if ($showMinPrice): ?>
|
440 |
+
<span class="price-label"><?php echo $this->__('Starting at:') ?></span>
|
441 |
+
<?php endif ?>
|
442 |
+
<?php if ($_taxHelper->displayBothPrices()): ?>
|
443 |
+
<span class="price-excluding-tax">
|
444 |
+
<span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
|
445 |
+
<span class="price"
|
446 |
+
id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
447 |
+
<?php echo $_coreHelper->formatPrice($_exclTax, false) ?>
|
448 |
+
</span>
|
449 |
+
</span>
|
450 |
+
<span class="price-including-tax">
|
451 |
+
<span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
|
452 |
+
<span class="price"
|
453 |
+
id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
454 |
+
<?php echo $_coreHelper->formatPrice($_inclTax, false) ?>
|
455 |
+
</span>
|
456 |
+
</span>
|
457 |
+
<?php else: ?>
|
458 |
+
<?php
|
459 |
+
$_showPrice = $_inclTax;
|
460 |
+
if (!$_taxHelper->displayPriceIncludingTax()) {
|
461 |
+
$_showPrice = $_exclTax;
|
462 |
+
}
|
463 |
+
?>
|
464 |
+
<span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
|
465 |
+
<?php echo $_coreHelper->formatPrice($_showPrice, false) ?>
|
466 |
+
</span>
|
467 |
+
<?php endif; ?>
|
468 |
+
</p>
|
469 |
+
</div>
|
470 |
+
<?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice): */ ?>
|
471 |
+
<?php endif; /* if (!$_product->isGrouped()): */ ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view.phtml
ADDED
@@ -0,0 +1,192 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Product view template
|
29 |
+
*
|
30 |
+
* @see Mage_Catalog_Block_Product_View
|
31 |
+
* @see Mage_Review_Block_Product_View
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php $_helper = $this->helper('catalog/output'); ?>
|
35 |
+
<?php $_product = $this->getProduct(); ?>
|
36 |
+
<script type="text/javascript">
|
37 |
+
var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
|
38 |
+
</script>
|
39 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
40 |
+
<div class="product-view">
|
41 |
+
<div class="product-essential">
|
42 |
+
<form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
|
43 |
+
<?php echo $this->getBlockHtml('formkey') ?>
|
44 |
+
<div class="no-display">
|
45 |
+
<input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
|
46 |
+
<input type="hidden" name="related_product" id="related-products-field" value="" />
|
47 |
+
</div>
|
48 |
+
|
49 |
+
<div class="product-shop">
|
50 |
+
<div class="product-name">
|
51 |
+
<h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
|
52 |
+
</div>
|
53 |
+
|
54 |
+
<!-- E-mail to friend display -->
|
55 |
+
<?php /* if ($this->canEmailToFriend()): ?>
|
56 |
+
<p class="email-friend"><a href="<?php echo $this->helper('catalog/product')->getEmailToFriendUrl($_product) ?>"><?php echo $this->__('Email to a Friend') ?></a></p>
|
57 |
+
<?php endif; */ ?>
|
58 |
+
|
59 |
+
<!-- Reviews to botttom -->
|
60 |
+
<?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
|
61 |
+
<?php echo $this->getChildHtml('alert_urls') ?>
|
62 |
+
<?php echo $this->getChildHtml('product_type_data') ?>
|
63 |
+
<?php echo $this->getTierPriceHtml() ?>
|
64 |
+
<?php echo $this->getChildHtml('extrahint') ?>
|
65 |
+
|
66 |
+
<?php echo $this->getChildHtml('other');?>
|
67 |
+
|
68 |
+
<?php if ($_product->isSaleable() && $this->hasOptions()):?>
|
69 |
+
<?php echo $this->getChildChildHtml('container1', '', true, true) ?>
|
70 |
+
<?php endif;?>
|
71 |
+
|
72 |
+
<!-- Quick Overview -->
|
73 |
+
<?php if ($_product->getShortDescription()):?>
|
74 |
+
<div class="short-description">
|
75 |
+
<h2><?php echo $this->__('Quick Overview') ?></h2>
|
76 |
+
<div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
|
77 |
+
</div>
|
78 |
+
<?php endif;?>
|
79 |
+
|
80 |
+
<!-- Add to cart/compare/wishes -->
|
81 |
+
<?php if (!$this->hasOptions()):?>
|
82 |
+
<div class="add-to-box">
|
83 |
+
<?php if($_product->isSaleable()): ?>
|
84 |
+
<?php echo $this->getChildHtml('addtocart') ?>
|
85 |
+
<?php if( $this->helper('wishlist')->isAllow() || $_compareUrl=$this->helper('catalog/product_compare')->getAddUrl($_product)): ?>
|
86 |
+
<?php endif; ?>
|
87 |
+
<?php endif; ?>
|
88 |
+
<?php echo $this->getChildHtml('addto') ?>
|
89 |
+
</div>
|
90 |
+
<?php echo $this->getChildHtml('extra_buttons') ?>
|
91 |
+
<?php elseif (!$_product->isSaleable()): ?>
|
92 |
+
<div class="add-to-box">
|
93 |
+
<?php echo $this->getChildHtml('addto') ?>
|
94 |
+
</div>
|
95 |
+
<?php endif; ?>
|
96 |
+
</div>
|
97 |
+
|
98 |
+
<div class="product-img-box">
|
99 |
+
<?php echo $this->getChildHtml('media') ?>
|
100 |
+
</div>
|
101 |
+
|
102 |
+
<div class="clearer"></div>
|
103 |
+
<?php if ($_product->isSaleable() && $this->hasOptions()):?>
|
104 |
+
<?php echo $this->getChildChildHtml('container2', '', true, true) ?>
|
105 |
+
<?php endif;?>
|
106 |
+
</form>
|
107 |
+
<script type="text/javascript">
|
108 |
+
//<![CDATA[
|
109 |
+
var productAddToCartForm = new VarienForm('product_addtocart_form');
|
110 |
+
productAddToCartForm.submit = function(button, url) {
|
111 |
+
if (this.validator.validate()) {
|
112 |
+
var form = this.form;
|
113 |
+
var oldUrl = form.action;
|
114 |
+
|
115 |
+
if (url) {
|
116 |
+
form.action = url;
|
117 |
+
}
|
118 |
+
var e = null;
|
119 |
+
try {
|
120 |
+
this.form.submit();
|
121 |
+
} catch (e) {
|
122 |
+
}
|
123 |
+
this.form.action = oldUrl;
|
124 |
+
if (e) {
|
125 |
+
throw e;
|
126 |
+
}
|
127 |
+
|
128 |
+
if (button && button != 'undefined') {
|
129 |
+
button.disabled = true;
|
130 |
+
}
|
131 |
+
}
|
132 |
+
}.bind(productAddToCartForm);
|
133 |
+
|
134 |
+
productAddToCartForm.submitLight = function(button, url){
|
135 |
+
if(this.validator) {
|
136 |
+
var nv = Validation.methods;
|
137 |
+
delete Validation.methods['required-entry'];
|
138 |
+
delete Validation.methods['validate-one-required'];
|
139 |
+
delete Validation.methods['validate-one-required-by-name'];
|
140 |
+
// Remove custom datetime validators
|
141 |
+
for (var methodName in Validation.methods) {
|
142 |
+
if (methodName.match(/^validate-datetime-.*/i)) {
|
143 |
+
delete Validation.methods[methodName];
|
144 |
+
}
|
145 |
+
}
|
146 |
+
|
147 |
+
if (this.validator.validate()) {
|
148 |
+
if (url) {
|
149 |
+
this.form.action = url;
|
150 |
+
}
|
151 |
+
this.form.submit();
|
152 |
+
}
|
153 |
+
Object.extend(Validation.methods, nv);
|
154 |
+
}
|
155 |
+
}.bind(productAddToCartForm);
|
156 |
+
//]]>
|
157 |
+
</script>
|
158 |
+
</div>
|
159 |
+
|
160 |
+
|
161 |
+
<div class="product-collateral">
|
162 |
+
|
163 |
+
<ul class="tabNav">
|
164 |
+
<?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
|
165 |
+
<?php if($alias == "recurring_info"): ?>
|
166 |
+
<li data-tab="<?php echo $alias ?>">
|
167 |
+
<h2><?php echo $this->__('Recurring Payment') ?></h2>
|
168 |
+
</li>
|
169 |
+
<?php else: ?>
|
170 |
+
<li data-tab="<?php echo $alias ?>">
|
171 |
+
<div class="hover_html"><?php echo $html; ?></div>
|
172 |
+
</li>
|
173 |
+
<?php endif ?>
|
174 |
+
<?php endforeach;?>
|
175 |
+
<li data-tab="tags">
|
176 |
+
<h2><?php echo $this->__('Tags') ?></h2>
|
177 |
+
</li>
|
178 |
+
<div class="clearer"></div>
|
179 |
+
</ul>
|
180 |
+
|
181 |
+
<?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
|
182 |
+
<div class="box-collateral <?php echo "box-{$alias}"?>" data-tab="<?php echo $alias ?>">
|
183 |
+
<?php if ($title = $this->getChildData($alias, 'title')):?>
|
184 |
+
<h2><?php echo $this->escapeHtml($title); ?></h2>
|
185 |
+
<?php endif;?>
|
186 |
+
<?php echo $html; ?>
|
187 |
+
</div>
|
188 |
+
<?php endforeach;?>
|
189 |
+
<?php echo $this->getChildHtml('product_additional_data') ?>
|
190 |
+
<?php echo $this->getChildHtml('upsell_products') ?>
|
191 |
+
</div>
|
192 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/additional.phtml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php foreach ($this->getChildHtmlList() as $_html): ?>
|
28 |
+
<?php echo $_html ?>
|
29 |
+
<?php endforeach; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/addto.phtml
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php $_product = $this->getProduct(); ?>
|
29 |
+
<?php $_wishlistSubmitUrl = $this->helper('wishlist')->getAddUrl($_product); ?>
|
30 |
+
|
31 |
+
<ul class="add-to-links">
|
32 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
33 |
+
<li><a href="<?php echo $_wishlistSubmitUrl ?>" onclick="productAddToCartForm.submitLight(this, this.href); return false;" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
34 |
+
<?php endif; ?>
|
35 |
+
<?php
|
36 |
+
$_compareUrl = $this->helper('catalog/product_compare')->getAddUrl($_product);
|
37 |
+
?>
|
38 |
+
<?php if($_compareUrl) : ?>
|
39 |
+
<li class="compare-li"><a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
40 |
+
<?php endif; ?>
|
41 |
+
</ul>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/addtocart.phtml
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_product = $this->getProduct(); ?>
|
28 |
+
<?php $buttonTitle = $this->__('Add to Cart'); ?>
|
29 |
+
<?php if($_product->isSaleable()): ?>
|
30 |
+
<div class="add-to-cart">
|
31 |
+
<?php if(!$_product->isGrouped()): ?>
|
32 |
+
<label for="qty"><?php echo $this->__('Qty:') ?></label>
|
33 |
+
<span class="qty-container">
|
34 |
+
<input type="text" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
|
35 |
+
<i class="fa fa-angle-up"></i>
|
36 |
+
<i class="fa fa-angle-down"></i>
|
37 |
+
</span>
|
38 |
+
<?php endif; ?>
|
39 |
+
<button type="button" title="<?php echo $buttonTitle ?>" id="product-addtocart-button" class="button_green btn_cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
|
40 |
+
<?php echo $this->getChildHtml('', true, true) ?>
|
41 |
+
</div>
|
42 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/attributes.phtml
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Product additional attributes template
|
29 |
+
*
|
30 |
+
* @see Mage_Catalog_Block_Product_View_Attributes
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<?php
|
34 |
+
$_helper = $this->helper('catalog/output');
|
35 |
+
$_product = $this->getProduct()
|
36 |
+
?>
|
37 |
+
<?php if($_additional = $this->getAdditionalData()): ?>
|
38 |
+
<h2><?php echo $this->__('Additional Information') ?></h2>
|
39 |
+
<table id="product-attribute-specs-table">
|
40 |
+
<col width="25%" />
|
41 |
+
<col />
|
42 |
+
<tbody>
|
43 |
+
<?php foreach ($_additional as $_data): ?>
|
44 |
+
<tr>
|
45 |
+
<th class="label"><?php echo $this->escapeHtml($this->__($_data['label'])) ?></th>
|
46 |
+
<td class="data"><?php echo $_helper->productAttribute($_product, $_data['value'], $_data['code']) ?></td>
|
47 |
+
</tr>
|
48 |
+
<?php endforeach; ?>
|
49 |
+
</tbody>
|
50 |
+
</table>
|
51 |
+
<script type="text/javascript">decorateTable('product-attribute-specs-table')</script>
|
52 |
+
<?php endif;?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/description.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Product description template
|
29 |
+
*
|
30 |
+
* @see Mage_Catalog_Block_Product_View_Description
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<?php $_description = $this->getProduct()->getDescription(); ?>
|
34 |
+
<?php if ($_description): ?>
|
35 |
+
<h2><?php echo $this->__('Details') ?></h2>
|
36 |
+
<div class="std">
|
37 |
+
<?php echo $this->helper('catalog/output')->productAttribute($this->getProduct(), $_description, 'description') ?>
|
38 |
+
</div>
|
39 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/media.phtml
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Product media data template
|
29 |
+
*
|
30 |
+
* @see Mage_Catalog_Block_Product_View_Media
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<?php
|
34 |
+
$_product = $this->getProduct();
|
35 |
+
$_helper = $this->helper('catalog/output');
|
36 |
+
?>
|
37 |
+
<?php $_new_attribute = $_product->getMgIsNew() ? '<div class="new-product">' . $this->__('NEW') . '</div>' : '' ?>
|
38 |
+
|
39 |
+
<?php if ( $_product->getImage() != 'no_selection' && $_product->getImage()): ?>
|
40 |
+
|
41 |
+
<p class="product-image">
|
42 |
+
<?php echo $_new_attribute ?>
|
43 |
+
<?php
|
44 |
+
$_img = '<a href="' . $this->helper('catalog/image')->init($_product, 'image') . '" class="fancybox-img" rel="product-gallery"><img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image') ->resize(405).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" /></a>';
|
45 |
+
|
46 |
+
echo $_helper->productAttribute($_product, $_img, 'image');
|
47 |
+
?>
|
48 |
+
</p>
|
49 |
+
|
50 |
+
<?php else: ?>
|
51 |
+
<p class="product-image">
|
52 |
+
<?php echo $_new_attribute ?>
|
53 |
+
<?php
|
54 |
+
$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(405).'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
|
55 |
+
echo $_helper->productAttribute($_product, $_img, 'image');
|
56 |
+
?>
|
57 |
+
</p>
|
58 |
+
<?php endif; ?>
|
59 |
+
<?php if (count($this->getGalleryImages()) > 0): ?>
|
60 |
+
<div class="more-views">
|
61 |
+
<div class="customNavigation">
|
62 |
+
<a class="next media-next"></a>
|
63 |
+
<a class="prev media-prev"></a>
|
64 |
+
</div>
|
65 |
+
<div id="owl-media" class="owl-carousel-media owl-carousel owl-theme">
|
66 |
+
<?php foreach ($this->getGalleryImages() as $_image): ?>
|
67 |
+
<div class="item">
|
68 |
+
<a href="<?php echo $_image->getUrl() ?>" class="fancybox-img" rel="product-gallery" title="<?php echo $this->htmlEscape($_image->getLabel()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(135); ?>" width="135" height="135" alt="<?php echo $this->htmlEscape($_image->getLabel()) ?>" /></a>
|
69 |
+
</div>
|
70 |
+
<?php endforeach; ?>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options.phtml
ADDED
@@ -0,0 +1,193 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
/* @var $this Mage_Catalog_Block_Product_View_Options */
|
27 |
+
?>
|
28 |
+
|
29 |
+
<?php $_options = Mage::helper('core')->decorateArray($this->getOptions()) ?>
|
30 |
+
<?php if (count($_options)):?>
|
31 |
+
<script type="text/javascript">
|
32 |
+
//<![CDATA[
|
33 |
+
var optionFileUpload = {
|
34 |
+
productForm : $('product_addtocart_form'),
|
35 |
+
formAction : '',
|
36 |
+
formElements : {},
|
37 |
+
upload : function(element){
|
38 |
+
this.formElements = this.productForm.select('input', 'select', 'textarea', 'button');
|
39 |
+
this.removeRequire(element.readAttribute('id').sub('option_', ''));
|
40 |
+
|
41 |
+
template = '<iframe id="upload_target" name="upload_target" style="width:0; height:0; border:0;"><\/iframe>';
|
42 |
+
|
43 |
+
Element.insert($('option_'+element.readAttribute('id').sub('option_', '')+'_uploaded_file'), {after: template});
|
44 |
+
|
45 |
+
this.formAction = this.productForm.action;
|
46 |
+
|
47 |
+
var baseUrl = '<?php echo $this->getUrl('*/product/upload') ?>';
|
48 |
+
var urlExt = 'option_id/'+element.readAttribute('id').sub('option_', '');
|
49 |
+
|
50 |
+
this.productForm.action = parseSidUrl(baseUrl, urlExt);
|
51 |
+
this.productForm.target = 'upload_target';
|
52 |
+
this.productForm.submit();
|
53 |
+
this.productForm.target = '';
|
54 |
+
this.productForm.action = this.formAction;
|
55 |
+
},
|
56 |
+
removeRequire : function(skipElementId){
|
57 |
+
for(var i=0; i<this.formElements.length; i++){
|
58 |
+
if (this.formElements[i].readAttribute('id') != 'option_'+skipElementId+'_file' && this.formElements[i].type != 'button') {
|
59 |
+
this.formElements[i].disabled='disabled';
|
60 |
+
}
|
61 |
+
}
|
62 |
+
},
|
63 |
+
addRequire : function(skipElementId){
|
64 |
+
for(var i=0; i<this.formElements.length; i++){
|
65 |
+
if (this.formElements[i].readAttribute('name') != 'options_'+skipElementId+'_file' && this.formElements[i].type != 'button') {
|
66 |
+
this.formElements[i].disabled='';
|
67 |
+
}
|
68 |
+
}
|
69 |
+
},
|
70 |
+
uploadCallback : function(data){
|
71 |
+
this.addRequire(data.optionId);
|
72 |
+
$('upload_target').remove();
|
73 |
+
|
74 |
+
if (data.error) {
|
75 |
+
|
76 |
+
} else {
|
77 |
+
$('option_'+data.optionId+'_uploaded_file').value = data.fileName;
|
78 |
+
$('option_'+data.optionId+'_file').value = '';
|
79 |
+
$('option_'+data.optionId+'_file').hide();
|
80 |
+
$('option_'+data.optionId+'').hide();
|
81 |
+
template = '<div id="option_'+data.optionId+'_file_box"><a href="#"><img src="var/options/'+data.fileName+'" alt=""><\/a><a href="#" onclick="optionFileUpload.removeFile('+data.optionId+')" title="Remove file" \/>Remove file<\/a>';
|
82 |
+
|
83 |
+
Element.insert($('option_'+data.optionId+'_uploaded_file'), {after: template});
|
84 |
+
}
|
85 |
+
},
|
86 |
+
removeFile : function(optionId)
|
87 |
+
{
|
88 |
+
$('option_'+optionId+'_uploaded_file').value= '';
|
89 |
+
$('option_'+optionId+'_file').show();
|
90 |
+
$('option_'+optionId+'').show();
|
91 |
+
|
92 |
+
$('option_'+optionId+'_file_box').remove();
|
93 |
+
}
|
94 |
+
}
|
95 |
+
var optionTextCounter = {
|
96 |
+
count : function(field,cntfield,maxlimit){
|
97 |
+
if (field.value.length > maxlimit){
|
98 |
+
field.value = field.value.substring(0, maxlimit);
|
99 |
+
} else {
|
100 |
+
cntfield.innerHTML = maxlimit - field.value.length;
|
101 |
+
}
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
Product.Options = Class.create();
|
106 |
+
Product.Options.prototype = {
|
107 |
+
initialize : function(config) {
|
108 |
+
this.config = config;
|
109 |
+
this.reloadPrice();
|
110 |
+
document.observe("dom:loaded", this.reloadPrice.bind(this));
|
111 |
+
},
|
112 |
+
reloadPrice : function() {
|
113 |
+
var config = this.config;
|
114 |
+
var skipIds = [];
|
115 |
+
$$('body .product-custom-option').each(function(element){
|
116 |
+
var optionId = 0;
|
117 |
+
element.name.sub(/[0-9]+/, function(match){
|
118 |
+
optionId = parseInt(match[0], 10);
|
119 |
+
});
|
120 |
+
if (config[optionId]) {
|
121 |
+
var configOptions = config[optionId];
|
122 |
+
var curConfig = {price: 0};
|
123 |
+
if (element.type == 'checkbox' || element.type == 'radio') {
|
124 |
+
if (element.checked) {
|
125 |
+
if (typeof configOptions[element.getValue()] != 'undefined') {
|
126 |
+
curConfig = configOptions[element.getValue()];
|
127 |
+
}
|
128 |
+
}
|
129 |
+
} else if(element.hasClassName('datetime-picker') && !skipIds.include(optionId)) {
|
130 |
+
dateSelected = true;
|
131 |
+
$$('.product-custom-option[id^="options_' + optionId + '"]').each(function(dt){
|
132 |
+
if (dt.getValue() == '') {
|
133 |
+
dateSelected = false;
|
134 |
+
}
|
135 |
+
});
|
136 |
+
if (dateSelected) {
|
137 |
+
curConfig = configOptions;
|
138 |
+
skipIds[optionId] = optionId;
|
139 |
+
}
|
140 |
+
} else if(element.type == 'select-one' || element.type == 'select-multiple') {
|
141 |
+
if ('options' in element) {
|
142 |
+
$A(element.options).each(function(selectOption){
|
143 |
+
if ('selected' in selectOption && selectOption.selected) {
|
144 |
+
if (typeof(configOptions[selectOption.value]) != 'undefined') {
|
145 |
+
curConfig = configOptions[selectOption.value];
|
146 |
+
}
|
147 |
+
}
|
148 |
+
});
|
149 |
+
}
|
150 |
+
} else {
|
151 |
+
if (element.getValue().strip() != '') {
|
152 |
+
curConfig = configOptions;
|
153 |
+
}
|
154 |
+
}
|
155 |
+
if(element.type == 'select-multiple' && ('options' in element)) {
|
156 |
+
$A(element.options).each(function(selectOption) {
|
157 |
+
if (('selected' in selectOption) && typeof(configOptions[selectOption.value]) != 'undefined') {
|
158 |
+
if (selectOption.selected) {
|
159 |
+
curConfig = configOptions[selectOption.value];
|
160 |
+
} else {
|
161 |
+
curConfig = {price: 0};
|
162 |
+
}
|
163 |
+
optionsPrice.addCustomPrices(optionId + '-' + selectOption.value, curConfig);
|
164 |
+
optionsPrice.reload();
|
165 |
+
}
|
166 |
+
});
|
167 |
+
} else {
|
168 |
+
optionsPrice.addCustomPrices(element.id || optionId, curConfig);
|
169 |
+
optionsPrice.reload();
|
170 |
+
}
|
171 |
+
}
|
172 |
+
});
|
173 |
+
}
|
174 |
+
}
|
175 |
+
function validateOptionsCallback(elmId, result) {
|
176 |
+
var container = $(elmId).up('ul.options-list');
|
177 |
+
if (result == 'failed') {
|
178 |
+
container.removeClassName('validation-passed');
|
179 |
+
container.addClassName('validation-failed');
|
180 |
+
} else {
|
181 |
+
container.removeClassName('validation-failed');
|
182 |
+
container.addClassName('validation-passed');
|
183 |
+
}
|
184 |
+
}
|
185 |
+
var opConfig = new Product.Options(<?php echo $this->getJsonConfig() ?>);
|
186 |
+
//]]>
|
187 |
+
</script>
|
188 |
+
<dl>
|
189 |
+
<?php foreach($_options as $_option): ?>
|
190 |
+
<?php echo $this->getOptionHtml($_option) ?>
|
191 |
+
<?php endforeach; ?>
|
192 |
+
</dl>
|
193 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/js.phtml
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<script type="text/javascript">
|
28 |
+
//<![CDATA[
|
29 |
+
var DateOption = Class.create({
|
30 |
+
|
31 |
+
getDaysInMonth: function(month, year)
|
32 |
+
{
|
33 |
+
var curDate = new Date();
|
34 |
+
if (!month) {
|
35 |
+
month = curDate.getMonth();
|
36 |
+
}
|
37 |
+
if (2 == month && !year) { // leap year assumption for unknown year
|
38 |
+
return 29;
|
39 |
+
}
|
40 |
+
if (!year) {
|
41 |
+
year = curDate.getFullYear();
|
42 |
+
}
|
43 |
+
return 32 - new Date(year, month - 1, 32).getDate();
|
44 |
+
},
|
45 |
+
|
46 |
+
reloadMonth: function(event)
|
47 |
+
{
|
48 |
+
var selectEl = event.findElement();
|
49 |
+
var idParts = selectEl.id.split("_");
|
50 |
+
if (idParts.length != 3) {
|
51 |
+
return false;
|
52 |
+
}
|
53 |
+
var optionIdPrefix = idParts[0] + "_" + idParts[1];
|
54 |
+
var month = parseInt($(optionIdPrefix + "_month").value);
|
55 |
+
var year = parseInt($(optionIdPrefix + "_year").value);
|
56 |
+
var dayEl = $(optionIdPrefix + "_day");
|
57 |
+
|
58 |
+
var days = this.getDaysInMonth(month, year);
|
59 |
+
|
60 |
+
//remove days
|
61 |
+
for (var i = dayEl.options.length - 1; i >= 0; i--) {
|
62 |
+
if (dayEl.options[i].value > days) {
|
63 |
+
dayEl.remove(dayEl.options[i].index);
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
// add days
|
68 |
+
var lastDay = parseInt(dayEl.options[dayEl.options.length-1].value);
|
69 |
+
for (i = lastDay + 1; i <= days; i++) {
|
70 |
+
this.addOption(dayEl, i, i);
|
71 |
+
}
|
72 |
+
},
|
73 |
+
|
74 |
+
addOption: function(select, text, value)
|
75 |
+
{
|
76 |
+
var option = document.createElement('OPTION');
|
77 |
+
option.value = value;
|
78 |
+
option.text = text;
|
79 |
+
|
80 |
+
if (select.options.add) {
|
81 |
+
select.options.add(option);
|
82 |
+
} else {
|
83 |
+
select.appendChild(option);
|
84 |
+
}
|
85 |
+
}
|
86 |
+
});
|
87 |
+
dateOption = new DateOption();
|
88 |
+
//]]>
|
89 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/date.phtml
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_option = $this->getOption() ?>
|
28 |
+
<?php $_optionId = $_option->getId() ?>
|
29 |
+
<dt><label<?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
|
30 |
+
<?php echo $this->getFormatedPrice() ?></dt>
|
31 |
+
<dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
|
32 |
+
|
33 |
+
<?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DATE_TIME
|
34 |
+
|| $_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DATE): ?>
|
35 |
+
|
36 |
+
<?php echo $this->getDateHtml() ?>
|
37 |
+
|
38 |
+
<?php if (!$this->useCalendar()): ?>
|
39 |
+
<script type="text/javascript">
|
40 |
+
//<![CDATA[
|
41 |
+
Event.observe('options_<?php echo $_optionId ?>_month', 'change', dateOption.reloadMonth.bind(dateOption));
|
42 |
+
Event.observe('options_<?php echo $_optionId ?>_year', 'change', dateOption.reloadMonth.bind(dateOption));
|
43 |
+
//]]>
|
44 |
+
</script>
|
45 |
+
<?php endif; ?>
|
46 |
+
|
47 |
+
<?php endif; ?>
|
48 |
+
|
49 |
+
<?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DATE_TIME
|
50 |
+
|| $_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_TIME): ?>
|
51 |
+
<span class="time-picker"><?php echo $this->getTimeHtml() ?></span>
|
52 |
+
<?php endif; ?>
|
53 |
+
|
54 |
+
<input type="hidden" name="validate_datetime_<?php echo $_optionId ?>" class="validate-datetime-<?php echo $_optionId ?>" value="" />
|
55 |
+
<script type="text/javascript">
|
56 |
+
//<![CDATA[
|
57 |
+
<?php if ($_option->getIsRequire()): ?>
|
58 |
+
Validation.addAllThese(
|
59 |
+
[
|
60 |
+
['validate-datetime-<?php echo $_optionId ?>', '<?php echo $this->jsQuoteEscape( Mage::helper('catalog')->__('This is a required option') )?>', function(v) {
|
61 |
+
var dateTimeParts = $$('.datetime-picker[id^="options_<?php echo $_optionId ?>"]');
|
62 |
+
for (var i=0; i < dateTimeParts.length; i++) {
|
63 |
+
if (dateTimeParts[i].value == "") return false;
|
64 |
+
}
|
65 |
+
return true;
|
66 |
+
}]
|
67 |
+
]
|
68 |
+
);
|
69 |
+
<?php else: ?>
|
70 |
+
Validation.add(
|
71 |
+
'validate-datetime-<?php echo $_optionId ?>',
|
72 |
+
'<?php echo $this->jsQuoteEscape( Mage::helper('catalog')->__('Field is not complete') )?>',
|
73 |
+
function(v) {
|
74 |
+
var dateTimeParts = $$('.datetime-picker[id^="options_<?php echo $_optionId ?>"]');
|
75 |
+
var hasWithValue = false, hasWithNoValue = false;
|
76 |
+
var pattern = /day_part$/i;
|
77 |
+
for (var i=0; i < dateTimeParts.length; i++) {
|
78 |
+
if (! pattern.test(dateTimeParts[i].id)) {
|
79 |
+
if (dateTimeParts[i].value === "") {
|
80 |
+
hasWithValue = true;
|
81 |
+
} else {
|
82 |
+
hasWithNoValue = true;
|
83 |
+
}
|
84 |
+
}
|
85 |
+
}
|
86 |
+
return hasWithValue ^ hasWithNoValue;
|
87 |
+
}
|
88 |
+
);
|
89 |
+
<?php endif; ?>
|
90 |
+
//]]>
|
91 |
+
</script>
|
92 |
+
</dd>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/default.phtml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_option = $this->getOption() ?>
|
28 |
+
<dt>
|
29 |
+
<label><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
|
30 |
+
</dt>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/file.phtml
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_option = $this->getOption(); ?>
|
28 |
+
<?php $_fileInfo = $this->getFileInfo(); ?>
|
29 |
+
<?php $_fileExists = $_fileInfo->hasData() ? true : false; ?>
|
30 |
+
<?php $_fileName = 'options_' . $_option->getId() . '_file'; ?>
|
31 |
+
<?php $_fieldNameAction = $_fileName . '_action'; ?>
|
32 |
+
<?php $_fieldValueAction = $_fileExists ? 'save_old' : 'save_new'; ?>
|
33 |
+
<?php $_fileNamed = $_fileName . '_name'; ?>
|
34 |
+
<?php $_rand = rand(); ?>
|
35 |
+
|
36 |
+
<script type="text/javascript">
|
37 |
+
//<![CDATA[
|
38 |
+
opFile<?php echo $_rand; ?> = {
|
39 |
+
initializeFile: function(inputBox) {
|
40 |
+
this.inputFile = inputBox.select('input[name="<?php echo $_fileName; ?>"]')[0];
|
41 |
+
this.inputFileAction = inputBox.select('input[name="<?php echo $_fieldNameAction; ?>"]')[0];
|
42 |
+
this.fileNameBox = inputBox.up('dd').select('.<?php echo $_fileNamed ?>')[0];
|
43 |
+
},
|
44 |
+
|
45 |
+
toggleFileChange: function(inputBox) {
|
46 |
+
this.initializeFile(inputBox);
|
47 |
+
inputBox.toggle();
|
48 |
+
this.fileChangeFlag = this.fileChangeFlag ? false : true;
|
49 |
+
if (!this.fileDeleteFlag) {
|
50 |
+
if (this.fileChangeFlag) {
|
51 |
+
this.inputFileAction.value = 'save_new';
|
52 |
+
this.inputFile.disabled = false;
|
53 |
+
} else {
|
54 |
+
this.inputFileAction.value = 'save_old';
|
55 |
+
this.inputFile.disabled = true;
|
56 |
+
}
|
57 |
+
}
|
58 |
+
},
|
59 |
+
|
60 |
+
toggleFileDelete: function(fileDeleteFlag, inputBox) {
|
61 |
+
this.initializeFile(inputBox);
|
62 |
+
this.fileDeleteFlag = fileDeleteFlag.checked ? true : false;
|
63 |
+
if (this.fileDeleteFlag) {
|
64 |
+
this.inputFileAction.value = '';
|
65 |
+
this.inputFile.disabled = true;
|
66 |
+
this.fileNameBox.setStyle({'text-decoration': 'line-through'});
|
67 |
+
} else {
|
68 |
+
this.inputFileAction.value = this.fileChangeFlag ? 'save_new' : 'save_old';
|
69 |
+
this.inputFile.disabled = (this.fileChangeFlag == 'save_old');
|
70 |
+
this.fileNameBox.setStyle({'text-decoration': 'none'});
|
71 |
+
}
|
72 |
+
}
|
73 |
+
};
|
74 |
+
//]]>
|
75 |
+
</script>
|
76 |
+
|
77 |
+
<dt><label <?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
|
78 |
+
<?php echo $this->getFormatedPrice() ?></dt>
|
79 |
+
<dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
|
80 |
+
<?php if ($_fileExists): ?>
|
81 |
+
<span class="<?php echo $_fileNamed ?>"><?php echo $_fileInfo->getTitle(); ?></span>
|
82 |
+
<a href="javascript:void(0)" class="label" onclick="opFile<?php echo $_rand; ?>.toggleFileChange($(this).next('.input-box'))">
|
83 |
+
<?php echo Mage::helper('catalog')->__('Change') ?>
|
84 |
+
</a>
|
85 |
+
<?php if (!$_option->getIsRequire()): ?>
|
86 |
+
<input type="checkbox" onclick="opFile<?php echo $_rand; ?>.toggleFileDelete($(this), $(this).next('.input-box'))" />
|
87 |
+
<span class="label"><?php echo Mage::helper('catalog')->__('Delete') ?></span>
|
88 |
+
<?php endif; ?>
|
89 |
+
<?php endif; ?>
|
90 |
+
<div class="input-box" <?php echo $_fileExists ? 'style="display:none"' : '' ?>>
|
91 |
+
<input type="file" name="<?php echo $_fileName; ?>" class="product-custom-option<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?>" <?php echo $_fileExists ? 'disabled="disabled"' : '' ?> onchange="opConfig.reloadPrice()" />
|
92 |
+
<input type="hidden" name="<?php echo $_fieldNameAction; ?>" value="<?php echo $_fieldValueAction; ?>" />
|
93 |
+
<?php if ($_option->getFileExtension()): ?>
|
94 |
+
<p class="no-margin"><?php echo Mage::helper('catalog')->__('Allowed file extensions to upload')?>: <strong><?php echo $_option->getFileExtension() ?></strong></p>
|
95 |
+
<?php endif; ?>
|
96 |
+
<?php if ($_option->getImageSizeX() > 0): ?>
|
97 |
+
<p class="no-margin"><?php echo Mage::helper('catalog')->__('Maximum image width')?>: <strong><?php echo $_option->getImageSizeX() ?> <?php echo Mage::helper('catalog')->__('px.')?></strong></p>
|
98 |
+
<?php endif; ?>
|
99 |
+
<?php if ($_option->getImageSizeY() > 0): ?>
|
100 |
+
<p class="no-margin"><?php echo Mage::helper('catalog')->__('Maximum image height')?>: <strong><?php echo $_option->getImageSizeY() ?> <?php echo Mage::helper('catalog')->__('px.')?></strong></p>
|
101 |
+
<?php endif; ?>
|
102 |
+
</div>
|
103 |
+
</dd>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/select.phtml
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php /* @var $this Mage_Catalog_Block_Product_View_Options_Type_Select */ ?>
|
29 |
+
<?php $_option = $this->getOption() ?>
|
30 |
+
<dt><label<?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label></dt>
|
31 |
+
<dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
|
32 |
+
<div class="input-box">
|
33 |
+
<?php echo $this->getValuesHtml() ?>
|
34 |
+
<?php if ($_option->getIsRequire()): ?>
|
35 |
+
<?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_RADIO || $_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_CHECKBOX): ?>
|
36 |
+
<span id="options-<?php echo $_option->getId() ?>-container"></span>
|
37 |
+
<?php endif; ?>
|
38 |
+
<?php endif;?>
|
39 |
+
</div>
|
40 |
+
</dd>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/type/text.phtml
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_option = $this->getOption(); ?>
|
28 |
+
<dt><label<?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
|
29 |
+
<?php echo $this->getFormatedPrice() ?></dt>
|
30 |
+
<dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
|
31 |
+
<div class="input-box">
|
32 |
+
<?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_FIELD): ?>
|
33 |
+
<input type="text" onchange="opConfig.reloadPrice()" id="options_<?php echo $_option->getId() ?>_text" class="input-text<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?> <?php echo $_option->getMaxCharacters() ? ' validate-length maximum-length-'.$_option->getMaxCharacters() : '' ?> product-custom-option" name="options[<?php echo $_option->getId() ?>]" value="<?php echo $this->escapeHtml($this->getDefaultValue()) ?>" />
|
34 |
+
<?php elseif ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_AREA): ?>
|
35 |
+
<textarea id="options_<?php echo $_option->getId() ?>_text" onchange="opConfig.reloadPrice()" class="<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?> <?php echo $_option->getMaxCharacters() ? ' validate-length maximum-length-'.$_option->getMaxCharacters() : '' ?> product-custom-option" name="options[<?php echo $_option->getId() ?>]" rows="5" cols="25"><?php echo $this->escapeHtml($this->getDefaultValue()) ?></textarea>
|
36 |
+
<?php endif; ?>
|
37 |
+
<?php if ($_option->getMaxCharacters()): ?>
|
38 |
+
<p class="note"><?php echo Mage::helper('catalog')->__('Maximum number of characters:')?> <strong><?php echo $_option->getMaxCharacters() ?></strong></p>
|
39 |
+
<?php endif; ?>
|
40 |
+
</div>
|
41 |
+
</dd>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/wrapper.phtml
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="product-options" id="product-options-wrapper">
|
28 |
+
<?php echo $this->getChildHtml('', true, true);?>
|
29 |
+
<?php if ($this->hasRequiredOptions()):?>
|
30 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
31 |
+
<?php endif;?>
|
32 |
+
</div>
|
33 |
+
<script type="text/javascript">decorateGeneric($$('#product-options-wrapper dl'), ['last']);</script>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/options/wrapper/bottom.phtml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="product-options-bottom">
|
28 |
+
<?php echo $this->getChildHtml('', true, true);?>
|
29 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/price.phtml
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @deprecated after 1.4.0.0-alpha3
|
29 |
+
*/
|
30 |
+
?>
|
31 |
+
<div class="price-box" id="product_price">
|
32 |
+
<p class="old-price"><?php echo $this->__('Old Price:') ?> <?php echo $this->getPrice() ?></p>
|
33 |
+
<p class="special-price"><?php echo $this->getPrice() ?></p>
|
34 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/price_clone.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/tierprices.phtml
ADDED
@@ -0,0 +1,232 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php
|
29 |
+
/**
|
30 |
+
* @see Mage_Catalog_Block_Product_View
|
31 |
+
*/
|
32 |
+
$_product = $this->getProduct();
|
33 |
+
$_tierPrices = $this->getTierPrices();
|
34 |
+
$_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);
|
35 |
+
|
36 |
+
/** @var $_catalogHelper Mage_Catalog_Helper_Data */
|
37 |
+
$_catalogHelper = Mage::helper('catalog');
|
38 |
+
|
39 |
+
$_weeeTaxAmount = Mage::helper('weee')->getAmountForDisplay($_product);
|
40 |
+
if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
|
41 |
+
$_weeeTaxAttributes = Mage::helper('weee')->getProductWeeeAttributesForDisplay($_product);
|
42 |
+
}
|
43 |
+
|
44 |
+
?>
|
45 |
+
<?php if (count($_tierPrices) > 0): ?>
|
46 |
+
<ul class="<?php echo ($this->getInGrouped() ? 'tier-prices-grouped product-pricing-grouped' : 'tier-prices product-pricing'); ?>">
|
47 |
+
<?php if ($this->getInGrouped()): ?>
|
48 |
+
<?php $_tierPrices = $this->getTierPrices($_product); ?>
|
49 |
+
<?php endif; ?>
|
50 |
+
<?php Mage::helper('weee')->processTierPrices($_product, $_tierPrices); ?>
|
51 |
+
<?php foreach ($_tierPrices as $_index => $_price): ?>
|
52 |
+
<li class="tier-price tier-<?php echo $_index; ?>">
|
53 |
+
<?php if ($_catalogHelper->canApplyMsrp($_product)): ?>
|
54 |
+
<?php if ($this->getInGrouped()): ?>
|
55 |
+
<?php echo $this->__('Buy %1$s for', $_price['price_qty']) ?>:
|
56 |
+
<?php else: ?>
|
57 |
+
<?php echo $this->__('Buy %1$s', $_price['price_qty']) ?>
|
58 |
+
<?php endif; ?>
|
59 |
+
<?php else: ?>
|
60 |
+
|
61 |
+
<?php if ($this->helper('tax')->displayBothPrices()): ?>
|
62 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
|
63 |
+
<?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price_incl_weee_only'], $_price['formated_price_incl_weee']) ?>
|
64 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
|
65 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
|
66 |
+
<?php if ($_weeeTaxAttributes): ?>
|
67 |
+
(<small>
|
68 |
+
<?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
|
69 |
+
<?php $separator = ' + '; foreach ($_weeeTaxAttributes as $_attribute): ?>
|
70 |
+
<?php echo $separator; ?>
|
71 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
|
72 |
+
<?php endforeach; ?>
|
73 |
+
</small>)
|
74 |
+
<?php endif; ?>
|
75 |
+
<?php echo $this->__('each') ?>
|
76 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
|
77 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
|
78 |
+
<?php if ($_weeeTaxAttributes): ?>
|
79 |
+
(<small>
|
80 |
+
<?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
|
81 |
+
<?php $separator = ' + '; foreach ($_weeeTaxAttributes as $_attribute): ?>
|
82 |
+
<?php echo $separator; ?>
|
83 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
|
84 |
+
<?php endforeach; ?>
|
85 |
+
</small>)
|
86 |
+
<?php endif; ?>
|
87 |
+
<?php echo $this->__('each') ?>
|
88 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
|
89 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
|
90 |
+
<?php if ($_weeeTaxAttributes): ?>
|
91 |
+
(<small>
|
92 |
+
<?php foreach ($_weeeTaxAttributes as $_attribute): ?>
|
93 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
|
94 |
+
<?php endforeach; ?>
|
95 |
+
<?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee']); ?>
|
96 |
+
</small>)
|
97 |
+
<?php endif; ?>
|
98 |
+
<?php echo $this->__('each') ?>
|
99 |
+
<?php else: ?>
|
100 |
+
<?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price'], $_price['formated_price_incl_tax']) ?>
|
101 |
+
<?php endif; ?>
|
102 |
+
<?php else: ?>
|
103 |
+
<?php if ($this->helper('tax')->displayPriceIncludingTax()): ?>
|
104 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
|
105 |
+
<?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee']) ?>
|
106 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
|
107 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
|
108 |
+
<?php if ($_weeeTaxAttributes): ?>
|
109 |
+
(<small>
|
110 |
+
<?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
|
111 |
+
<?php echo $separator; ?>
|
112 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
|
113 |
+
<?php $separator = ' + '; endforeach; ?>
|
114 |
+
</small>)
|
115 |
+
<?php endif; ?>
|
116 |
+
<?php echo $this->__('each') ?>
|
117 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
|
118 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
|
119 |
+
<?php if ($_weeeTaxAttributes): ?>
|
120 |
+
(<small>
|
121 |
+
<?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
|
122 |
+
<?php echo $separator; ?>
|
123 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
|
124 |
+
<?php $separator = ' + '; endforeach; ?>
|
125 |
+
</small>)
|
126 |
+
<?php endif; ?>
|
127 |
+
<?php echo $this->__('each') ?>
|
128 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
|
129 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_tax']); ?>
|
130 |
+
<?php if ($_weeeTaxAttributes): ?>
|
131 |
+
(<small>
|
132 |
+
<?php foreach ($_weeeTaxAttributes as $_attribute): ?>
|
133 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
|
134 |
+
<?php endforeach; ?>
|
135 |
+
<?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee']); ?>
|
136 |
+
</small>)
|
137 |
+
<?php endif; ?>
|
138 |
+
<?php echo $this->__('each') ?>
|
139 |
+
<?php else: ?>
|
140 |
+
<?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_tax']) ?>
|
141 |
+
<?php endif; ?>
|
142 |
+
<?php else: ?>
|
143 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
|
144 |
+
<?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee_only']) ?>
|
145 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
|
146 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
|
147 |
+
<?php if ($_weeeTaxAttributes): ?>
|
148 |
+
(<small>
|
149 |
+
<?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
|
150 |
+
<?php echo $separator; ?>
|
151 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
|
152 |
+
<?php $separator = ' + '; endforeach; ?>
|
153 |
+
</small>)
|
154 |
+
<?php endif; ?>
|
155 |
+
<?php echo $this->__('each') ?>
|
156 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
|
157 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
|
158 |
+
<?php if ($_weeeTaxAttributes): ?>
|
159 |
+
(<small>
|
160 |
+
<?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
|
161 |
+
<?php echo $separator; ?>
|
162 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
|
163 |
+
<?php $separator = ' + '; endforeach; ?>
|
164 |
+
</small>)
|
165 |
+
<?php endif; ?>
|
166 |
+
<?php echo $this->__('each') ?>
|
167 |
+
<?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
|
168 |
+
<?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
|
169 |
+
<?php if ($_weeeTaxAttributes): ?>
|
170 |
+
(<small>
|
171 |
+
<?php foreach ($_weeeTaxAttributes as $_attribute): ?>
|
172 |
+
<?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
|
173 |
+
<?php endforeach; ?>
|
174 |
+
<?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee_only']); ?>
|
175 |
+
</small>)
|
176 |
+
<?php endif; ?>
|
177 |
+
<?php echo $this->__('each') ?>
|
178 |
+
<?php else: ?>
|
179 |
+
<?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price']) ?>
|
180 |
+
<?php endif; ?>
|
181 |
+
<?php endif; ?>
|
182 |
+
<?php endif; ?>
|
183 |
+
|
184 |
+
<?php endif; // Can apply MSRP ?>
|
185 |
+
|
186 |
+
<?php if (!$this->getInGrouped()): ?>
|
187 |
+
<?php if(($_product->getPrice() == $_product->getFinalPrice() && $_product->getPrice() > $_price['price'])
|
188 |
+
|| ($_product->getPrice() != $_product->getFinalPrice() && $_product->getFinalPrice() > $_price['price'])): ?>
|
189 |
+
<?php echo $this->__('and') ?> <strong class="benefit"><?php echo $this->__('save')?> <span class="percent tier-<?php echo $_index;?>"><?php echo $_price['savePercent']?></span>%
|
190 |
+
<?php endif ?></strong>
|
191 |
+
<?php endif; ?>
|
192 |
+
|
193 |
+
<?php if ($_catalogHelper->isShowPriceOnGesture($_product)):?>
|
194 |
+
<?php $popupId = 'msrp-popup-' . $_product->getId() . $this->helper('core')->getRandomString(20); ?>
|
195 |
+
<a href="#" id="<?php echo($popupId);?>"><?php echo $this->__('Click for price'); ?></a>
|
196 |
+
<script type="text/javascript">
|
197 |
+
<?php
|
198 |
+
$addToCartUrl = $this->getProduct()->isSalable()
|
199 |
+
? $this->getAddToCartUrl($_product, array('qty' => $_price['price_qty']))
|
200 |
+
: '';
|
201 |
+
?>
|
202 |
+
<?php if (!$this->getInGrouped()): ?>
|
203 |
+
var newLink = {
|
204 |
+
url: "<?php echo $addToCartUrl; ?>",
|
205 |
+
qty: "<?php echo $_price['price_qty']?>"
|
206 |
+
};
|
207 |
+
<?php else: ?>
|
208 |
+
var newLink = {
|
209 |
+
url: "<?php echo $addToCartUrl; ?>",
|
210 |
+
notUseForm: true
|
211 |
+
};
|
212 |
+
<?php endif ?>
|
213 |
+
Catalog.Map.addHelpLink(
|
214 |
+
$('<?php echo $popupId ?>'),
|
215 |
+
"<?php echo $_product->getName() ?>",
|
216 |
+
<?php echo json_encode($_price['real_price_html']) ?>,
|
217 |
+
"<?php echo $this->helper('core')->currency($_product->getMsrp(),true,false) ?>",
|
218 |
+
newLink
|
219 |
+
);
|
220 |
+
</script>
|
221 |
+
<?php else: ?>
|
222 |
+
<span class="msrp-price-hide-message">
|
223 |
+
<?php echo $_catalogHelper->getMsrpPriceMessage($_product) ?>
|
224 |
+
</span>
|
225 |
+
<?php endif; ?>
|
226 |
+
|
227 |
+
|
228 |
+
</li>
|
229 |
+
|
230 |
+
<?php endforeach ?>
|
231 |
+
</ul>
|
232 |
+
<?php endif;?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/configurable.phtml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @deprecated after 1.4.1.0 in favor of default.phtml
|
30 |
+
*/
|
31 |
+
?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/default.phtml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php /* @var $this Mage_Catalog_Block_Product_View_Abstract */?>
|
28 |
+
<?php $_product = $this->getProduct() ?>
|
29 |
+
|
30 |
+
<?php if ($_product->isAvailable()): ?>
|
31 |
+
<p class="availability in-stock"><?php echo $this->__('Availability:') ?> <span><?php echo $this->__('In stock') ?></span></p>
|
32 |
+
<?php else: ?>
|
33 |
+
<p class="availability out-of-stock"><?php echo $this->__('Availability:') ?> <span><?php echo $this->__('Out of stock') ?></span></p>
|
34 |
+
<?php endif; ?>
|
35 |
+
<?php echo $this->getChildHtml('product_type_data_extra') ?>
|
36 |
+
<?php echo $this->getPriceHtml($_product) ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/grouped.phtml
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Grouped product data template
|
29 |
+
*
|
30 |
+
* @see Mage_Catalog_Block_Product_View_Media
|
31 |
+
* @see Mage_Catalog_Block_Product_View_Type_Grouped
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php $this->setPreconfiguredValue(); ?>
|
35 |
+
<?php $_product = $this->getProduct(); ?>
|
36 |
+
<?php $_associatedProducts = $this->getAssociatedProducts(); ?>
|
37 |
+
<?php $_hasAssociatedProducts = count($_associatedProducts) > 0; ?>
|
38 |
+
<?php $showAvailability = version_compare(Mage::getVersion(), '1.8', '<') ?: $this->displayProductStockStatus(); ?>
|
39 |
+
<?php if ($showAvailability): ?>
|
40 |
+
<?php if ($_product->isAvailable() && $_hasAssociatedProducts): ?>
|
41 |
+
<p class="availability in-stock"><?php echo $this->__('Availability:') ?> <span><?php echo $this->__('In stock') ?></span></p>
|
42 |
+
<?php else: ?>
|
43 |
+
<p class="availability out-of-stock"><?php echo $this->__('Availability:') ?> <span><?php echo $this->__('Out of stock') ?></span></p>
|
44 |
+
<?php endif; ?>
|
45 |
+
<?php endif; ?>
|
46 |
+
<?php echo $this->getChildHtml('product_type_data_extra') ?>
|
47 |
+
<table class="data-table grouped-items-table" id="super-product-table">
|
48 |
+
<col width="50%" />
|
49 |
+
<col width="30%" />
|
50 |
+
<col width="20%" />
|
51 |
+
<thead>
|
52 |
+
<tr>
|
53 |
+
<th><?php echo $this->__('Product Name') ?></th>
|
54 |
+
<?php if ($this->getCanShowProductPrice($_product)): ?>
|
55 |
+
<th class="a-right"><?php echo $this->__('Price') ?></th>
|
56 |
+
<?php endif; ?>
|
57 |
+
<?php if ($_product->isSaleable()): ?>
|
58 |
+
<th class="a-center"><?php echo $this->__('Qty') ?></th>
|
59 |
+
<?php endif; ?>
|
60 |
+
</tr>
|
61 |
+
</thead>
|
62 |
+
<tbody>
|
63 |
+
<?php if ($_hasAssociatedProducts): ?>
|
64 |
+
<?php foreach ($_associatedProducts as $_item): ?>
|
65 |
+
<?php $_finalPriceInclTax = $this->helper('tax')->getPrice($_item, $_item->getFinalPrice(), true) ?>
|
66 |
+
<tr>
|
67 |
+
<td class="v-middle"><?php echo $this->escapeHtml($_item->getName()) ?></td>
|
68 |
+
<?php if ($this->getCanShowProductPrice($_product)): ?>
|
69 |
+
<td class="a-right v-middle">
|
70 |
+
<?php if ($this->getCanShowProductPrice($_item)): ?>
|
71 |
+
<?php echo $this->getPriceHtml($_item, true) ?>
|
72 |
+
<?php echo $this->getTierPriceHtml($_item) ?>
|
73 |
+
<?php endif; ?>
|
74 |
+
</td>
|
75 |
+
<?php endif; ?>
|
76 |
+
<?php if ($_product->isSaleable()): ?>
|
77 |
+
<td class="a-center v-middle">
|
78 |
+
<?php if ($_item->isSaleable()) : ?>
|
79 |
+
<span class="qty-container">
|
80 |
+
<input type="text" name="super_group[<?php echo $_item->getId() ?>]" maxlength="12" value="<?php echo $_item->getQty()*1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
|
81 |
+
<i class="fa fa-angle-up"></i>
|
82 |
+
<i class="fa fa-angle-down"></i>
|
83 |
+
</span>
|
84 |
+
<?php else: ?>
|
85 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
86 |
+
<?php endif; ?>
|
87 |
+
</td>
|
88 |
+
<?php endif; ?>
|
89 |
+
</tr>
|
90 |
+
<?php endforeach; ?>
|
91 |
+
<?php else: ?>
|
92 |
+
<tr>
|
93 |
+
<td colspan="<?php if ($_product->isSaleable()): ?>4<?php else : ?>3<?php endif; ?>"><?php echo $this->__('No options of this product are available.') ?></td>
|
94 |
+
</tr>
|
95 |
+
<?php endif; ?>
|
96 |
+
</tbody>
|
97 |
+
</table>
|
98 |
+
<script type="text/javascript">decorateTable('super-product-table')</script>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/options/configurable.phtml
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php
|
29 |
+
$_product = $this->getProduct();
|
30 |
+
$_attributes = Mage::helper('core')->decorateArray($this->getAllowAttributes());
|
31 |
+
?>
|
32 |
+
<?php if ($_product->isSaleable() && count($_attributes)):?>
|
33 |
+
<dl>
|
34 |
+
<?php foreach($_attributes as $_attribute): ?>
|
35 |
+
<dt><label class="required"><em>*</em><?php echo $_attribute->getLabel() ?></label></dt>
|
36 |
+
<dd<?php if ($_attribute->decoratedIsLast){?> class="last"<?php }?>>
|
37 |
+
<div class="input-box">
|
38 |
+
<select name="super_attribute[<?php echo $_attribute->getAttributeId() ?>]" id="attribute<?php echo $_attribute->getAttributeId() ?>" class="required-entry super-attribute-select">
|
39 |
+
<option><?php echo $this->__('Choose an Option...') ?></option>
|
40 |
+
</select>
|
41 |
+
</div>
|
42 |
+
</dd>
|
43 |
+
<?php endforeach; ?>
|
44 |
+
</dl>
|
45 |
+
<script type="text/javascript">
|
46 |
+
var spConfig = new Product.Config(<?php echo $this->getJsonConfig() ?>);
|
47 |
+
</script>
|
48 |
+
<?php endif;?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/simple.phtml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @deprecated after 1.4.1.0 in favor of default.phtml
|
30 |
+
*/
|
31 |
+
?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/view/type/virtual.phtml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @deprecated after 1.4.1.0 in favor of default.phtml
|
30 |
+
*/
|
31 |
+
?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/link/link_block.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<span class="widget widget-product-link"><a <?php echo $this->getLinkAttributes() ?>><span><?php echo $this->escapeHtml($this->getAnchorText()) ?></span></a></span>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/link/link_inline.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<span class="widget widget-product-link-inline"><a <?php echo $this->getLinkAttributes() ?>><span><?php echo $this->escapeHtml($this->getAnchorText()) ?></span></a></span>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/column/new_default_list.phtml
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
|
28 |
+
<div class="widget widget-new-products">
|
29 |
+
<div class="block block-products">
|
30 |
+
<div class="block-title">
|
31 |
+
<strong><span><?php echo $this->__('New Products') ?></span></strong>
|
32 |
+
</div>
|
33 |
+
<div class="block-content">
|
34 |
+
<?php echo $this->getPagerHtml() ?>
|
35 |
+
<?php $suffix = $this->getNameInLayout(); ?>
|
36 |
+
<ol class="mini-products-list" id="widget-new-products-<?php echo $suffix; ?>">
|
37 |
+
<?php foreach ($_products->getItems() as $_product): ?>
|
38 |
+
<li class="item">
|
39 |
+
<a class="product-image" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'thumbnail')->resize(50) ?>" width="50" height="50" alt="<?php echo $this->stripTags($_product->getName(), null, true) ?>" /></a>
|
40 |
+
<div class="product-details">
|
41 |
+
<p class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>)"><?php echo $this->helper('catalog/output')->productAttribute($_product, $_product->getName() , 'name') ?></a></p>
|
42 |
+
<?php echo $this->getPriceHtml($_product, true, '-widget-new-'.$suffix) ?>
|
43 |
+
<?php if ($_product->getIsSalable()): ?>
|
44 |
+
<a href="<?php echo $this->getAddToCartUrl($_product) ?>" class="link-cart"><?php echo $this->__('Add to Cart') ?></a>
|
45 |
+
<?php else: ?>
|
46 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
47 |
+
<?php endif; ?>
|
48 |
+
</div>
|
49 |
+
</li>
|
50 |
+
<?php endforeach; ?>
|
51 |
+
</ol>
|
52 |
+
<script type="text/javascript">decorateList('widget-new-products-<?php echo $suffix; ?>', 'none-recursive')</script>
|
53 |
+
</div>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/column/new_images_list.phtml
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
|
28 |
+
<div class="widget widget-new-products">
|
29 |
+
<div class="block block-list">
|
30 |
+
<div class="block-title">
|
31 |
+
<strong><span><?php echo $this->__('New Products') ?></span></strong>
|
32 |
+
</div>
|
33 |
+
<div class="block-content">
|
34 |
+
<?php echo $this->getPagerHtml() ?>
|
35 |
+
<?php $suffix = $this->getNameInLayout(); ?>
|
36 |
+
<ol class="mini-products-images-list" id="widget-new-products-<?php echo $suffix; ?>">
|
37 |
+
<?php foreach ($_products->getItems() as $_product): ?>
|
38 |
+
<li class="item">
|
39 |
+
<a class="product-image" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(76) ?>" width="76" height="76" alt="<?php echo $this->stripTags($_product->getName(), null, true) ?>" /></a>
|
40 |
+
</li>
|
41 |
+
<?php endforeach; ?>
|
42 |
+
</ol>
|
43 |
+
<script type="text/javascript">decorateList('widget-new-products-<?php echo $suffix; ?>', 'none-recursive')</script>
|
44 |
+
</div>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/column/new_names_list.phtml
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
|
28 |
+
<div class="widget widget-new-products">
|
29 |
+
<div class="block block-list">
|
30 |
+
<div class="block-title">
|
31 |
+
<strong><span><?php echo $this->__('New Products') ?></span></strong>
|
32 |
+
</div>
|
33 |
+
<div class="block-content">
|
34 |
+
<?php echo $this->getPagerHtml() ?>
|
35 |
+
<?php $suffix = $this->getNameInLayout(); ?>
|
36 |
+
<ol id="widget-new-products-<?php echo $suffix; ?>">
|
37 |
+
<?php foreach ($_products->getItems() as $_product): ?>
|
38 |
+
<li class="item">
|
39 |
+
<p class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>)"><?php echo $this->helper('catalog/output')->productAttribute($_product, $_product->getName() , 'name') ?></a></p>
|
40 |
+
</li>
|
41 |
+
<?php endforeach; ?>
|
42 |
+
</ol>
|
43 |
+
<script type="text/javascript">decorateList('widget-new-products-<?php echo $suffix; ?>', 'none-recursive')</script>
|
44 |
+
</div>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/content/new_grid.phtml
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
|
28 |
+
<div class="widget widget-new-products">
|
29 |
+
<div class="widget-title">
|
30 |
+
<h2><?php echo $this->__('New Products') ?></h2>
|
31 |
+
</div>
|
32 |
+
<div class="widget-products">
|
33 |
+
<?php echo $this->getPagerHtml() ?>
|
34 |
+
<?php $_columnCount = $this->getColumnCount(); ?>
|
35 |
+
<?php $i=0; foreach ($_products->getItems() as $_product): ?>
|
36 |
+
<?php if ($i++%$_columnCount==0): ?>
|
37 |
+
<ul class="products-grid">
|
38 |
+
<?php endif ?>
|
39 |
+
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
|
40 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(85) ?>" width="85" height="85" alt="<?php echo $this->stripTags($_product->getName(), null, true) ?>" /></a>
|
41 |
+
<h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>)"><?php echo $this->helper('catalog/output')->productAttribute($_product, $_product->getName() , 'name') ?></a></h3>
|
42 |
+
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
|
43 |
+
<?php echo $this->getPriceHtml($_product, true, '-widget-new-grid') ?>
|
44 |
+
<div class="actions">
|
45 |
+
<?php if ($_product->isSaleable()): ?>
|
46 |
+
<button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
|
47 |
+
<?php else: ?>
|
48 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
49 |
+
<?php endif; ?>
|
50 |
+
<ul class="add-to-links">
|
51 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
52 |
+
<li><a href="<?php echo $this->getAddToWishlistUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
53 |
+
<?php endif; ?>
|
54 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
55 |
+
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
56 |
+
<?php endif; ?>
|
57 |
+
</ul>
|
58 |
+
</div>
|
59 |
+
</li>
|
60 |
+
<?php if ($i%$_columnCount==0 || $i==count($_products)): ?>
|
61 |
+
</ul>
|
62 |
+
<?php endif ?>
|
63 |
+
<?php endforeach; ?>
|
64 |
+
</div>
|
65 |
+
</div>
|
66 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalog/product/widget/new/content/new_list.phtml
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
|
28 |
+
<div class="widget widget-new-products">
|
29 |
+
<div class="widget-title">
|
30 |
+
<h2><?php echo $this->__('New Products') ?></h2>
|
31 |
+
</div>
|
32 |
+
<div class="widget-products">
|
33 |
+
<?php echo $this->getPagerHtml() ?>
|
34 |
+
<ol class="products-list">
|
35 |
+
<?php $i=0; foreach ($_products->getItems() as $_product): ?>
|
36 |
+
<li class="item<?php echo (++$i == count($_products))?' last':''; ?>">
|
37 |
+
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(85) ?>" width="85" height="85" alt="<?php echo $this->stripTags($_product->getName(), null, true) ?>" /></a>
|
38 |
+
<div class="product-shop">
|
39 |
+
<div class="f-fix">
|
40 |
+
<h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>)"><?php echo $this->helper('catalog/output')->productAttribute($_product, $_product->getName() , 'name') ?></a></h3>
|
41 |
+
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
|
42 |
+
<?php echo $this->getPriceHtml($_product, true, '-widget-new-list') ?>
|
43 |
+
<?php if ($_product->isSaleable()): ?>
|
44 |
+
<button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
|
45 |
+
<?php else: ?>
|
46 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
47 |
+
<?php endif; ?>
|
48 |
+
<ul class="add-to-links">
|
49 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
50 |
+
<li><a href="<?php echo $this->getAddToWishlistUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
51 |
+
<?php endif; ?>
|
52 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
53 |
+
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
54 |
+
<?php endif; ?>
|
55 |
+
</ul>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</li>
|
59 |
+
<?php endforeach; ?>
|
60 |
+
</ol>
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalogsearch/form.mini.phtml
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
/* @var $this Mage_Core_Block_Template */
|
27 |
+
/* @var $catalogSearchHelper Mage_Catalogsearch_Helper_Data */
|
28 |
+
$catalogSearchHelper = $this->helper('catalogsearch');
|
29 |
+
?>
|
30 |
+
<form id="search_mini_form" action="<?php echo $catalogSearchHelper->getResultUrl() ?>" method="get">
|
31 |
+
<div class="form-search">
|
32 |
+
<label for="search"><?php echo $this->__('Search:') ?></label>
|
33 |
+
<input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
|
34 |
+
<button type="submit" title="<?php echo $this->__('Search') ?>" class="button"><span><span><?php echo $this->__('Search') ?></span></span></button>
|
35 |
+
<div id="search_autocomplete" class="search-autocomplete"></div>
|
36 |
+
<script type="text/javascript">
|
37 |
+
//<![CDATA[
|
38 |
+
var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search entire store here...') ?>');
|
39 |
+
searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
|
40 |
+
//]]>
|
41 |
+
</script>
|
42 |
+
</div>
|
43 |
+
</form>
|
app/design/frontend/modulesgarden/minimo/template/catalogsearch/result.phtml
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if($this->getResultCount()): ?>
|
28 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
29 |
+
<div class="page-title">
|
30 |
+
<?php if ($this->helper('rss/catalog')->getTagFeedUrl()): ?>
|
31 |
+
<a href="<?php echo $this->helper('rss/catalog')->getTagFeedUrl() ?>" class="nobr link-rss"><?php echo $this->__('Subscribe to Feed') ?></a>
|
32 |
+
<?php endif; ?>
|
33 |
+
<h1><?php echo ($this->getHeaderText() || $this->getHeaderText() === false) ? $this->getHeaderText() : $this->__("Search results for '%s'", $this->helper('catalogsearch')->getEscapedQueryText()) ?></h1>
|
34 |
+
</div>
|
35 |
+
<?php if ($messages = $this->getNoteMessages()):?>
|
36 |
+
<p class="note-msg">
|
37 |
+
<?php foreach ($messages as $message):?>
|
38 |
+
<?php echo $message?><br />
|
39 |
+
<?php endforeach;?>
|
40 |
+
</p>
|
41 |
+
<?php endif; ?>
|
42 |
+
<?php echo $this->getProductListHtml() ?>
|
43 |
+
<?php else: ?>
|
44 |
+
<div class="page-title">
|
45 |
+
<h1><?php echo ($this->getHeaderText() || $this->getHeaderText() === false) ? $this->getHeaderText() : $this->__("Search results for '%s'", $this->helper('catalogsearch')->getEscapedQueryText()) ?></h1>
|
46 |
+
</div>
|
47 |
+
<p class="note-msg">
|
48 |
+
<?php echo ($this->getNoResultText()) ? $this->getNoResultText() : $this->__('Your search returns no results.') ?>
|
49 |
+
<?php if ($messages = $this->getNoteMessages()):?>
|
50 |
+
<?php foreach ($messages as $message):?>
|
51 |
+
<br /><?php echo $message?>
|
52 |
+
<?php endforeach;?>
|
53 |
+
<?php endif; ?>
|
54 |
+
</p>
|
55 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/catalogsearch/term.phtml
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Popular Search Terms') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php if( sizeof($this->getTerms()) > 0 ): ?>
|
31 |
+
<ul class="tags-list">
|
32 |
+
<?php foreach ($this->getTerms() as $_term): ?>
|
33 |
+
<li><a href="<?php echo $this->getSearchUrl($_term) ?>" style="font-size:<?php echo $_term->getRatio()*70+75 ?>%;"><?php echo $this->escapeHtml($_term->getName()) ?></a></li>
|
34 |
+
<?php endforeach; ?>
|
35 |
+
</ul>
|
36 |
+
<?php else: ?>
|
37 |
+
<p class="note-msg"><?php echo $this->__('There are no search terms available.'); ?></p>
|
38 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart.phtml
ADDED
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Shopping cart template
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Cart
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<div class="cart">
|
35 |
+
<div class="page-title">
|
36 |
+
<h1><?php echo $this->__('Shopping Cart') ?></h1>
|
37 |
+
</div>
|
38 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
39 |
+
<?php echo $this->getChildHtml('form_before') ?>
|
40 |
+
<form action="<?php echo $this->getUrl('checkout/cart/updatePost') ?>" method="post">
|
41 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
42 |
+
<fieldset>
|
43 |
+
<table id="shopping-cart-table" class="data-table cart-table">
|
44 |
+
<col width="1" />
|
45 |
+
<col />
|
46 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
47 |
+
<col width="1" />
|
48 |
+
<?php endif; ?>
|
49 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
50 |
+
<col width="1" />
|
51 |
+
<?php endif; ?>
|
52 |
+
<col width="1" />
|
53 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
54 |
+
<col width="1" />
|
55 |
+
<?php endif; ?>
|
56 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
57 |
+
<col width="1" />
|
58 |
+
<?php endif; ?>
|
59 |
+
<col width="1" />
|
60 |
+
|
61 |
+
<?php $mergedCells = ($this->helper('tax')->displayCartBothPrices() ? 2 : 1); ?>
|
62 |
+
<thead>
|
63 |
+
<tr>
|
64 |
+
<th rowspan="<?php echo $mergedCells; ?>"> </th>
|
65 |
+
<th rowspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Product Name') ?></span></th>
|
66 |
+
<th class="a-center" colspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Unit Price') ?></span></th>
|
67 |
+
<th rowspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
|
68 |
+
<th class="a-center" colspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Subtotal') ?></th>
|
69 |
+
<th rowspan="<?php echo $mergedCells; ?>" style="min-width:135px;" class="a-center"><span class="nobr"><?php echo $this->__('Actions') ?></span></th>
|
70 |
+
</tr>
|
71 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
72 |
+
<tr>
|
73 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
74 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
75 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
76 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
77 |
+
</tr>
|
78 |
+
<?php endif; ?>
|
79 |
+
</thead>
|
80 |
+
<tfoot>
|
81 |
+
<tr>
|
82 |
+
<td colspan="50" class="a-right">
|
83 |
+
<?php if($this->getContinueShoppingUrl()): ?>
|
84 |
+
<button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button btn-continue" onclick="setLocation('<?php echo $this->getContinueShoppingUrl() ?>')"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
|
85 |
+
<?php endif; ?>
|
86 |
+
<button type="submit" name="update_cart_action" value="update_qty" title="<?php echo $this->__('Update Shopping Cart'); ?>" class="button btn-update"><span><span><?php echo $this->__('Update Shopping Cart'); ?></span></span></button>
|
87 |
+
<button type="submit" name="update_cart_action" value="empty_cart" title="<?php echo $this->__('Clear Shopping Cart'); ?>" class="button btn-empty" id="empty_cart_button"><span><span><?php echo $this->__('Clear Shopping Cart'); ?></span></span></button>
|
88 |
+
<!--[if lt IE 8]>
|
89 |
+
<input type="hidden" id="update_cart_action_container" />
|
90 |
+
<script type="text/javascript">
|
91 |
+
//<![CDATA[
|
92 |
+
Event.observe(window, 'load', function()
|
93 |
+
{
|
94 |
+
// Internet Explorer (lt 8) does not support value attribute in button elements
|
95 |
+
$emptyCartButton = $('empty_cart_button');
|
96 |
+
$cartActionContainer = $('update_cart_action_container');
|
97 |
+
if ($emptyCartButton && $cartActionContainer) {
|
98 |
+
Event.observe($emptyCartButton, 'click', function()
|
99 |
+
{
|
100 |
+
$emptyCartButton.setAttribute('name', 'update_cart_action_temp');
|
101 |
+
$cartActionContainer.setAttribute('name', 'update_cart_action');
|
102 |
+
$cartActionContainer.setValue('empty_cart');
|
103 |
+
});
|
104 |
+
}
|
105 |
+
|
106 |
+
});
|
107 |
+
//]]>
|
108 |
+
</script>
|
109 |
+
<![endif]-->
|
110 |
+
</td>
|
111 |
+
</tr>
|
112 |
+
</tfoot>
|
113 |
+
<tbody>
|
114 |
+
<?php foreach($this->getItems() as $_item): ?>
|
115 |
+
<?php echo $this->getItemHtml($_item) ?>
|
116 |
+
<?php endforeach ?>
|
117 |
+
</tbody>
|
118 |
+
</table>
|
119 |
+
<script type="text/javascript">decorateTable('shopping-cart-table')</script>
|
120 |
+
</fieldset>
|
121 |
+
</form>
|
122 |
+
<div class="totals">
|
123 |
+
<?php echo $this->getChildHtml('totals'); ?>
|
124 |
+
<?php if(!$this->hasError()): ?>
|
125 |
+
<ul class="checkout-types">
|
126 |
+
<?php foreach ($this->getMethods('methods') as $method): ?>
|
127 |
+
<?php if ($methodHtml = $this->getMethodHtml($method)): ?>
|
128 |
+
<li><?php echo $methodHtml; ?></li>
|
129 |
+
<?php endif; ?>
|
130 |
+
<?php endforeach; ?>
|
131 |
+
</ul>
|
132 |
+
<?php endif; ?>
|
133 |
+
</div>
|
134 |
+
<div class="cart-collaterals">
|
135 |
+
<div class="col2-set">
|
136 |
+
<div class="col-1">
|
137 |
+
<?php /* Extensions placeholder */ ?>
|
138 |
+
<?php echo $this->getChildHtml('checkout.cart.extra') ?>
|
139 |
+
<?php echo $this->getChildHtml('coupon') ?>
|
140 |
+
<?php if (!$this->getIsVirtual()): echo $this->getChildHtml('shipping'); endif; ?>
|
141 |
+
</div>
|
142 |
+
<div class="col-2">
|
143 |
+
<?php echo $this->getChildHtml('crosssell') ?>
|
144 |
+
</div>
|
145 |
+
<br class="clear"/>
|
146 |
+
</div>
|
147 |
+
</div>
|
148 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/coupon.phtml
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<form id="discount-coupon-form" action="<?php echo $this->getUrl('checkout/cart/couponPost') ?>" method="post">
|
28 |
+
<div class="discount">
|
29 |
+
<h2><?php echo $this->__('Discount Codes') ?></h2>
|
30 |
+
<div class="discount-form">
|
31 |
+
<label for="coupon_code"><?php echo $this->__('Enter your coupon code if you have one.') ?></label>
|
32 |
+
<input type="hidden" name="remove" id="remove-coupone" value="0" />
|
33 |
+
<div class="input-box">
|
34 |
+
<input class="input-text" id="coupon_code" name="coupon_code" value="<?php echo $this->escapeHtml($this->getCouponCode()) ?>" />
|
35 |
+
</div>
|
36 |
+
<div class="buttons-set">
|
37 |
+
<button type="button" title="<?php echo $this->__('Apply Coupon') ?>" class="button" onclick="discountForm.submit(false)" value="<?php echo $this->__('Apply Coupon') ?>"><span><span><?php echo $this->__('Apply Coupon') ?></span></span></button>
|
38 |
+
<?php if(strlen($this->getCouponCode())): ?>
|
39 |
+
<button type="button" title="<?php echo $this->__('Cancel Coupon') ?>" class="button" onclick="discountForm.submit(true)" value="<?php echo $this->__('Cancel Coupon') ?>"><span><span><?php echo $this->__('Cancel Coupon') ?></span></span></button>
|
40 |
+
<?php endif;?>
|
41 |
+
</div>
|
42 |
+
</div>
|
43 |
+
</div>
|
44 |
+
</form>
|
45 |
+
<script type="text/javascript">
|
46 |
+
//<![CDATA[
|
47 |
+
var discountForm = new VarienForm('discount-coupon-form');
|
48 |
+
discountForm.submit = function (isRemove) {
|
49 |
+
if (isRemove) {
|
50 |
+
$('coupon_code').removeClassName('required-entry');
|
51 |
+
$('remove-coupone').value = "1";
|
52 |
+
} else {
|
53 |
+
$('coupon_code').addClassName('required-entry');
|
54 |
+
$('remove-coupone').value = "0";
|
55 |
+
}
|
56 |
+
return VarienForm.prototype.submit.bind(discountForm)();
|
57 |
+
}
|
58 |
+
//]]>
|
59 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/crosssell.phtml
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Cart cross sell items template
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Cart_Crosssell
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php if($this->getItemCount()): ?>
|
35 |
+
<div class="crosssell">
|
36 |
+
<h2><?php echo $this->__('Based on your selection, you may be interested in the following items:') ?></h2>
|
37 |
+
<ul id="crosssell-products-list">
|
38 |
+
<?php foreach ($this->getItems() as $_item): ?>
|
39 |
+
<li class="item">
|
40 |
+
<a class="product-image" href="<?php echo $_item->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_item->getName()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(75); ?>" width="75" height="75" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" /></a>
|
41 |
+
<div class="product-details">
|
42 |
+
<h3 class="product-name"><a href="<?php echo $_item->getProductUrl() ?>"><?php echo $this->escapeHtml($_item->getName()) ?></a></h3>
|
43 |
+
<?php echo $this->getPriceHtml($_item, true) ?>
|
44 |
+
<button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_item) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
|
45 |
+
<ul class="add-to-links clearfix">
|
46 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
47 |
+
<li><a href="<?php echo $this->getAddToWishlistUrl($_item) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
48 |
+
<?php endif; ?>
|
49 |
+
<?php if($_compareUrl=$this->getAddToCompareUrl($_item)): ?>
|
50 |
+
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
51 |
+
<?php endif; ?>
|
52 |
+
</ul>
|
53 |
+
</div>
|
54 |
+
</li>
|
55 |
+
<?php endforeach; ?>
|
56 |
+
</ul>
|
57 |
+
<script type="text/javascript">decorateList('crosssell-products-list', 'none-recursive')</script>
|
58 |
+
</div>
|
59 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/item/configure/updatecart.phtml
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php $_product = $this->getProduct(); ?>
|
29 |
+
<?php $buttonTitle = $this->__('Update Cart'); ?>
|
30 |
+
<?php if ($_product->isSaleable()): ?>
|
31 |
+
<div class="add-to-cart">
|
32 |
+
<?php if (!$_product->isGrouped()): ?>
|
33 |
+
<label for="qty"><?php echo $this->__('Qty:') ?></label>
|
34 |
+
<span class="qty-container">
|
35 |
+
<input type="text" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
|
36 |
+
<i class="fa fa-angle-up"></i>
|
37 |
+
<i class="fa fa-angle-down"></i>
|
38 |
+
</span>
|
39 |
+
<?php endif; ?>
|
40 |
+
<button type="button" title="<?php echo $buttonTitle ?>" class="button_green btn_cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
|
41 |
+
<?php echo $this->getChildHtml('', true, true) ?>
|
42 |
+
</div>
|
43 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/item/default.phtml
ADDED
@@ -0,0 +1,285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
$_item = $this->getItem();
|
29 |
+
$isVisibleProduct = $_item->getProduct()->isVisibleInSiteVisibility();
|
30 |
+
$canApplyMsrp = Mage::helper('catalog')->canApplyMsrp($_item->getProduct(), Mage_Catalog_Model_Product_Attribute_Source_Msrp_Type::TYPE_BEFORE_ORDER_CONFIRM);
|
31 |
+
?>
|
32 |
+
<tr>
|
33 |
+
<td class="product-cart-image"><?php if ($this->hasProductUrl()):?><a href="<?php echo $this->getProductUrl() ?>" title="<?php echo $this->escapeHtml($this->getProductName()) ?>" class="product-image"><?php endif;?><img src="<?php echo $this->getProductThumbnail()->resize(250); ?>" width="250" height="250" alt="<?php echo $this->escapeHtml($this->getProductName()) ?>" /><?php if ($this->hasProductUrl()):?></a><?php endif;?></td>
|
34 |
+
<td class="cart-rwd-item">
|
35 |
+
<h2 class="product-name">
|
36 |
+
<?php if ($this->hasProductUrl()):?>
|
37 |
+
<a href="<?php echo $this->getProductUrl() ?>"><?php echo $this->escapeHtml($this->getProductName()) ?></a>
|
38 |
+
<?php else: ?>
|
39 |
+
<?php echo $this->escapeHtml($this->getProductName()) ?>
|
40 |
+
<?php endif; ?>
|
41 |
+
</h2>
|
42 |
+
<?php if ($_options = $this->getOptionList()):?>
|
43 |
+
<dl class="item-options">
|
44 |
+
<?php foreach ($_options as $_option) : ?>
|
45 |
+
<?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
|
46 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
47 |
+
<dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
|
48 |
+
<?php if (isset($_formatedOptionValue['full_view'])): ?>
|
49 |
+
<div class="truncated_full_value">
|
50 |
+
<dl class="item-options">
|
51 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
52 |
+
<dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
|
53 |
+
</dl>
|
54 |
+
</div>
|
55 |
+
<?php endif; ?>
|
56 |
+
</dd>
|
57 |
+
<?php endforeach; ?>
|
58 |
+
</dl>
|
59 |
+
<?php endif;?>
|
60 |
+
<?php if ($messages = $this->getMessages()): ?>
|
61 |
+
<?php foreach ($messages as $message): ?>
|
62 |
+
<p class="item-msg <?php echo $message['type'] ?>">* <?php echo $this->escapeHtml($message['text']) ?></p>
|
63 |
+
<?php endforeach; ?>
|
64 |
+
<?php endif; ?>
|
65 |
+
<?php $addInfoBlock = $this->getProductAdditionalInformationBlock(); ?>
|
66 |
+
<?php if ($addInfoBlock): ?>
|
67 |
+
<?php echo $addInfoBlock->setItem($_item)->toHtml() ?>
|
68 |
+
<?php endif;?>
|
69 |
+
</td>
|
70 |
+
|
71 |
+
<?php if ($canApplyMsrp): ?>
|
72 |
+
<td class="a-right cart-rwd-item"<?php if ($this->helper('tax')->displayCartBothPrices()): ?> colspan="2"<?php endif; ?>>
|
73 |
+
<span class="cart-price">
|
74 |
+
<span class="cart-msrp-unit"><?php echo $this->__('See price before order confirmation.'); ?></span>
|
75 |
+
<?php $helpLinkId = 'cart-msrp-help-' . $_item->getId(); ?>
|
76 |
+
<a id="<?php echo $helpLinkId ?>" href="#" class="map-help-link"><?php echo $this->__("What's this?"); ?></a>
|
77 |
+
<script type="text/javascript">
|
78 |
+
Catalog.Map.addHelpLink($('<?php echo $helpLinkId ?>'), "<?php echo $this->__("What's this?") ?>");
|
79 |
+
</script>
|
80 |
+
</span>
|
81 |
+
</td>
|
82 |
+
<?php else: ?>
|
83 |
+
|
84 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
85 |
+
<td class="a-right cart-rwd-item">
|
86 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
87 |
+
<span class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
88 |
+
<?php else: ?>
|
89 |
+
<span class="cart-price">
|
90 |
+
<?php endif; ?>
|
91 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
92 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>
|
93 |
+
<?php else: ?>
|
94 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
|
95 |
+
<?php endif; ?>
|
96 |
+
|
97 |
+
</span>
|
98 |
+
|
99 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
100 |
+
|
101 |
+
<div class="cart-tax-info" id="eunit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
|
102 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
103 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
104 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
|
105 |
+
<?php endforeach; ?>
|
106 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
107 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
108 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
|
109 |
+
<?php endforeach; ?>
|
110 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
111 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
112 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
|
113 |
+
<?php endforeach; ?>
|
114 |
+
<?php endif; ?>
|
115 |
+
</div>
|
116 |
+
|
117 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
118 |
+
<div class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
119 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>
|
120 |
+
</div>
|
121 |
+
<?php endif; ?>
|
122 |
+
<?php endif; ?>
|
123 |
+
</td>
|
124 |
+
<?php endif; ?><!-- inclusive price starts here -->
|
125 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
126 |
+
<td class="cart-rwd-item product-cart-price">
|
127 |
+
<?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
|
128 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
129 |
+
<span class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
130 |
+
<?php else: ?>
|
131 |
+
<span class="cart-price">
|
132 |
+
<?php endif; ?>
|
133 |
+
|
134 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
135 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?>
|
136 |
+
<?php else: ?>
|
137 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>
|
138 |
+
<?php endif; ?>
|
139 |
+
|
140 |
+
</span>
|
141 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
142 |
+
|
143 |
+
<div class="cart-tax-info" id="unit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
|
144 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
145 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
146 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
|
147 |
+
<?php endforeach; ?>
|
148 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
149 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
150 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
|
151 |
+
<?php endforeach; ?>
|
152 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
153 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
154 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
|
155 |
+
<?php endforeach; ?>
|
156 |
+
<?php endif; ?>
|
157 |
+
</div>
|
158 |
+
|
159 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
160 |
+
<div class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
161 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?></span>
|
162 |
+
</div>
|
163 |
+
<?php endif; ?>
|
164 |
+
<?php endif; ?>
|
165 |
+
</td>
|
166 |
+
<?php endif; ?>
|
167 |
+
<?php endif; ?>
|
168 |
+
<td class="a-center cart-rwd-item">
|
169 |
+
<span class="qty-container">
|
170 |
+
<input name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getQty() ?>" size="4" title="<?php echo $this->__('Qty') ?>" class="input-text qty" maxlength="12" />
|
171 |
+
<i class="fa fa-angle-up"></i>
|
172 |
+
<i class="fa fa-angle-down"></i>
|
173 |
+
</span>
|
174 |
+
</td>
|
175 |
+
|
176 |
+
<!--Sub total starts here -->
|
177 |
+
<?php if (($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()) && !$_item->getNoSubtotal()): ?>
|
178 |
+
<td class="a-right cart-rwd-item">
|
179 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
180 |
+
<span class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
181 |
+
<?php else: ?>
|
182 |
+
<span class="cart-price">
|
183 |
+
<?php endif; ?>
|
184 |
+
|
185 |
+
<?php if ($canApplyMsrp): ?>
|
186 |
+
<span class="cart-msrp-subtotal">--</span>
|
187 |
+
<?php else: ?>
|
188 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
189 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?>
|
190 |
+
<?php else: ?>
|
191 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
|
192 |
+
<?php endif; ?>
|
193 |
+
<?php endif; ?>
|
194 |
+
|
195 |
+
</span>
|
196 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
197 |
+
|
198 |
+
<div class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
|
199 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
200 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
201 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
|
202 |
+
<?php endforeach; ?>
|
203 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
204 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
205 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
|
206 |
+
<?php endforeach; ?>
|
207 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
208 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
209 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
|
210 |
+
<?php endforeach; ?>
|
211 |
+
<?php endif; ?>
|
212 |
+
</div>
|
213 |
+
|
214 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
215 |
+
<div class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
216 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?></span>
|
217 |
+
</div>
|
218 |
+
<?php endif; ?>
|
219 |
+
<?php endif; ?>
|
220 |
+
</td>
|
221 |
+
<?php endif; ?>
|
222 |
+
<?php if (($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()) && !$_item->getNoSubtotal()): ?>
|
223 |
+
<td class="cart-rwd-item product-cart-price">
|
224 |
+
<?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?>
|
225 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
226 |
+
<span class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
227 |
+
<?php else: ?>
|
228 |
+
<span class="cart-price">
|
229 |
+
<?php endif; ?>
|
230 |
+
|
231 |
+
<?php if ($canApplyMsrp): ?>
|
232 |
+
<span class="cart-msrp-subtotal">--</span>
|
233 |
+
<?php else: ?>
|
234 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
235 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?>
|
236 |
+
<?php else: ?>
|
237 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxRowDisposition()) ?>
|
238 |
+
<?php endif; ?>
|
239 |
+
<?php endif; ?>
|
240 |
+
|
241 |
+
</span>
|
242 |
+
|
243 |
+
|
244 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
245 |
+
|
246 |
+
<div class="cart-tax-info" id="subtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
|
247 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
248 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
249 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
|
250 |
+
<?php endforeach; ?>
|
251 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
252 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
253 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
|
254 |
+
<?php endforeach; ?>
|
255 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
256 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
257 |
+
<span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
|
258 |
+
<?php endforeach; ?>
|
259 |
+
<?php endif; ?>
|
260 |
+
</div>
|
261 |
+
|
262 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
263 |
+
<div class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
264 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?></span>
|
265 |
+
</div>
|
266 |
+
<?php endif; ?>
|
267 |
+
<?php endif; ?>
|
268 |
+
</td>
|
269 |
+
<?php endif; ?>
|
270 |
+
|
271 |
+
<td class="a-center cart-rwd-item">
|
272 |
+
<?php if ($isVisibleProduct): ?>
|
273 |
+
<a href="<?php echo $this->getConfigureUrl() ?>" title="<?php echo $this->__('Edit item parameters') ?>"><i class="fa fa-pencil-square-o"></i></a>
|
274 |
+
<?php endif ?>
|
275 |
+
|
276 |
+
<?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
|
277 |
+
|
278 |
+
<?php if ($isVisibleProduct): ?>
|
279 |
+
<a href="<?php echo $this->helper('wishlist')->getMoveFromCartUrl($_item->getId()); ?>" title="<?php echo $this->__('Add to wishlist') ?>" class="link-wishlist use-ajax"><i class="fa fa-heart"></i></a>
|
280 |
+
<?php endif ?>
|
281 |
+
|
282 |
+
<?php endif ?>
|
283 |
+
<a href="<?php echo $this->getDeleteUrl()?>" title="<?php echo $this->__('Remove item')?>" class="btn-remove-cart"><i class="fa fa-trash"></i></a>
|
284 |
+
</td>
|
285 |
+
</tr>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/noItems.phtml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Shopping Cart is Empty') ?></h1>
|
29 |
+
</div>
|
30 |
+
<div class="cart-empty">
|
31 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
32 |
+
<?php echo $this->getChildHtml('checkout_cart_empty_widget'); ?>
|
33 |
+
<p><?php echo $this->__('You have no items in your shopping cart.') ?></p>
|
34 |
+
<p><?php echo $this->__('Click <a href="%s">here</a> to continue shopping.', $this->getContinueShoppingUrl()) ?></p>
|
35 |
+
<?php echo $this->getChildHtml('shopping.cart.table.after'); ?>
|
36 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/render/default.phtml
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @deprecated after 1.4.0.0-alpha3
|
29 |
+
*/
|
30 |
+
?>
|
31 |
+
<?php $_item = $this->getItem() ?>
|
32 |
+
<tr>
|
33 |
+
<td class="a-center"><a href="<?php echo $this->getItemDeleteUrl($_item) ?>" title="<?php echo $this->__('Remove Item')?>" class="btn-remove2"></a></td>
|
34 |
+
<td><a href="<?php echo $this->getItemUrl($_item) ?>" title="<?php echo $this->escapeHtml($this->getItemName($_item)) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($this->getItemProductForThumbnail($_item), 'thumbnail')->resize(75); ?>" width="75" alt="<?php echo $this->escapeHtml($this->getItemName($_item)) ?>" /></a></td>
|
35 |
+
<td>
|
36 |
+
<h3 class="product-name"><a href="<?php echo $this->getItemUrl($_item) ?>"><?php echo $this->getItemName($_item) ?></a></h3>
|
37 |
+
<?php echo $this->getItemDescription($_item) ?>
|
38 |
+
<?php if($_item->getMessage()): ?>
|
39 |
+
<p class="item-msg <?php if($_item->getHasError()): ?>error<?php else: ?>notice<?php endif; ?>">* <?php echo $_item->getMessage() ?></p>
|
40 |
+
<?php endif; ?>
|
41 |
+
</td>
|
42 |
+
<?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
|
43 |
+
<td class="a-center">
|
44 |
+
<a href="<?php echo $this->helper('wishlist')->getMoveFromCartUrl($_item->getId()); ?>" class="link-wishlist"><?php echo $this->__('Move'); ?></a>
|
45 |
+
</td>
|
46 |
+
<?php endif ?>
|
47 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
48 |
+
<td class="a-right">
|
49 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
|
50 |
+
</td>
|
51 |
+
<?php endif; ?>
|
52 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
53 |
+
<td class="a-right">
|
54 |
+
<?php echo $this->helper('checkout')->formatPrice($this->helper('checkout')->getPriceInclTax($_item)); ?>
|
55 |
+
</td>
|
56 |
+
<?php endif; ?>
|
57 |
+
<td class="a-center">
|
58 |
+
<span class="qty-container">
|
59 |
+
<input name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getItemQty($_item) ?>" size="4" class="input-text qty" maxlength="12" />
|
60 |
+
<i class="fa fa-angle-up"></i>
|
61 |
+
<i class="fa fa-angle-down"></i>
|
62 |
+
</span>
|
63 |
+
</td>
|
64 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
65 |
+
<td class="a-right">
|
66 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
|
67 |
+
</td>
|
68 |
+
<?php endif; ?>
|
69 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
70 |
+
<td class="a-right">
|
71 |
+
<?php echo $this->helper('checkout')->formatPrice($this->helper('checkout')->getSubtotalInclTax($_item)); ?>
|
72 |
+
</td>
|
73 |
+
<?php endif; ?>
|
74 |
+
</tr>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/render/simple.phtml
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @deprecated after 1.4.0.0-alpha3
|
29 |
+
*/
|
30 |
+
?>
|
31 |
+
<?php $_item = $this->getItem() ?>
|
32 |
+
<tr>
|
33 |
+
<td class="a-center"><a href="<?php echo $this->getItemDeleteUrl($_item) ?>" title="<?php echo $this->__('Remove Item')?>" class="btn-remove2"><?php echo $this->__('Remove Item')?></a></td>
|
34 |
+
<td><a href="<?php echo $this->getItemUrl($_item) ?>" title="<?php echo $this->escapeHtml($this->getItemName($_item)) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($this->getItemProductForThumbnail($_item), 'thumbnail')->resize(250); ?>" width="250" height="250" alt="<?php echo $this->escapeHtml($this->getItemName($_item)) ?>" /></a></td>
|
35 |
+
<td>
|
36 |
+
<h3 class="product-name"><a href="<?php echo $this->getItemUrl($_item) ?>"><?php echo $this->getItemName($_item) ?></a></h3>
|
37 |
+
<?php echo $this->getItemDescription($_item) ?>
|
38 |
+
<?php if($_item->getMessage()): ?>
|
39 |
+
<p class="item-msg <?php if($_item->getHasError()): ?>error<?php else: ?>notice<?php endif; ?>">* <?php echo $_item->getMessage() ?></p>
|
40 |
+
<?php endif; ?>
|
41 |
+
</td>
|
42 |
+
<?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
|
43 |
+
<td class="a-center">
|
44 |
+
<a href="<?php echo $this->helper('wishlist')->getMoveFromCartUrl($_item->getId()); ?>" class="link-wishlist"><?php echo $this->__('Move'); ?></a>
|
45 |
+
</td>
|
46 |
+
<?php endif ?>
|
47 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
48 |
+
<td class="a-right">
|
49 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
|
50 |
+
</td>
|
51 |
+
<?php endif; ?>
|
52 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
53 |
+
<td class="a-right">
|
54 |
+
<?php echo $this->helper('checkout')->formatPrice($this->helper('checkout')->getPriceInclTax($_item)); ?>
|
55 |
+
</td>
|
56 |
+
<?php endif; ?>
|
57 |
+
<td class="a-center">
|
58 |
+
<span class="qty-container">
|
59 |
+
<input name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getItemQty($_item) ?>" size="4" class="input-text qty" maxlength="12" />
|
60 |
+
<i class="fa fa-angle-up"></i>
|
61 |
+
<i class="fa fa-angle-down"></i>
|
62 |
+
</span>
|
63 |
+
</td>
|
64 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
65 |
+
<td class="a-right">
|
66 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
|
67 |
+
</td>
|
68 |
+
<?php endif; ?>
|
69 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
70 |
+
<td class="a-right">
|
71 |
+
<?php echo $this->helper('checkout')->formatPrice($this->helper('checkout')->getSubtotalInclTax($_item)); ?>
|
72 |
+
</td>
|
73 |
+
<?php endif; ?>
|
74 |
+
</tr>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/shipping.phtml
ADDED
@@ -0,0 +1,139 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php /** @var $this Mage_Checkout_Block_Cart_Shipping */ ?>
|
28 |
+
<div class="shipping">
|
29 |
+
<h2><?php echo $this->__('Estimate Shipping and Tax') ?></h2>
|
30 |
+
<div class="shipping-form">
|
31 |
+
<form action="<?php echo $this->getUrl('checkout/cart/estimatePost') ?>" method="post" id="shipping-zip-form">
|
32 |
+
<p><?php echo $this->__('Enter your destination to get a shipping estimate.') ?></p>
|
33 |
+
<ul class="form-list">
|
34 |
+
<li>
|
35 |
+
<label for="country" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
|
36 |
+
<div class="input-box">
|
37 |
+
<?php echo Mage::getBlockSingleton('directory/data')->getCountryHtmlSelect($this->getEstimateCountryId()) ?>
|
38 |
+
</div>
|
39 |
+
</li>
|
40 |
+
<?php //if($this->getStateActive()): ?>
|
41 |
+
<li>
|
42 |
+
<label for="region_id"<?php if ($this->isStateProvinceRequired()) echo ' class="required"' ?>><?php if ($this->isStateProvinceRequired()) echo '<em>*</em>' ?><?php echo $this->__('State/Province') ?></label>
|
43 |
+
<div class="input-box">
|
44 |
+
<select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" style="display:none;"<?php echo ($this->isStateProvinceRequired() ? ' class="validate-select"' : '') ?>>
|
45 |
+
<option value=""><?php echo $this->__('Please select region, state or province') ?></option>
|
46 |
+
</select>
|
47 |
+
<script type="text/javascript">
|
48 |
+
//<![CDATA[
|
49 |
+
$('region_id').setAttribute('defaultValue', "<?php echo $this->getEstimateRegionId() ?>");
|
50 |
+
//]]>
|
51 |
+
</script>
|
52 |
+
<input type="text" id="region" name="region" value="<?php echo $this->escapeHtml($this->getEstimateRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text" style="display:none;" />
|
53 |
+
</div>
|
54 |
+
</li>
|
55 |
+
<?php //endif; ?>
|
56 |
+
<?php if($this->getCityActive()): ?>
|
57 |
+
<li>
|
58 |
+
<label for="city"<?php if ($this->isCityRequired()) echo ' class="required"' ?>><?php if ($this->isCityRequired()) echo '<em>*</em>' ?><?php echo $this->__('City') ?></label>
|
59 |
+
<div class="input-box">
|
60 |
+
<input class="input-text<?php if ($this->isCityRequired()):?> required-entry<?php endif;?>" id="city" type="text" name="estimate_city" value="<?php echo $this->escapeHtml($this->getEstimateCity()) ?>" />
|
61 |
+
</div>
|
62 |
+
</li>
|
63 |
+
<?php endif; ?>
|
64 |
+
<li>
|
65 |
+
<label for="postcode"<?php if ($this->isZipCodeRequired()) echo ' class="required"' ?>><?php if ($this->isZipCodeRequired()) echo '<em>*</em>' ?><?php echo $this->__('Zip/Postal Code') ?></label>
|
66 |
+
<div class="input-box">
|
67 |
+
<input class="input-text validate-postcode<?php if ($this->isZipCodeRequired()):?> required-entry<?php endif;?>" type="text" id="postcode" name="estimate_postcode" value="<?php echo $this->escapeHtml($this->getEstimatePostcode()) ?>" />
|
68 |
+
</div>
|
69 |
+
</li>
|
70 |
+
</ul>
|
71 |
+
<div class="buttons-set">
|
72 |
+
<button type="button" title="<?php echo $this->__('Get a Quote') ?>" onclick="coShippingMethodForm.submit()" class="button"><span><span><?php echo $this->__('Get a Quote') ?></span></span></button>
|
73 |
+
</div>
|
74 |
+
</form>
|
75 |
+
<script type="text/javascript">
|
76 |
+
//<![CDATA[
|
77 |
+
new RegionUpdater('country', 'region', 'region_id', <?php echo $this->helper('directory')->getRegionJson() ?>);
|
78 |
+
//]]>
|
79 |
+
</script>
|
80 |
+
|
81 |
+
<?php if (($_shippingRateGroups = $this->getEstimateRates())): ?>
|
82 |
+
<form id="co-shipping-method-form" action="<?php echo $this->getUrl('checkout/cart/estimateUpdatePost') ?>">
|
83 |
+
<dl class="sp-methods">
|
84 |
+
<?php foreach ($_shippingRateGroups as $code => $_rates): ?>
|
85 |
+
<dt><?php echo $this->escapeHtml($this->getCarrierName($code)) ?></dt>
|
86 |
+
<dd>
|
87 |
+
<ul>
|
88 |
+
<?php foreach ($_rates as $_rate): ?>
|
89 |
+
<li<?php if ($_rate->getErrorMessage()) echo ' class="error-msg"';?>>
|
90 |
+
<?php if ($_rate->getErrorMessage()): ?>
|
91 |
+
<?php echo $this->escapeHtml($_rate->getErrorMessage()) ?>
|
92 |
+
<?php else: ?>
|
93 |
+
<input name="estimate_method" type="radio" value="<?php echo $this->escapeHtml($_rate->getCode()) ?>" id="s_method_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio" />
|
94 |
+
<label for="s_method_<?php echo $_rate->getCode() ?>"><?php echo $this->escapeHtml($_rate->getMethodTitle()) ?>
|
95 |
+
<?php $_excl = $this->getShippingPrice($_rate->getPrice(), $this->helper('tax')->displayShippingPriceIncludingTax()); ?>
|
96 |
+
<?php $_incl = $this->getShippingPrice($_rate->getPrice(), true); ?>
|
97 |
+
<?php echo $_excl; ?>
|
98 |
+
<?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
|
99 |
+
(<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
|
100 |
+
<?php endif; ?>
|
101 |
+
</label>
|
102 |
+
<?php endif ?>
|
103 |
+
</li>
|
104 |
+
<?php endforeach; ?>
|
105 |
+
</ul>
|
106 |
+
</dd>
|
107 |
+
<?php endforeach; ?>
|
108 |
+
</dl>
|
109 |
+
<div class="buttons-set">
|
110 |
+
<button type="submit" title="<?php echo $this->__('Update Total') ?>" class="button" name="do" value="<?php echo $this->__('Update Total') ?>"><span><span><?php echo $this->__('Update Total') ?></span></span></button>
|
111 |
+
</div>
|
112 |
+
</form>
|
113 |
+
<?php endif; ?>
|
114 |
+
<script type="text/javascript">
|
115 |
+
//<![CDATA[
|
116 |
+
var coShippingMethodForm = new VarienForm('shipping-zip-form');
|
117 |
+
var countriesWithOptionalZip = <?php echo $this->helper('directory')->getCountriesWithOptionalZip(true) ?>;
|
118 |
+
|
119 |
+
coShippingMethodForm.submit = function () {
|
120 |
+
var country = $F('country');
|
121 |
+
var optionalZip = false;
|
122 |
+
|
123 |
+
for (i=0; i < countriesWithOptionalZip.length; i++) {
|
124 |
+
if (countriesWithOptionalZip[i] == country) {
|
125 |
+
optionalZip = true;
|
126 |
+
}
|
127 |
+
}
|
128 |
+
if (optionalZip) {
|
129 |
+
$('postcode').removeClassName('required-entry');
|
130 |
+
}
|
131 |
+
else {
|
132 |
+
$('postcode').addClassName('required-entry');
|
133 |
+
}
|
134 |
+
return VarienForm.prototype.submit.bind(coShippingMethodForm)();
|
135 |
+
}
|
136 |
+
//]]>
|
137 |
+
</script>
|
138 |
+
</div>
|
139 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/sidebar.phtml
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Shoping cart sidebar
|
29 |
+
*
|
30 |
+
* @see Mage_Checkout_Block_Cart_Sidebar
|
31 |
+
*/
|
32 |
+
|
33 |
+
?>
|
34 |
+
<?php if ($this->getIsNeedToDisplaySideBar()):?>
|
35 |
+
<div class="block block-cart">
|
36 |
+
<?php $_cartQty = $this->getSummaryCount() ?>
|
37 |
+
<div class="block-title">
|
38 |
+
<strong><span><?php echo $this->__('My Cart') ?></span></strong>
|
39 |
+
</div>
|
40 |
+
<div class="block-content">
|
41 |
+
<?php if ($_cartQty>0): ?>
|
42 |
+
<div class="summary">
|
43 |
+
<?php if ($_cartQty==1): ?>
|
44 |
+
<p class="amount"><?php echo $this->__('There is <a href="%s">1 item</a> in your cart.', $this->getUrl('checkout/cart')) ?></p>
|
45 |
+
<?php else: ?>
|
46 |
+
<p class="amount"><?php echo $this->__('There are <a href="%s">%s items</a> in your cart.', $this->getUrl('checkout/cart'), $_cartQty) ?></p>
|
47 |
+
<?php endif ?>
|
48 |
+
<p class="subtotal">
|
49 |
+
<?php if ($this->canApplyMsrp()): ?>
|
50 |
+
<span class="map-cart-sidebar-total"><?php echo $this->__('ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER'); ?></span>
|
51 |
+
<?php else: ?>
|
52 |
+
<span class="label"><?php echo $this->__('Cart Subtotal:') ?></span> <?php echo Mage::helper('checkout')->formatPrice($this->getSubtotal()) ?>
|
53 |
+
<?php if ($_subtotalInclTax = $this->getSubtotalInclTax()): ?>
|
54 |
+
<br />(<?php echo Mage::helper('checkout')->formatPrice($_subtotalInclTax) ?> <?php echo Mage::helper('tax')->getIncExcText(true) ?>)
|
55 |
+
<?php endif; ?>
|
56 |
+
<?php endif; ?>
|
57 |
+
</p>
|
58 |
+
</div>
|
59 |
+
<?php endif ?>
|
60 |
+
<?php if($_cartQty && $this->isPossibleOnepageCheckout()): ?>
|
61 |
+
<div class="actions">
|
62 |
+
<?php echo $this->getChildHtml('extra_actions') ?>
|
63 |
+
<button type="button" title="<?php echo $this->__('Checkout') ?>" class="button_green" onclick="setLocation('<?php echo $this->getCheckoutUrl() ?>')"><span><span><?php echo $this->__('Checkout') ?></span></span></button>
|
64 |
+
</div>
|
65 |
+
<?php endif ?>
|
66 |
+
<?php $_items = $this->getRecentItems() ?>
|
67 |
+
<?php if(count($_items)): ?>
|
68 |
+
<p class="block-subtitle"><?php echo $this->__('Recently added item(s)') ?></p>
|
69 |
+
<ol id="cart-sidebar" class="mini-products-list">
|
70 |
+
<?php foreach($_items as $_item): ?>
|
71 |
+
<?php echo $this->getItemHtml($_item) ?>
|
72 |
+
<?php endforeach; ?>
|
73 |
+
</ol>
|
74 |
+
<script type="text/javascript">decorateList('cart-sidebar', 'none-recursive')</script>
|
75 |
+
<?php else: ?>
|
76 |
+
<p class="empty"><?php echo $this->__('You have no items in your shopping cart.') ?></p>
|
77 |
+
<?php endif ?>
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
<?php endif;?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/sidebar/default.phtml
ADDED
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
$_item = $this->getItem();
|
29 |
+
$isVisibleProduct = $_item->getProduct()->isVisibleInSiteVisibility();
|
30 |
+
$canApplyMsrp = Mage::helper('catalog')->canApplyMsrp($_item->getProduct(), Mage_Catalog_Model_Product_Attribute_Source_Msrp_Type::TYPE_BEFORE_ORDER_CONFIRM);
|
31 |
+
?>
|
32 |
+
<li class="item">
|
33 |
+
<?php if ($this->hasProductUrl()): ?>
|
34 |
+
<a href="<?php echo $this->getProductUrl()?>" title="<?php echo $this->escapeHtml($this->getProductName()) ?>" class="product-image"><img src="<?php echo $this->getProductThumbnail()->resize(50, 50)->setWatermarkSize('30x10'); ?>" width="50" height="50" alt="<?php echo $this->escapeHtml($this->getProductName()) ?>" /></a>
|
35 |
+
<?php else: ?>
|
36 |
+
<span class="product-image"><img src="<?php echo $this->getProductThumbnail()->resize(50, 50)->setWatermarkSize('30x10'); ?>" width="50" height="50" alt="<?php echo $this->escapeHtml($this->getProductName()) ?>" /></span>
|
37 |
+
<?php endif; ?>
|
38 |
+
<div class="product-details">
|
39 |
+
<a href="<?php echo $this->getDeleteUrl() ?>" title="<?php echo $this->__('Remove This Item') ?>" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the shopping cart?') ?>');" class="btn-remove"><?php echo $this->__('Remove This Item') ?></a>
|
40 |
+
<?php if ($isVisibleProduct): ?>
|
41 |
+
<a href="<?php echo $this->getConfigureUrl() ?>" title="<?php echo $this->__('Edit item') ?>" class="btn-edit"><?php echo $this->__('Edit item')?></a>
|
42 |
+
<?php endif ?>
|
43 |
+
<p class="product-name"><?php if ($this->hasProductUrl()): ?><a href="<?php echo $this->getProductUrl() ?>"><?php endif; ?><?php echo $this->escapeHtml($this->getProductName()) ?><?php if ($this->hasProductUrl()): ?></a><?php endif; ?></p>
|
44 |
+
<strong><?php echo $this->getQty() ?></strong> x
|
45 |
+
|
46 |
+
<?php if ($canApplyMsrp): ?>
|
47 |
+
|
48 |
+
<span class="map-cart-sidebar-item"><?php echo $this->__('See price before order confirmation.'); ?></span>
|
49 |
+
|
50 |
+
<?php else: ?>
|
51 |
+
|
52 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
53 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
54 |
+
<?php echo $this->__('Excl. Tax'); ?>:
|
55 |
+
<?php endif; ?>
|
56 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales')): ?>
|
57 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>
|
58 |
+
<?php else: ?>
|
59 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
|
60 |
+
<?php endif; ?>
|
61 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
62 |
+
<br />
|
63 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales')): ?>
|
64 |
+
<small>
|
65 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
66 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />
|
67 |
+
<?php endforeach; ?>
|
68 |
+
</small>
|
69 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>
|
70 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
71 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></small></span><br />
|
72 |
+
<?php endforeach; ?>
|
73 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales')): ?>
|
74 |
+
<small>
|
75 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
76 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />
|
77 |
+
<?php endforeach; ?>
|
78 |
+
</small>
|
79 |
+
<?php endif; ?>
|
80 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>
|
81 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>
|
82 |
+
<?php endif; ?>
|
83 |
+
<?php endif; ?>
|
84 |
+
<?php endif; ?>
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
89 |
+
<?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
|
90 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
91 |
+
<br /><?php echo $this->__('Incl. Tax'); ?>:
|
92 |
+
<?php endif; ?>
|
93 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales')): ?>
|
94 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?>
|
95 |
+
<?php else: ?>
|
96 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>
|
97 |
+
<?php endif; ?>
|
98 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
99 |
+
<br />
|
100 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales')): ?>
|
101 |
+
<small>
|
102 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
103 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />
|
104 |
+
<?php endforeach; ?>
|
105 |
+
</small>
|
106 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>
|
107 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
108 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></small></span><br />
|
109 |
+
<?php endforeach; ?>
|
110 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales')): ?>
|
111 |
+
<small>
|
112 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
113 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />
|
114 |
+
<?php endforeach; ?>
|
115 |
+
</small>
|
116 |
+
<?php endif; ?>
|
117 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>
|
118 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?></span>
|
119 |
+
<?php endif; ?>
|
120 |
+
<?php endif; ?>
|
121 |
+
<?php endif; ?>
|
122 |
+
|
123 |
+
<?php endif; //Can apply MSRP ?>
|
124 |
+
|
125 |
+
<?php if ($_options = $this->getOptionList()):?>
|
126 |
+
<div class="truncated">
|
127 |
+
<div class="truncated_full_value">
|
128 |
+
<dl class="item-options">
|
129 |
+
<?php foreach ($_options as $_option) : ?>
|
130 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
131 |
+
<dd>
|
132 |
+
<?php if (is_array($_option['value'])): ?>
|
133 |
+
<?php echo nl2br(implode("\n", $_option['value'])) ?>
|
134 |
+
<?php else: ?>
|
135 |
+
<?php echo $_option['value'] ?>
|
136 |
+
<?php endif; ?>
|
137 |
+
</dd>
|
138 |
+
<?php endforeach; ?>
|
139 |
+
</dl>
|
140 |
+
</div>
|
141 |
+
<a href="#" onclick="return false;" class="details"><?php echo $this->__('Details') ?></a>
|
142 |
+
</div>
|
143 |
+
<?php endif; ?>
|
144 |
+
</div>
|
145 |
+
</li>
|
app/design/frontend/modulesgarden/minimo/template/checkout/cart/totals.phtml
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Shopping cart totals template
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Cart_Totals
|
32 |
+
* @var $this Mage_Checkout_Block_Cart_Totals
|
33 |
+
*/
|
34 |
+
?>
|
35 |
+
<?php if ($this->canApplyMsrp()): ?>
|
36 |
+
<div class="cart-msrp-totals"><?php echo $this->__('ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER'); ?></div>
|
37 |
+
<?php else: ?>
|
38 |
+
<table id="shopping-cart-totals-table">
|
39 |
+
<col />
|
40 |
+
<col width="1" />
|
41 |
+
<tfoot>
|
42 |
+
<?php echo $this->renderTotals('footer'); ?>
|
43 |
+
</tfoot>
|
44 |
+
<tbody>
|
45 |
+
<?php echo $this->renderTotals(); ?>
|
46 |
+
</tbody>
|
47 |
+
</table>
|
48 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/address/select.phtml
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="multiple-checkout">
|
28 |
+
<div class="page-title title-buttons">
|
29 |
+
<h1><?php echo $this->__('Change Billing Address') ?></h1>
|
30 |
+
<button type="button" title="<?php echo $this->__('Add New Address') ?>" class="button" onclick="setLocation('<?php echo $this->getAddNewUrl() ?>')"><span><span><?php echo $this->__('Add New Address') ?></span></span></button>
|
31 |
+
</div>
|
32 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
33 |
+
<?php $_index=0 ?>
|
34 |
+
<?php foreach ($this->getAddressCollection() as $_address): ?>
|
35 |
+
<?php if($_index%3==0): ?><div class="col3-set"><?php endif; ?>
|
36 |
+
<div class="col-<?php echo ($_index%3+1) ?>">
|
37 |
+
<p class="actions">
|
38 |
+
<a href="<?php echo $this->getEditAddressUrl($_address) ?>"><?php echo $this->__('Edit Address') ?></a> <span class="separator">|</span>
|
39 |
+
<a href="<?php echo $this->getSetAddressUrl($_address) ?>"><strong><?php echo $this->__('Select Address') ?></strong></a>
|
40 |
+
</p>
|
41 |
+
<address>
|
42 |
+
<?php echo $_address->format('html') ?>
|
43 |
+
</address>
|
44 |
+
<?php if($this->isAddressDefaultBilling($_address)): ?>
|
45 |
+
<strong><?php echo $this->__('Default Billing') ?></strong>
|
46 |
+
<?php endif; ?>
|
47 |
+
<?php if($this->isAddressDefaultShipping($_address)): ?>
|
48 |
+
<br /><strong><?php echo $this->__('Default Shipping') ?></strong>
|
49 |
+
<?php endif; ?>
|
50 |
+
</div>
|
51 |
+
<?php $_index++ ?>
|
52 |
+
<?php if($_index && $_index%3==0): ?></div><?php endif; ?>
|
53 |
+
<?php endforeach; ?>
|
54 |
+
<?php if(!$_index || $_index%3!=0): ?></div><?php endif; ?>
|
55 |
+
<div class="buttons-set">
|
56 |
+
<p class="back-link"><a href="<?php echo $this->getBackUrl() ?>"><small>« </small><?php echo $this->__('Back to Billing Information') ?></a></p>
|
57 |
+
</div>
|
58 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/addresses.phtml
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Ship to multiple address template
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Multishipping_Addresses
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
35 |
+
<form id="checkout_multishipping_form" action="<?php echo $this->getPostActionUrl() ?>" method="post">
|
36 |
+
<div class="multiple-checkout">
|
37 |
+
<div class="page-title title-buttons">
|
38 |
+
<h1><?php echo $this->__('Ship to Multiple Addresses') ?></h1>
|
39 |
+
<button data-action="add-new-customer-address" type="button" title="<?php echo $this->__('Enter a New Address') ?>" class="button" onclick="$('add_new_address_flag').value=1; $('checkout_multishipping_form').submit();"><span><span><?php echo $this->__('Enter a New Address') ?></span></span></button>
|
40 |
+
</div>
|
41 |
+
<input type="hidden" name="continue" value="0" id="can_continue_flag" />
|
42 |
+
<input type="hidden" name="new_address" value="0" id="add_new_address_flag" />
|
43 |
+
<h2><?php echo $this->__('Please select shipping address for applicable items') ?></h2>
|
44 |
+
<table class="data-table" id="multiship-addresses-table">
|
45 |
+
<col />
|
46 |
+
<col width="1" />
|
47 |
+
<col width="1" />
|
48 |
+
<col width="1" />
|
49 |
+
<thead>
|
50 |
+
<tr>
|
51 |
+
<th><?php echo $this->__('Product') ?></th>
|
52 |
+
<th class="a-center"><?php echo $this->__('Qty') ?></th>
|
53 |
+
<th><?php echo $this->__('Send To') ?></th>
|
54 |
+
<th> </th>
|
55 |
+
</tr>
|
56 |
+
</thead>
|
57 |
+
<tfoot>
|
58 |
+
<tr>
|
59 |
+
<td colspan="100" class="a-right"><button type="submit" title="<?php echo $this->__('Update Qty & Addresses') ?>" class="button" onclick="$('can_continue_flag').value=0"><span><span><?php echo $this->__('Update Qty & Addresses') ?></span></span></button></td>
|
60 |
+
</tr>
|
61 |
+
</tfoot>
|
62 |
+
<tbody>
|
63 |
+
<?php foreach ($this->getItems() as $_index => $_item): ?>
|
64 |
+
<?php if ($_item->getQuoteItem()) :?>
|
65 |
+
<tr>
|
66 |
+
<td><?php echo $this->getItemHtml($_item->getQuoteItem())?></td>
|
67 |
+
<td><input type="text" name="ship[<?php echo $_index ?>][<?php echo $_item->getQuoteItemId() ?>][qty]" value="<?php echo $this->escapeHtml($_item->getQty()) ?>" size="2" class="input-text qty" /></td>
|
68 |
+
<td><?php if ($_item->getProduct()->getIsVirtual()): echo $this->__('Shipping selection is not applicable.'); else: echo $this->getAddressesHtmlSelect($_item, $_index); endif; ?></td>
|
69 |
+
<td class="a-center"><a href="<?php echo $this->getItemDeleteUrl($_item) ?>" title="<?php echo $this->__('Remove Item') ?>" class="btn-remove2"><?php echo $this->__('Remove Item') ?></a></td>
|
70 |
+
</tr>
|
71 |
+
<?php endif; ?>
|
72 |
+
<?php endforeach; ?>
|
73 |
+
</tbody>
|
74 |
+
</table>
|
75 |
+
<script type="text/javascript">decorateTable('multiship-addresses-table')</script>
|
76 |
+
<div class="buttons-set">
|
77 |
+
<p class="back-link"><a href="<?php echo $this->getBackUrl() ?>"><small>« </small><?php echo $this->__('Back to Shopping Cart') ?></a></p>
|
78 |
+
<button type="submit" data-action="checkout-continue-shipping" title="<?php echo $this->__('Continue to Shipping Information') ?>" class="button<?php if ($this->isContinueDisabled()):?> disabled<?php endif; ?>" onclick="$('can_continue_flag').value=1"<?php if ($this->isContinueDisabled()):?> disabled="disabled"<?php endif; ?>><span><span><?php echo $this->__('Continue to Shipping Information') ?></span></span></button>
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
</form>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/agreements.phtml
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Checkout_Block_Agreements
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
|
33 |
+
<?php if (!$this->getAgreements()) return; ?>
|
34 |
+
<ol id="checkout-agreements" class="checkout-agreements">
|
35 |
+
<?php foreach ($this->getAgreements() as $_a): ?>
|
36 |
+
<li>
|
37 |
+
<div class="agreement-content"<?php echo ($_a->getContentHeight() ? ' style="height:' . $_a->getContentHeight() . '"' : '')?>>
|
38 |
+
<?php if ($_a->getIsHtml()):?>
|
39 |
+
<?php echo $_a->getContent() ?>
|
40 |
+
<?php else:?>
|
41 |
+
<?php echo nl2br($this->escapeHtml($_a->getContent())) ?>
|
42 |
+
<?php endif; ?>
|
43 |
+
</div>
|
44 |
+
<p class="agree">
|
45 |
+
<input type="checkbox" id="agreement-<?php echo $_a->getId()?>" name="agreement[<?php echo $_a->getId()?>]" value="1" title="<?php echo $this->escapeHtml($_a->getCheckboxText()) ?>" class="checkbox" /><label for="agreement-<?php echo $_a->getId()?>"><?php echo $_a->getIsHtml() ? $_a->getCheckboxText() : $this->escapeHtml($_a->getCheckboxText()) ?></label>
|
46 |
+
</p>
|
47 |
+
</li>
|
48 |
+
<?php endforeach ?>
|
49 |
+
</ol>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/billing.phtml
ADDED
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Multishipping checkout billing information
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Multishipping_Billing
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<div class="multiple-checkout">
|
35 |
+
<div class="page-title">
|
36 |
+
<h1><?php echo $this->__('Billing Information') ?></h1>
|
37 |
+
</div>
|
38 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
39 |
+
<script src="<?php echo Mage::getBaseUrl('js') ?>varien/payment.js" type="text/javascript"></script>
|
40 |
+
<form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="multishipping-billing-form">
|
41 |
+
<div class="col2-set">
|
42 |
+
<div class="col-1 col-narrow">
|
43 |
+
<div class="box">
|
44 |
+
<div class="box-title">
|
45 |
+
<h2><?php echo $this->__('Billing Address') ?> <span class="separator">|</span> <a href="<?php echo $this->getSelectAddressUrl() ?>"><?php echo $this->__('Change') ?></a></h2>
|
46 |
+
</div>
|
47 |
+
<div class="box-content">
|
48 |
+
<?php $_address=$this->getAddress() ?>
|
49 |
+
<address><?php echo $_address->format('html') ?></address>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
<div class="col-2 col-wide">
|
54 |
+
<div class="box">
|
55 |
+
<div class="box-title">
|
56 |
+
<h2><?php echo $this->__('Payment Method') ?></h2>
|
57 |
+
</div>
|
58 |
+
<div class="box-content">
|
59 |
+
<div class="tool-tip" id="payment-tool-tip" style="display:none;">
|
60 |
+
<div class="btn-close"><a href="#" id="payment-tool-tip-close" title="<?php echo $this->__('Close') ?>"><?php echo $this->__('Close') ?></a></div>
|
61 |
+
<div class="tool-tip-content"><img src="<?php echo $this->getSkinUrl('images/cvv.gif') ?>" alt="<?php echo $this->__('Card Verification Number Visual Reference') ?>" title="<?php echo $this->__('Card Verification Number Visual Reference') ?>" /></div>
|
62 |
+
</div>
|
63 |
+
<!-- Payment methods forms list -->
|
64 |
+
<dl class="sp-methods">
|
65 |
+
<?php
|
66 |
+
$_methods = $this->getMethods();
|
67 |
+
$_methodsCount = count($_methods);
|
68 |
+
?>
|
69 |
+
<?php foreach ($_methods as $_method): $_code = $_method->getCode() ?>
|
70 |
+
<dt>
|
71 |
+
<?php if ($_methodsCount > 1): ?>
|
72 |
+
<input type="radio" id="p_method_<?php echo $_code ?>" value="<?php echo $_code ?>" name="payment[method]" title="<?php echo $this->escapeHtml($_method->getTitle()) ?>" onclick="payment.switchMethod('<?php echo $_code ?>')"<?php if($this->getSelectedMethodCode()==$_code): ?> checked="checked"<?php endif; ?> class="radio" />
|
73 |
+
<?php else :?>
|
74 |
+
<span class="no-display"><input type="radio" id="p_method_<?php echo $_code ?>" value="<?php echo $_code ?>" name="payment[method]" checked="checked" class="radio" /></span>
|
75 |
+
<?php endif;?>
|
76 |
+
<label for="p_method_<?php echo $_code ?>"><?php echo $this->escapeHtml($_method->getTitle()) ?></label>
|
77 |
+
</dt>
|
78 |
+
<?php if($html = $this->getChildHtml('payment.method.'.$_code)) : ?>
|
79 |
+
<dd>
|
80 |
+
<?php echo $html; ?>
|
81 |
+
</dd>
|
82 |
+
<?php endif; ?>
|
83 |
+
<?php endforeach; ?>
|
84 |
+
</dl>
|
85 |
+
<?php echo $this->getChildHtml('checkout_billing_items') ?>
|
86 |
+
</div>
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
<div class="buttons-set">
|
91 |
+
<p class="back-link"><a href="<?php echo $this->getBackUrl() ?>"><small>« </small><?php echo $this->__('Back to Shipping Information') ?></a></p>
|
92 |
+
<button id="payment-continue" type="submit" title="<?php echo $this->__('Continue to Review Your Order') ?>" class="button"><span><span><?php echo $this->__('Continue to Review Your Order') ?></span></span></button>
|
93 |
+
</div>
|
94 |
+
</form>
|
95 |
+
<script type="text/javascript">
|
96 |
+
//<![CDATA[
|
97 |
+
var payment = new paymentForm('multishipping-billing-form');
|
98 |
+
function toggleToolTip(event){
|
99 |
+
if($('payment-tool-tip')){
|
100 |
+
/*$('payment-tool-tip').setStyle({
|
101 |
+
top: (Event.pointerY(event)-510)+'px',
|
102 |
+
left: (Event.pointerX(event)-800)+'px'
|
103 |
+
})*/
|
104 |
+
$('payment-tool-tip').toggle();
|
105 |
+
}
|
106 |
+
Event.stop(event);
|
107 |
+
}
|
108 |
+
if($('payment-tool-tip-close')){
|
109 |
+
Event.observe($('payment-tool-tip-close'), 'click', toggleToolTip);
|
110 |
+
}
|
111 |
+
$$('.cvv-what-is-this').each(function(element){
|
112 |
+
Event.observe(element, 'click', toggleToolTip);
|
113 |
+
});
|
114 |
+
//]]>
|
115 |
+
</script>
|
116 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/billing/items.phtml
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if ($this->getQuote()->hasVirtualItems()): ?>
|
28 |
+
<div class="col2-set">
|
29 |
+
<h2 class="legend"><?php echo $this->__('Other Items in Your Order') ?></h2>
|
30 |
+
<div class="col-1 col-narrow"></div>
|
31 |
+
<div class="col-2 col-wide">
|
32 |
+
<h3><?php echo $this->__('Items') ?> <span class="separator">|</span> <a href="<?php echo $this->getVirtualProductEditUrl() ?>"><?php echo $this->__('Edit Items') ?></a></h3>
|
33 |
+
<table class="data-table" id="unavailable-shipping-table">
|
34 |
+
<col />
|
35 |
+
<col width="1" />
|
36 |
+
<thead>
|
37 |
+
<tr>
|
38 |
+
<th><?php echo $this->__('Product Name') ?></th>
|
39 |
+
<th class="a-center"><?php echo $this->__('Qty') ?></th>
|
40 |
+
</tr>
|
41 |
+
</thead>
|
42 |
+
<tbody>
|
43 |
+
<?php foreach ($this->getVirtualQuoteItems() as $_item): ?>
|
44 |
+
<tr>
|
45 |
+
<td><?php echo $this->getItemHtml($_item) ?></td>
|
46 |
+
<td class="a-center"><?php echo $_item->getQty() ?></td>
|
47 |
+
</tr>
|
48 |
+
<?php endforeach; ?>
|
49 |
+
</tbody>
|
50 |
+
</table>
|
51 |
+
<script type="text/javascript">decorateTable('unavailable-shipping-table')</script>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/item/default.phtml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<h3 class="product-name"><a href="<?php echo $this->getProductUrl() ?>"><?php echo $this->escapeHtml($this->getProductName()) ?></a></h3>
|
28 |
+
<?php if ($_options = $this->getOptionList()):?>
|
29 |
+
<dl class="item-options">
|
30 |
+
<?php foreach ($_options as $_option) : ?>
|
31 |
+
<?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
|
32 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
33 |
+
<dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
|
34 |
+
<?php if (isset($_formatedOptionValue['full_view'])): ?>
|
35 |
+
<div class="truncated_full_value">
|
36 |
+
<dl class="item-options">
|
37 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
38 |
+
<dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
|
39 |
+
</dl>
|
40 |
+
</div>
|
41 |
+
<?php endif; ?>
|
42 |
+
</dd>
|
43 |
+
<?php endforeach; ?>
|
44 |
+
</dl>
|
45 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/link.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<a href="<?php echo $this->getCheckoutUrl()?>" title="<?php echo Mage::helper('checkout')->__('Checkout with Multiple Addresses');?>"><?php echo Mage::helper('checkout')->__('Checkout with Multiple Addresses');?></a>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/overview.phtml
ADDED
@@ -0,0 +1,250 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
28 |
+
if ( $imgStyle == 'green'){
|
29 |
+
$img = '-green';
|
30 |
+
}else {
|
31 |
+
$img = '-blue';
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
<?php /** @var $this Mage_Checkout_Block_Multishipping_Overview */ ?>
|
35 |
+
<div class="multiple-checkout">
|
36 |
+
<div class="page-title">
|
37 |
+
<h1><?php echo $this->__('Review Order') ?></h1>
|
38 |
+
</div>
|
39 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
40 |
+
<form id="review-order-form" action="<?php echo $this->getPostActionUrl() ?>" method="post" onsubmit="return showLoader();">
|
41 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
42 |
+
<div class="col2-set">
|
43 |
+
<h2 class="legend"><?php echo $this->__('Billing Information') ?></h2>
|
44 |
+
<div class="col-1">
|
45 |
+
<div class="box">
|
46 |
+
<?php $_address=$this->getBillingAddress() ?>
|
47 |
+
<div class="box-title">
|
48 |
+
<h3><?php echo $this->__('Billing Address') ?> <span class="separator">|</span> <a href="<?php echo $this->getEditBillingAddressUrl($_address) ?>"><?php echo $this->__('Change') ?></a></h3>
|
49 |
+
</div>
|
50 |
+
<div class="box-content">
|
51 |
+
<address>
|
52 |
+
<?php echo $_address->format('html') ?>
|
53 |
+
</address>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
</div>
|
57 |
+
<div class="col-2">
|
58 |
+
<div class="box">
|
59 |
+
<div class="box-title">
|
60 |
+
<h3><?php echo $this->__('Payment Method') ?> <span class="separator">|</span> <a href="<?php echo $this->getEditBillingUrl() ?>"><?php echo $this->__('Change') ?></a></h3>
|
61 |
+
</div>
|
62 |
+
<div class="box-content">
|
63 |
+
<input type="hidden" name="payment[cc_number]" value="<?php echo $this->escapeHtml($this->getPayment()->getCcNumber())?>" />
|
64 |
+
<input type="hidden" name="payment[cc_cid]" value="<?php echo $this->escapeHtml($this->getPayment()->getCcCid())?>" />
|
65 |
+
<?php echo $this->getPaymentHtml() ?>
|
66 |
+
</div>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
<?php $mergedCells = ($this->helper('tax')->displayCartBothPrices() ? 2 : 1); ?>
|
71 |
+
<div class="col2-set">
|
72 |
+
<h2 class="legend"><?php echo $this->__('Shipping Information') ?></h2>
|
73 |
+
<?php foreach ($this->getShippingAddresses() as $_index => $_address): ?>
|
74 |
+
<h3 class="legend"><?php echo $this->__('Address %s of %s', ($_index+1), $this->getShippingAddressCount()) ?></h3>
|
75 |
+
<div class="col-1 col-narrow">
|
76 |
+
<div class="box">
|
77 |
+
<div class="box-title">
|
78 |
+
<h4><?php echo $this->__('Shipping To') ?> <span class="separator">|</span> <a href="<?php echo $this->getEditShippingAddressUrl($_address) ?>"><?php echo $this->__('Change') ?></a></h4>
|
79 |
+
</div>
|
80 |
+
<div class="box-content">
|
81 |
+
<address>
|
82 |
+
<?php echo $_address->format('html') ?>
|
83 |
+
</address>
|
84 |
+
</div>
|
85 |
+
</div>
|
86 |
+
<div class="box">
|
87 |
+
<div class="box-title">
|
88 |
+
<h4><?php echo $this->__('Shipping Method') ?> <span class="separator">|</span> <a href="<?php echo $this->getEditShippingUrl() ?>"><?php echo $this->__('Change') ?></a></h4>
|
89 |
+
</div>
|
90 |
+
<div class="box-content">
|
91 |
+
<?php if($_rate=$this->getShippingAddressRate($_address)): ?>
|
92 |
+
<p>
|
93 |
+
<?php echo $this->escapeHtml($_rate->getCarrierTitle()) ?> - <?php echo $this->escapeHtml($_rate->getMethodTitle()) ?>
|
94 |
+
<?php $_excl = $this->getShippingPriceExclTax($_address); ?>
|
95 |
+
<?php $_incl = $this->getShippingPriceInclTax($_address); ?>
|
96 |
+
<?php echo $_excl; ?>
|
97 |
+
<?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
|
98 |
+
(<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
|
99 |
+
<?php endif; ?>
|
100 |
+
</p>
|
101 |
+
<?php endif; ?>
|
102 |
+
</div>
|
103 |
+
</div>
|
104 |
+
</div>
|
105 |
+
<div class="col-2 col-wide">
|
106 |
+
<h4><?php echo $this->__('Items') ?> <span class="separator">|</span> <a href="<?php echo $this->getAddressesEditUrl() ?>"><?php echo $this->__('Edit Items') ?></a></h4>
|
107 |
+
<table class="data-table" id="overview-table-<?php echo $_address->getId() ?>">
|
108 |
+
<col />
|
109 |
+
<col width="1" />
|
110 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
111 |
+
<col width="1" />
|
112 |
+
<?php endif; ?>
|
113 |
+
<col width="1" />
|
114 |
+
<col width="1" />
|
115 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
116 |
+
<col width="1" />
|
117 |
+
<?php endif; ?>
|
118 |
+
<thead>
|
119 |
+
<tr>
|
120 |
+
<th rowspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Product Name') ?></th>
|
121 |
+
<th colspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Price') ?></th>
|
122 |
+
<th rowspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Qty') ?></th>
|
123 |
+
<th colspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Subtotal') ?></th>
|
124 |
+
</tr>
|
125 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
126 |
+
<tr>
|
127 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
128 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
129 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
130 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
131 |
+
</tr>
|
132 |
+
<?php endif; ?>
|
133 |
+
</thead>
|
134 |
+
<tfoot>
|
135 |
+
<?php echo $this->renderTotals($this->getShippingAddressTotals($_address)); ?>
|
136 |
+
</tfoot>
|
137 |
+
<tbody>
|
138 |
+
<?php foreach ($this->getShippingAddressItems($_address) as $_item): ?>
|
139 |
+
<?php echo $this->getRowItemHtml($_item); ?>
|
140 |
+
<?php endforeach; ?>
|
141 |
+
</tbody>
|
142 |
+
</table>
|
143 |
+
<script type="text/javascript">decorateTable('overview-table-<?php echo $_address->getId() ?>')</script>
|
144 |
+
</div>
|
145 |
+
<?php if($this->getShippingAddressCount()!=$_index+1): ?>
|
146 |
+
<div class="divider"></div>
|
147 |
+
<?php endif; ?>
|
148 |
+
<?php endforeach; ?>
|
149 |
+
</div>
|
150 |
+
<?php if ($this->getQuote()->hasVirtualItems()): ?>
|
151 |
+
<div class="col2-set">
|
152 |
+
<h2 class="legend"><?php echo $this->__('Other Items in Your Order') ?></h2>
|
153 |
+
<div class="col-1 col-narrow"></div>
|
154 |
+
<div class="col-2 col-wide">
|
155 |
+
<h3><?php echo $this->__('Items') ?> <span class="separator">|</span> <a href="<?php echo $this->getVirtualProductEditUrl() ?>"><?php echo $this->__('Edit Items') ?></a></h3>
|
156 |
+
<?php $mergedCells = ($this->helper('tax')->displayCartBothPrices() ? 2 : 1); ?>
|
157 |
+
<table class="data-table" id="virtual-overview-table">
|
158 |
+
<col />
|
159 |
+
<col width="1" />
|
160 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
161 |
+
<col width="1" />
|
162 |
+
<?php endif; ?>
|
163 |
+
<col width="1" />
|
164 |
+
<col width="1" />
|
165 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
166 |
+
<col width="70" />
|
167 |
+
<?php endif; ?>
|
168 |
+
<thead>
|
169 |
+
<tr>
|
170 |
+
<th rowspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Product Name') ?></th>
|
171 |
+
<th colspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Price') ?></th>
|
172 |
+
<th rowspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Qty') ?></th>
|
173 |
+
<th colspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Subtotal') ?></th>
|
174 |
+
</tr>
|
175 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
176 |
+
<tr>
|
177 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
178 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
179 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
180 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
181 |
+
</tr>
|
182 |
+
<?php endif; ?>
|
183 |
+
</thead>
|
184 |
+
<tfoot>
|
185 |
+
<?php echo $this->renderTotals($this->getBillinAddressTotals()); ?>
|
186 |
+
</tfoot>
|
187 |
+
<tbody>
|
188 |
+
<?php foreach ($this->getVirtualItems() as $_item): ?>
|
189 |
+
<?php echo $this->getRowItemHtml($_item); ?>
|
190 |
+
<?php endforeach; ?>
|
191 |
+
</tbody>
|
192 |
+
</table>
|
193 |
+
<script type="text/javascript">decorateTable('virtual-overview-table')</script>
|
194 |
+
</div>
|
195 |
+
</div>
|
196 |
+
<?php endif; ?>
|
197 |
+
|
198 |
+
<?php echo $this->getChildHtml('items_after'); ?>
|
199 |
+
|
200 |
+
<div id="checkout-review-submit">
|
201 |
+
<?php echo $this->getChildHtml('agreements') ?>
|
202 |
+
<div class="place-order">
|
203 |
+
<div class="grand-total">
|
204 |
+
<div class="inner">
|
205 |
+
<big><?php echo $this->__('Grand Total:') ?> <?php echo $this->helper('checkout')->formatPrice($this->getTotal()) ?></big>
|
206 |
+
<div id="review-buttons-container">
|
207 |
+
<button type="submit" title="<?php echo $this->__('Place Order') ?>" class="button btn-checkout" id="review-button"><span><span><?php echo $this->__('Place Order') ?></span></span></button>
|
208 |
+
</div>
|
209 |
+
</div>
|
210 |
+
</div>
|
211 |
+
<span class="please-wait" id="review-please-wait" style="display:none;">
|
212 |
+
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader'.$img.'.gif') ?>" alt="<?php echo $this->__('Submitting order information...') ?>" title="<?php echo $this->__('Submitting order information...') ?>" class="v-middle" /> <?php echo $this->__('Submitting order information...') ?>
|
213 |
+
</span>
|
214 |
+
</div>
|
215 |
+
</div>
|
216 |
+
<div class="buttons-set">
|
217 |
+
<p class="back-link"><a href="<?php echo $this->getBackUrl() ?>"><small>« </small><?php echo $this->__('Back to Billing Information') ?></a></p>
|
218 |
+
</div>
|
219 |
+
</form>
|
220 |
+
<script type="text/javascript">
|
221 |
+
//<![CDATA[
|
222 |
+
var submitted = false;
|
223 |
+
|
224 |
+
function showLoader()
|
225 |
+
{
|
226 |
+
if (submitted) {
|
227 |
+
return false;
|
228 |
+
}
|
229 |
+
if ($('checkout-agreements')) {
|
230 |
+
var checkboxes = $$('#checkout-agreements input');
|
231 |
+
for (var i=0, l=checkboxes.length; i<l; i++) {
|
232 |
+
if (!checkboxes[i].checked) {
|
233 |
+
alert("<?php echo $this->__('Please agree to all Terms and Conditions before placing the orders.')?>");
|
234 |
+
return false;
|
235 |
+
}
|
236 |
+
}
|
237 |
+
}
|
238 |
+
|
239 |
+
submitted = true;
|
240 |
+
var step='review';
|
241 |
+
Element.show(step+'-please-wait');
|
242 |
+
$(step+'-buttons-container').setStyle({opacity:.5});
|
243 |
+
$(step+'-buttons-container').descendants().each(function(s) {
|
244 |
+
s.disabled = true;
|
245 |
+
});
|
246 |
+
return true;
|
247 |
+
}
|
248 |
+
//]]>
|
249 |
+
</script>
|
250 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/overview/item.phtml
ADDED
@@ -0,0 +1,238 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Quote Item row html
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Cart_Item_Renderer
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php $_item = $this->getItem() ?>
|
35 |
+
<tr>
|
36 |
+
<td><?php echo $this->getRenderedBlock()->getItemHtml($_item) ?></td>
|
37 |
+
|
38 |
+
<!--- Excluding Tax -->
|
39 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
40 |
+
<td class="a-right">
|
41 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
42 |
+
<div class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
43 |
+
<?php else: ?>
|
44 |
+
<div class="cart-price">
|
45 |
+
<?php endif; ?>
|
46 |
+
|
47 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
48 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>
|
49 |
+
<?php else: ?>
|
50 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
|
51 |
+
<?php endif; ?>
|
52 |
+
|
53 |
+
</div>
|
54 |
+
|
55 |
+
|
56 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
57 |
+
|
58 |
+
<div class="cart-tax-info" id="eunit-item-tax-details<?php echo $_item->getId(); ?>" style="display: none;">
|
59 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
60 |
+
<small>
|
61 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
62 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />
|
63 |
+
<?php endforeach; ?>
|
64 |
+
</small>
|
65 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
66 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
67 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></small></span><br />
|
68 |
+
<?php endforeach; ?>
|
69 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
70 |
+
<small>
|
71 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
72 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />
|
73 |
+
<?php endforeach; ?>
|
74 |
+
</small>
|
75 |
+
<?php endif; ?>
|
76 |
+
</div>
|
77 |
+
|
78 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
79 |
+
<div class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
80 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>
|
81 |
+
</div>
|
82 |
+
<?php endif; ?>
|
83 |
+
<?php endif; ?>
|
84 |
+
</td>
|
85 |
+
<?php endif; ?>
|
86 |
+
<!--- // Excluding Tax -->
|
87 |
+
|
88 |
+
<!--- Including Tax -->
|
89 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
90 |
+
<td>
|
91 |
+
<?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
|
92 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
93 |
+
<div class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
94 |
+
<?php else: ?>
|
95 |
+
<div class="cart-price">
|
96 |
+
<?php endif; ?>
|
97 |
+
|
98 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
99 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?>
|
100 |
+
<?php else: ?>
|
101 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>
|
102 |
+
<?php endif; ?>
|
103 |
+
|
104 |
+
</div>
|
105 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
106 |
+
|
107 |
+
<div class="cart-tax-info" id="unit-item-tax-details<?php echo $_item->getId(); ?>" style="display: none;">
|
108 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
109 |
+
<small>
|
110 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
111 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />
|
112 |
+
<?php endforeach; ?>
|
113 |
+
</small>
|
114 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
115 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
116 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></small></span><br />
|
117 |
+
<?php endforeach; ?>
|
118 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
119 |
+
<small>
|
120 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
121 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />
|
122 |
+
<?php endforeach; ?>
|
123 |
+
</small>
|
124 |
+
<?php endif; ?>
|
125 |
+
</div>
|
126 |
+
|
127 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
128 |
+
<div class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
129 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?></span>
|
130 |
+
</div>
|
131 |
+
<?php endif; ?>
|
132 |
+
<?php endif; ?>
|
133 |
+
|
134 |
+
</td>
|
135 |
+
<?php endif; ?>
|
136 |
+
<!--- // Including Tax -->
|
137 |
+
|
138 |
+
<td class="a-center"><?php echo $_item->getQty()*1 ?></td>
|
139 |
+
|
140 |
+
<!--- Excluding Tax Subtotal -->
|
141 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
142 |
+
<td class="a-right">
|
143 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
144 |
+
<div class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
145 |
+
<?php else: ?>
|
146 |
+
<div class="cart-price">
|
147 |
+
<?php endif; ?>
|
148 |
+
|
149 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
150 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?>
|
151 |
+
<?php else: ?>
|
152 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
|
153 |
+
<?php endif; ?>
|
154 |
+
|
155 |
+
</div>
|
156 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
157 |
+
|
158 |
+
<div class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display: none;">
|
159 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
160 |
+
<small>
|
161 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
162 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span><br />
|
163 |
+
<?php endforeach; ?>
|
164 |
+
</small>
|
165 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
166 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
167 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></small></span><br />
|
168 |
+
<?php endforeach; ?>
|
169 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
170 |
+
<small>
|
171 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
172 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span><br />
|
173 |
+
<?php endforeach; ?>
|
174 |
+
</small>
|
175 |
+
<?php endif; ?>
|
176 |
+
</div>
|
177 |
+
|
178 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
179 |
+
<div class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
180 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?></span>
|
181 |
+
</div>
|
182 |
+
<?php endif; ?>
|
183 |
+
<?php endif; ?>
|
184 |
+
</td>
|
185 |
+
<?php endif; ?>
|
186 |
+
<!--- //Excluding Tax Subtotal -->
|
187 |
+
|
188 |
+
<!--- Including Tax Subtotal -->
|
189 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
190 |
+
<td>
|
191 |
+
<?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?>
|
192 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
193 |
+
<div class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
194 |
+
<?php else: ?>
|
195 |
+
<div class="cart-price">
|
196 |
+
<?php endif; ?>
|
197 |
+
|
198 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
199 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?>
|
200 |
+
<?php else: ?>
|
201 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxRowDisposition()) ?>
|
202 |
+
<?php endif; ?>
|
203 |
+
|
204 |
+
</div>
|
205 |
+
|
206 |
+
|
207 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
208 |
+
|
209 |
+
<div class="cart-tax-info" id="subtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display: none;">
|
210 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
211 |
+
<small>
|
212 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
213 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span><br />
|
214 |
+
<?php endforeach; ?>
|
215 |
+
</small>
|
216 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
217 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
218 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></small></span><br />
|
219 |
+
<?php endforeach; ?>
|
220 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
221 |
+
<small>
|
222 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
223 |
+
<span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span><br />
|
224 |
+
<?php endforeach; ?>
|
225 |
+
</small>
|
226 |
+
<?php endif; ?>
|
227 |
+
</div>
|
228 |
+
|
229 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
230 |
+
<div class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
231 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?></span>
|
232 |
+
</div>
|
233 |
+
<?php endif; ?>
|
234 |
+
<?php endif; ?>
|
235 |
+
</td>
|
236 |
+
<?php endif; ?>
|
237 |
+
<!--- //Including Tax Subtotal -->
|
238 |
+
</tr>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/shipping.phtml
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Multishipping checkout shipping template
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Multishipping_Shipping
|
32 |
+
* @var $this Mage_Checkout_Block_Multishipping_Shipping
|
33 |
+
*/
|
34 |
+
?>
|
35 |
+
<div class="multiple-checkout">
|
36 |
+
<div class="page-title">
|
37 |
+
<h1><?php echo $this->__('Select Shipping Method') ?></h1>
|
38 |
+
</div>
|
39 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
40 |
+
<form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="shipping_method_form">
|
41 |
+
<?php foreach ($this->getAddresses() as $_index => $_address): ?>
|
42 |
+
<div class="col2-set">
|
43 |
+
<h2 class="legend"><?php echo $this->__('Address %s of %s', ($_index+1), $this->getAddressCount()) ?></h2>
|
44 |
+
<div class="col-1 col-narrow">
|
45 |
+
<div class="box">
|
46 |
+
<div class="box-title">
|
47 |
+
<h3><?php echo $this->__('Shipping To') ?> <span class="separator">|</span> <a href="<?php echo $this->getAddressEditUrl($_address) ?>"><?php echo $this->__('Change') ?></a></h3>
|
48 |
+
</div>
|
49 |
+
<div class="box-content">
|
50 |
+
<address><?php echo $_address->format('html') ?></address>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
<div class="box box-sp-methods">
|
54 |
+
<div class="pointer"></div>
|
55 |
+
<div class="box-title">
|
56 |
+
<h3><?php echo $this->__('Shipping Method') ?></h3>
|
57 |
+
</div>
|
58 |
+
<div class="box-content">
|
59 |
+
<?php if (!($_shippingRateGroups = $this->getShippingRates($_address))): ?>
|
60 |
+
<p><?php echo $this->__('Sorry, no quotes are available for this order at this time.') ?></p>
|
61 |
+
<?php else: ?>
|
62 |
+
<dl class="sp-methods">
|
63 |
+
<?php $_sole = count($_shippingRateGroups) == 1; foreach ($_shippingRateGroups as $code => $_rates): ?>
|
64 |
+
<dt><?php echo $this->escapeHtml($this->getCarrierName($code)) ?></dt>
|
65 |
+
<dd>
|
66 |
+
<ul>
|
67 |
+
<?php $_sole = $_sole && count($_rates) == 1; foreach ($_rates as $_rate): ?>
|
68 |
+
<li<?php if ($_rate->getErrorMessage()) echo ' class="error-msg"' ?>>
|
69 |
+
<?php if ($_rate->getErrorMessage()): ?>
|
70 |
+
<?php echo $this->escapeHtml($_rate->getCarrierTitle()) ?>: <?php echo $this->escapeHtml($_rate->getErrorMessage()) ?>
|
71 |
+
<?php else: ?>
|
72 |
+
<?php if ($_sole) : ?>
|
73 |
+
<span class="no-display"><input type="radio" name="shipping_method[<?php echo $_address->getId() ?>]" value="<?php echo $this->escapeHtml($_rate->getCode()) ?>" id="s_method_<?php echo $_address->getId() ?>_<?php echo $_rate->getCode() ?>" checked="checked"/></span>
|
74 |
+
<?php else: ?>
|
75 |
+
<input type="radio" name="shipping_method[<?php echo $_address->getId() ?>]" value="<?php echo $_rate->getCode() ?>" id="s_method_<?php echo $_address->getId() ?>_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod($_address)) echo ' checked="checked"' ?> class="radio" />
|
76 |
+
<?php endif; ?>
|
77 |
+
<label for="s_method_<?php echo $_address->getId() ?>_<?php echo $_rate->getCode() ?>"><?php echo $this->escapeHtml($_rate->getMethodTitle()) ?>
|
78 |
+
<?php $_excl = $this->getShippingPrice($_address, $_rate->getPrice(), $this->helper('tax')->displayShippingPriceIncludingTax()); ?>
|
79 |
+
<?php $_incl = $this->getShippingPrice($_address, $_rate->getPrice(), true); ?>
|
80 |
+
<?php echo $_excl; ?>
|
81 |
+
<?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
|
82 |
+
(<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
|
83 |
+
<?php endif; ?>
|
84 |
+
</label>
|
85 |
+
<?php endif ?>
|
86 |
+
</li>
|
87 |
+
<?php endforeach; ?>
|
88 |
+
</ul>
|
89 |
+
</dd>
|
90 |
+
<?php endforeach; ?>
|
91 |
+
</dl>
|
92 |
+
<?php endif; ?>
|
93 |
+
</div>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
<div class="col-2 col-wide">
|
97 |
+
<?php echo $this->helper('giftmessage/message')->getInline('multishipping_adress_checkbox', $_address); ?>
|
98 |
+
<h3><?php echo $this->__('Items') ?> <span class="separator">|</span> <a href="<?php echo $this->getItemsEditUrl($_address) ?>"><?php echo $this->__('Edit Items') ?></a></h3>
|
99 |
+
<table class="data-table" id="shipping-table-<?php echo $_address->getId() ?>">
|
100 |
+
<col />
|
101 |
+
<col width="1" />
|
102 |
+
<thead>
|
103 |
+
<tr>
|
104 |
+
<th><?php echo $this->__('Product Name') ?></th>
|
105 |
+
<th class="a-center"><?php echo $this->__('Qty') ?></th>
|
106 |
+
</tr>
|
107 |
+
</thead>
|
108 |
+
<tbody>
|
109 |
+
<?php foreach ($this->getAddressItems($_address) as $_item): ?>
|
110 |
+
<tr>
|
111 |
+
<td>
|
112 |
+
<?php echo $this->getItemHtml($_item->getQuoteItem()) ?>
|
113 |
+
</td>
|
114 |
+
<td class="a-center"><?php echo $_item->getQty() ?></td>
|
115 |
+
</tr>
|
116 |
+
<?php endforeach; ?>
|
117 |
+
</tbody>
|
118 |
+
</table>
|
119 |
+
<script type="text/javascript">decorateTable('shipping-table-<?php echo $_address->getId() ?>')</script>
|
120 |
+
<?php echo $this->helper('giftmessage/message')->getInline('multishipping_adress', $_address); ?>
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
<?php endforeach; ?>
|
124 |
+
<?php echo $this->getChildHtml('checkout_billing_items') ?>
|
125 |
+
<div class="buttons-set">
|
126 |
+
<p class="back-link"><a href="<?php echo $this->getBackUrl() ?>"><small>« </small><?php echo $this->__('Back to Select Addresses') ?></a></p>
|
127 |
+
<button data-action="checkout-continue-billing" type="submit" title="<?php echo $this->__('Continue to Billing Information') ?>" class="button"><span><span><?php echo $this->__('Continue to Billing Information') ?></span></span></button>
|
128 |
+
</div>
|
129 |
+
</form>
|
130 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/state.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Mustishipping state
|
30 |
+
*
|
31 |
+
* @see Mage_Checkout_Block_Multishipping_State
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<ul class="checkout-progress" id="checkout-progress-state">
|
35 |
+
<?php foreach ($this->getSteps() as $_step): ?>
|
36 |
+
<li title="<?php echo $_step->getLabel() ?>"<?php if($_step->getIsActive()): ?> class="active"<?php endif; ?>><span><?php echo $_step->getLabel() ?></span></li>
|
37 |
+
<?php endforeach; ?>
|
38 |
+
</ul>
|
39 |
+
<script type="text/javascript">decorateGeneric($$('#checkout-progress-state li'), ['first','last']);</script>
|
app/design/frontend/modulesgarden/minimo/template/checkout/multishipping/success.phtml
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="multiple-checkout">
|
28 |
+
<div class="page-title">
|
29 |
+
<h1 data-role="page-title"><?php echo $this->__('Order Success') ?></h1>
|
30 |
+
</div>
|
31 |
+
<h2 class="sub-title"><?php echo $this->__('Thank you for your purchase!') ?></h2>
|
32 |
+
<p><?php echo $this->__('We are processing your order and you will soon receive an email with details of the order. Once the order has shipped you will receive another email with a link to track its progress.') ?></p>
|
33 |
+
<?php if($_orderIds = $this->getOrderIds()): ?>
|
34 |
+
<p data-role="order-numbers">
|
35 |
+
<?php $flag = false ?>
|
36 |
+
<?php echo $this->__('Your order number is ') ?>
|
37 |
+
<?php foreach ($_orderIds as $orderId=>$incrementId): ?>
|
38 |
+
<?php if ($flag): ?>
|
39 |
+
<?php echo ', ' ?>
|
40 |
+
<?php endif; ?>
|
41 |
+
<?php $flag = true ?>
|
42 |
+
<a href="<?php echo $this->getViewOrderUrl($orderId) ?>"><?php echo $incrementId ?></a>
|
43 |
+
<?php endforeach; ?>
|
44 |
+
</p>
|
45 |
+
<?php endif; ?>
|
46 |
+
<?php echo $this->getChildHtml() ?>
|
47 |
+
<div class="buttons-set">
|
48 |
+
<button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button" onclick="setLocation('<?php echo $this->getContinueUrl() ?>')"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
|
49 |
+
</div>
|
50 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage.phtml
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Checkout') ?></h1>
|
29 |
+
</div>
|
30 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl('varien/accordion.js') ?>"></script>
|
31 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/opcheckout.js') ?>"></script>
|
32 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/opcheckout.extended.js') ?>"></script>
|
33 |
+
<ol class="opc" id="checkoutSteps">
|
34 |
+
<?php $i=0; foreach($this->getSteps() as $_stepId => $_stepInfo): ?>
|
35 |
+
<?php if (!$this->getChild($_stepId) || !$this->getChild($_stepId)->isShow()): continue; endif; $i++ ?>
|
36 |
+
<li id="opc-<?php echo $_stepId ?>" class="section<?php echo !empty($_stepInfo['allow'])?' allow':'' ?><?php echo !empty($_stepInfo['complete'])?' saved':'' ?>">
|
37 |
+
<div class="step-title">
|
38 |
+
<span class="number"><?php echo $i ?></span>
|
39 |
+
<h2><?php echo $_stepInfo['label'] ?></h2>
|
40 |
+
<a href="#"><?php echo $this->__('Edit') ?></a>
|
41 |
+
</div>
|
42 |
+
<div id="checkout-step-<?php echo $_stepId ?>" class="step a-item" style="display:none;">
|
43 |
+
<?php echo $this->getChildHtml($_stepId) ?>
|
44 |
+
</div>
|
45 |
+
</li>
|
46 |
+
<?php endforeach ?>
|
47 |
+
</ol>
|
48 |
+
<script type="text/javascript">
|
49 |
+
//<![CDATA[
|
50 |
+
var accordion = new Accordion('checkoutSteps', '.step-title', true);
|
51 |
+
<?php if($this->getActiveStep()): ?>
|
52 |
+
accordion.openSection('opc-<?php echo $this->getActiveStep() ?>');
|
53 |
+
<?php endif ?>
|
54 |
+
var checkout = new Checkout(accordion,{
|
55 |
+
progress: '<?php echo $this->getUrl('checkout/onepage/progress') ?>',
|
56 |
+
review: '<?php echo $this->getUrl('checkout/onepage/review') ?>',
|
57 |
+
saveMethod: '<?php echo $this->getUrl('checkout/onepage/saveMethod') ?>',
|
58 |
+
failure: '<?php echo $this->getUrl('checkout/cart') ?>'}
|
59 |
+
);
|
60 |
+
//]]>
|
61 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/link.phtml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if ($this->isPossibleOnepageCheckout()):?>
|
28 |
+
<button type="button" title="<?php echo $this->__('Proceed to Checkout') ?>" class="button_green<?php if ($this->isDisabled()):?> no-checkout<?php endif; ?>"<?php if ($this->isDisabled()):?> disabled="disabled"<?php endif; ?> onclick="window.location='<?php echo $this->getCheckoutUrl() ?>';"><span><span><?php echo $this->__('Proceed to Checkout') ?></span></span></button>
|
29 |
+
<?php endif?>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/login.phtml
ADDED
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php /* Extensions placeholder */ ?>
|
28 |
+
<?php echo $this->getChildHtml('checkout.onepage.login.extra')?>
|
29 |
+
<div class="col2-set">
|
30 |
+
<?php echo $this->getChildHtml('login_before')?>
|
31 |
+
<div class="col-1">
|
32 |
+
<h3><?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?><?php echo $this->__('Checkout as a Guest or Register') ?><?php else: ?><?php echo $this->__('Register to Create an Account') ?><?php endif; ?></h3>
|
33 |
+
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
|
34 |
+
<p><?php echo $this->__('Register with us for future convenience:') ?></p>
|
35 |
+
<?php else: ?>
|
36 |
+
<p><strong><?php echo $this->__('Register and save time!') ?></strong><br />
|
37 |
+
<?php echo $this->__('Register with us for future convenience:') ?></p>
|
38 |
+
<ul>
|
39 |
+
<li><?php echo $this->__('Fast and easy check out') ?></li>
|
40 |
+
<li><?php echo $this->__('Easy access to your order history and status') ?></li>
|
41 |
+
</ul>
|
42 |
+
<?php endif; ?>
|
43 |
+
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
|
44 |
+
<ul class="form-list">
|
45 |
+
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
|
46 |
+
<li class="control">
|
47 |
+
<input type="radio" name="checkout_method" id="login:guest" value="guest"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_GUEST): ?> checked="checked"<?php endif; ?> class="radio" /><label for="login:guest"><?php echo $this->__('Checkout as Guest') ?></label>
|
48 |
+
</li>
|
49 |
+
<?php endif; ?>
|
50 |
+
<li class="control">
|
51 |
+
<input type="radio" name="checkout_method" id="login:register" value="register"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_REGISTER || !$this->getQuote()->isAllowedGuestCheckout()): ?> checked="checked"<?php endif ?> class="radio" /><label for="login:register"><?php echo $this->__('Register') ?></label>
|
52 |
+
</li>
|
53 |
+
</ul>
|
54 |
+
<h4><?php echo $this->__('Register and save time!') ?></h4>
|
55 |
+
<p><?php echo $this->__('Register with us for future convenience:') ?></p>
|
56 |
+
<ul class="ul">
|
57 |
+
<li><?php echo $this->__('Fast and easy check out') ?></li>
|
58 |
+
<li><?php echo $this->__('Easy access to your order history and status') ?></li>
|
59 |
+
</ul>
|
60 |
+
<?php else: ?>
|
61 |
+
<input type="hidden" name="checkout_method" id="login:register" value="register" checked="checked" />
|
62 |
+
<?php endif; ?>
|
63 |
+
</div>
|
64 |
+
<div class="col-2">
|
65 |
+
<h3><?php echo $this->__('Login') ?></h3>
|
66 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
67 |
+
<form id="login-form" action="<?php echo $this->getPostAction() ?>" method="post">
|
68 |
+
<fieldset>
|
69 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
70 |
+
<h4><?php echo $this->__('Already registered?') ?></h4>
|
71 |
+
<p><?php echo $this->__('Please log in below:') ?></p>
|
72 |
+
<ul class="form-list">
|
73 |
+
<li>
|
74 |
+
<label for="login-email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
75 |
+
<div class="input-box">
|
76 |
+
<input type="text" class="input-text required-entry validate-email" id="login-email" name="login[username]" value="<?php echo $this->escapeHtml($this->getUsername()) ?>" />
|
77 |
+
</div>
|
78 |
+
</li>
|
79 |
+
<li>
|
80 |
+
<label for="login-password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
|
81 |
+
<div class="input-box">
|
82 |
+
<input type="password" class="input-text required-entry" id="login-password" name="login[password]" />
|
83 |
+
</div>
|
84 |
+
</li>
|
85 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
86 |
+
</ul>
|
87 |
+
</fieldset>
|
88 |
+
</form>
|
89 |
+
</div>
|
90 |
+
</div>
|
91 |
+
<div class="col2-set">
|
92 |
+
<div class="col-1">
|
93 |
+
<div class="buttons-set">
|
94 |
+
<p class="required"> </p>
|
95 |
+
<button type="button" class="button_green" onclick="checkout.setMethod();"><span><span><?php echo ($this->getQuote()->isAllowedGuestCheckout() ? $this->__('Continue') : $this->__('Register')) ?></span></span></button>
|
96 |
+
</div>
|
97 |
+
</div>
|
98 |
+
<div class="col-2">
|
99 |
+
<div class="buttons-set">
|
100 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
101 |
+
<a href="<?php echo $this->getUrl('customer/account/forgotpassword') ?>" class="f-left"><?php echo $this->__('Forgot your password?') ?></a>
|
102 |
+
<button type="submit" class="button_green" onclick="onepageLogin(this)"><span><span><?php echo $this->__('Login') ?></span></span></button>
|
103 |
+
</div>
|
104 |
+
</div>
|
105 |
+
</div>
|
106 |
+
<script type="text/javascript">
|
107 |
+
//<![CDATA[
|
108 |
+
var loginForm = new VarienForm('login-form', true);
|
109 |
+
$('login-email').observe('keypress', bindLoginPost);
|
110 |
+
$('login-password').observe('keypress', bindLoginPost);
|
111 |
+
function bindLoginPost(evt){
|
112 |
+
if (evt.keyCode == Event.KEY_RETURN) {
|
113 |
+
loginForm.submit();
|
114 |
+
}
|
115 |
+
}
|
116 |
+
function onepageLogin(button)
|
117 |
+
{
|
118 |
+
if(loginForm.validator && loginForm.validator.validate()){
|
119 |
+
button.disabled = true;
|
120 |
+
loginForm.submit();
|
121 |
+
}
|
122 |
+
}
|
123 |
+
//]]>
|
124 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/payment.phtml
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
28 |
+
if ( $imgStyle == 'green'){
|
29 |
+
$img = '-green';
|
30 |
+
}else {
|
31 |
+
$img = '-blue';
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
<script type="text/javascript">
|
35 |
+
//<![CDATA[
|
36 |
+
var quoteBaseGrandTotal = <?php echo (float)$this->getQuoteBaseGrandTotal(); ?>;
|
37 |
+
var checkQuoteBaseGrandTotal = quoteBaseGrandTotal;
|
38 |
+
var payment = new Payment('co-payment-form', '<?php echo $this->getUrl('checkout/onepage/savePayment') ?>');
|
39 |
+
var lastPrice;
|
40 |
+
//]]>
|
41 |
+
</script>
|
42 |
+
<form action="" id="co-payment-form">
|
43 |
+
<fieldset>
|
44 |
+
<?php echo $this->getChildHtml('methods') ?>
|
45 |
+
</fieldset>
|
46 |
+
</form>
|
47 |
+
<div class="tool-tip" id="payment-tool-tip" style="display:none;">
|
48 |
+
<div class="btn-close"><a href="#" id="payment-tool-tip-close" title="<?php echo $this->__('Close') ?>"><?php echo $this->__('Close') ?></a></div>
|
49 |
+
<div class="tool-tip-content"><img src="<?php echo $this->getSkinUrl('images/cvv.gif') ?>" alt="<?php echo $this->__('Card Verification Number Visual Reference') ?>" title="<?php echo $this->__('Card Verification Number Visual Reference') ?>" /></div>
|
50 |
+
</div>
|
51 |
+
<div class="buttons-set" id="payment-buttons-container">
|
52 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
53 |
+
<p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
54 |
+
<button type="button" class="button_green" onclick="payment.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
|
55 |
+
<span class="please-wait" id="payment-please-wait" style="display:none;">
|
56 |
+
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader'.$img.'.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
|
57 |
+
</span>
|
58 |
+
</div>
|
59 |
+
<script type="text/javascript">
|
60 |
+
//<![CDATA[
|
61 |
+
function toggleToolTip(event){
|
62 |
+
if($('payment-tool-tip')){
|
63 |
+
$('payment-tool-tip').setStyle({
|
64 |
+
top: (Event.pointerY(event)-560)+'px'//,
|
65 |
+
//left: (Event.pointerX(event)+100)+'px'
|
66 |
+
})
|
67 |
+
$('payment-tool-tip').toggle();
|
68 |
+
}
|
69 |
+
Event.stop(event);
|
70 |
+
}
|
71 |
+
if($('payment-tool-tip-close')){
|
72 |
+
Event.observe($('payment-tool-tip-close'), 'click', toggleToolTip);
|
73 |
+
}
|
74 |
+
//]]>
|
75 |
+
</script>
|
76 |
+
<script type="text/javascript">
|
77 |
+
//<![CDATA[
|
78 |
+
payment.currentMethod = "<?php echo $this->getChild('methods')->getSelectedMethodCode() ?>";
|
79 |
+
//]]>
|
80 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/payment/info.phtml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<dl class="sp-methods" id="checkout-payment-method-load">
|
28 |
+
<!-- Content dynamically loaded. Content from the methods.phtml is loaded during the ajax call -->
|
29 |
+
</dl>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/payment/methods.phtml
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* One page checkout payment methods
|
30 |
+
*
|
31 |
+
* @var $this Mage_Checkout_Block_Onepage_Payment_Methods
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
|
35 |
+
<?php
|
36 |
+
$methods = $this->getMethods();
|
37 |
+
$oneMethod = count($methods) <= 1;
|
38 |
+
?>
|
39 |
+
<?php if (empty($methods)): ?>
|
40 |
+
<dt>
|
41 |
+
<?php echo $this->__('No Payment Methods') ?>
|
42 |
+
</dt>
|
43 |
+
<?php else:
|
44 |
+
foreach ($methods as $_method):
|
45 |
+
$_code = $_method->getCode();
|
46 |
+
?>
|
47 |
+
<dt>
|
48 |
+
<?php if(!$oneMethod): ?>
|
49 |
+
<input id="p_method_<?php echo $_code ?>" value="<?php echo $_code ?>" type="radio" name="payment[method]" title="<?php echo $this->escapeHtml($_method->getTitle()) ?>" onclick="payment.switchMethod('<?php echo $_code ?>')"<?php if($this->getSelectedMethodCode()==$_code): ?> checked="checked"<?php endif; ?> class="radio" />
|
50 |
+
<?php else: ?>
|
51 |
+
<span class="no-display"><input id="p_method_<?php echo $_code ?>" value="<?php echo $_code ?>" type="radio" name="payment[method]" checked="checked" class="radio" /></span>
|
52 |
+
<?php $oneMethod = $_code; ?>
|
53 |
+
<?php endif; ?>
|
54 |
+
<label for="p_method_<?php echo $_code ?>"><?php echo $this->escapeHtml($this->getMethodTitle($_method)) ?> <?php echo $this->getMethodLabelAfterHtml($_method) ?></label>
|
55 |
+
</dt>
|
56 |
+
<?php if ($html = $this->getPaymentMethodFormHtml($_method)): ?>
|
57 |
+
<dd>
|
58 |
+
<?php echo $html; ?>
|
59 |
+
</dd>
|
60 |
+
<?php endif; ?>
|
61 |
+
<?php endforeach;
|
62 |
+
endif;
|
63 |
+
?>
|
64 |
+
<?php echo $this->getChildChildHtml('additional'); ?>
|
65 |
+
<script type="text/javascript">
|
66 |
+
//<![CDATA[
|
67 |
+
<?php echo $this->getChildChildHtml('scripts'); ?>
|
68 |
+
payment.init();
|
69 |
+
<?php if (is_string($oneMethod)): ?>
|
70 |
+
payment.switchMethod('<?php echo $oneMethod ?>');
|
71 |
+
<?php endif; ?>
|
72 |
+
//]]>
|
73 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/review/button.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<button type="submit" title="<?php echo $this->__('Place Order') ?>" class="button_green" onclick="review.save();"><span><span><?php echo $this->__('Place Order') ?></span></span></button>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/review/info.phtml
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
28 |
+
if ( $imgStyle == 'green'){
|
29 |
+
$img = '-green';
|
30 |
+
}else {
|
31 |
+
$img = '-blue';
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
<?php echo $this->getChildHtml('items_before'); ?>
|
35 |
+
<div id="checkout-review-table-wrapper">
|
36 |
+
<table class="data-table" id="checkout-review-table">
|
37 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): $colspan = $rowspan = 2; else: $colspan = $rowspan = 1; endif; ?>
|
38 |
+
<col />
|
39 |
+
<col width="1" />
|
40 |
+
<col width="1" />
|
41 |
+
<col width="1" />
|
42 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
43 |
+
<col width="1" />
|
44 |
+
<col width="1" />
|
45 |
+
<?php endif; ?>
|
46 |
+
<thead>
|
47 |
+
<tr>
|
48 |
+
<th rowspan="<?php echo $rowspan ?>"><?php echo $this->__('Product Name') ?></th>
|
49 |
+
<th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Price') ?></th>
|
50 |
+
<th rowspan="<?php echo $rowspan ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
|
51 |
+
<th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Subtotal') ?></th>
|
52 |
+
</tr>
|
53 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
54 |
+
<tr>
|
55 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
56 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
57 |
+
<th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
|
58 |
+
<th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
|
59 |
+
</tr>
|
60 |
+
<?php endif; ?>
|
61 |
+
</thead>
|
62 |
+
<?php echo $this->getChildHtml('totals'); ?>
|
63 |
+
<tbody>
|
64 |
+
<?php foreach($this->getItems() as $_item): ?>
|
65 |
+
<?php echo $this->getItemHtml($_item)?>
|
66 |
+
<?php endforeach ?>
|
67 |
+
</tbody>
|
68 |
+
</table>
|
69 |
+
</div>
|
70 |
+
<?php echo $this->getChildHtml('items_after'); ?>
|
71 |
+
<script type="text/javascript">
|
72 |
+
//<![CDATA[
|
73 |
+
decorateTable('checkout-review-table');
|
74 |
+
truncateOptions();
|
75 |
+
//]]>
|
76 |
+
</script>
|
77 |
+
<div id="checkout-review-submit">
|
78 |
+
<?php echo $this->getChildHtml('agreements') ?>
|
79 |
+
<div class="buttons-set" id="review-buttons-container">
|
80 |
+
<p class="f-left"><?php echo $this->__('Forgot an Item?') ?> <a href="<?php echo $this->getUrl('checkout/cart') ?>"><?php echo $this->__('Edit Your Cart') ?></a></p>
|
81 |
+
<?php echo $this->getChildHtml('button') ?>
|
82 |
+
<span class="please-wait" id="review-please-wait" style="display:none;">
|
83 |
+
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader'.$img.'.gif') ?>" alt="<?php echo $this->__('Submitting order information...') ?>" title="<?php echo $this->__('Submitting order information...') ?>" class="v-middle" /> <?php echo $this->__('Submitting order information...') ?>
|
84 |
+
</span>
|
85 |
+
</div>
|
86 |
+
<script type="text/javascript">
|
87 |
+
//<![CDATA[
|
88 |
+
review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder', array('form_key' => Mage::getSingleton('core/session')->getFormKey())) ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
|
89 |
+
//]]>
|
90 |
+
</script>
|
91 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/shipping.phtml
ADDED
@@ -0,0 +1,163 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
28 |
+
if ( $imgStyle == 'green'){
|
29 |
+
$img = '-green';
|
30 |
+
}else {
|
31 |
+
$img = '-blue';
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
<form action="" id="co-shipping-form">
|
35 |
+
<ul class="form-list">
|
36 |
+
<?php if ($this->customerHasAddresses()): ?>
|
37 |
+
<li class="wide">
|
38 |
+
<label for="shipping-address-select"><?php echo $this->__('Select a shipping address from your address book or enter a new address.') ?></label>
|
39 |
+
<div class="input-box">
|
40 |
+
<?php echo $this->getAddressesHtmlSelect('shipping') ?>
|
41 |
+
</div>
|
42 |
+
</li>
|
43 |
+
<?php endif ?>
|
44 |
+
<li id="shipping-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif ?>>
|
45 |
+
<fieldset>
|
46 |
+
<input type="hidden" name="shipping[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="shipping:address_id" />
|
47 |
+
<ul>
|
48 |
+
<li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress())->setFieldIdFormat('shipping:%s')->setFieldNameFormat('shipping[%s]')->setFieldParams('onchange="shipping.setSameAsBilling(false)"')->toHtml() ?></li>
|
49 |
+
<li class="fields">
|
50 |
+
<div class="fields">
|
51 |
+
<label for="shipping:company"><?php echo $this->__('Company') ?></label>
|
52 |
+
<div class="input-box">
|
53 |
+
<input type="text" id="shipping:company" name="shipping[company]" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" onchange="shipping.setSameAsBilling(false);" />
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
</li>
|
57 |
+
<?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
|
58 |
+
<li class="wide">
|
59 |
+
<label for="shipping:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
|
60 |
+
<div class="input-box">
|
61 |
+
<input type="text" title="<?php echo $this->__('Street Address') ?>" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" class="input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
|
62 |
+
</div>
|
63 |
+
</li>
|
64 |
+
<?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
|
65 |
+
<?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
|
66 |
+
<li class="wide">
|
67 |
+
<div class="input-box">
|
68 |
+
<input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="shipping[street][]" id="shipping:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
|
69 |
+
</div>
|
70 |
+
</li>
|
71 |
+
<?php endfor; ?>
|
72 |
+
<?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
|
73 |
+
<li class="wide">
|
74 |
+
<label for="billing:vat_id"><?php echo $this->__('VAT Number'); ?></label>
|
75 |
+
<div class="input-box">
|
76 |
+
<input type="text" id="shipping:vat_id" name="shipping[vat_id]" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()); ?>" title="<?php echo $this->__('VAT Number'); ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
|
77 |
+
</div>
|
78 |
+
</li>
|
79 |
+
<?php endif; ?>
|
80 |
+
<li class="fields">
|
81 |
+
<div class="field">
|
82 |
+
<label for="shipping:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
|
83 |
+
<div class="input-box">
|
84 |
+
<input type="text" title="<?php echo $this->__('City') ?>" name="shipping[city]" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="shipping:city" onchange="shipping.setSameAsBilling(false);" />
|
85 |
+
</div>
|
86 |
+
</div>
|
87 |
+
<div class="field">
|
88 |
+
<label for="shipping:region" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
|
89 |
+
<div class="input-box">
|
90 |
+
<select id="shipping:region_id" name="shipping[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
|
91 |
+
<option value=""><?php echo $this->__('Please select region, state or province') ?></option>
|
92 |
+
</select>
|
93 |
+
<script type="text/javascript">
|
94 |
+
//<![CDATA[
|
95 |
+
$('shipping:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
|
96 |
+
//]]>
|
97 |
+
</script>
|
98 |
+
<input type="text" id="shipping:region" name="shipping[region]" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
|
99 |
+
</div>
|
100 |
+
</div>
|
101 |
+
</li>
|
102 |
+
<li class="fields">
|
103 |
+
<div class="field">
|
104 |
+
<label for="shipping:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
|
105 |
+
<div class="input-box">
|
106 |
+
<input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="shipping[postcode]" id="shipping:postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" onchange="shipping.setSameAsBilling(false);" />
|
107 |
+
</div>
|
108 |
+
</div>
|
109 |
+
<div class="field">
|
110 |
+
<label for="shipping:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
|
111 |
+
<div class="input-box">
|
112 |
+
<?php echo $this->getCountryHtmlSelect('shipping') ?>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
</li>
|
116 |
+
<li class="fields">
|
117 |
+
<div class="field">
|
118 |
+
<label for="shipping:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
|
119 |
+
<div class="input-box">
|
120 |
+
<input type="text" name="shipping[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="shipping:telephone" onchange="shipping.setSameAsBilling(false);" />
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
<div class="field">
|
124 |
+
<label for="shipping:fax"><?php echo $this->__('Fax') ?></label>
|
125 |
+
<div class="input-box">
|
126 |
+
<input type="text" name="shipping[fax]" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="shipping:fax" onchange="shipping.setSameAsBilling(false);" />
|
127 |
+
</div>
|
128 |
+
</div>
|
129 |
+
</li>
|
130 |
+
<?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
|
131 |
+
<li class="control">
|
132 |
+
<input type="checkbox" name="shipping[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="shipping:save_in_address_book" onchange="shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="shipping:save_in_address_book"><?php echo $this->__('Save in address book') ?></label></li>
|
133 |
+
<?php else:?>
|
134 |
+
<li class="no-display"><input type="hidden" name="shipping[save_in_address_book]" value="1" /></li>
|
135 |
+
<?php endif;?>
|
136 |
+
</ul>
|
137 |
+
</fieldset>
|
138 |
+
</li>
|
139 |
+
<li class="control">
|
140 |
+
<input type="checkbox" name="shipping[same_as_billing]" id="shipping:same_as_billing" value="1"<?php if($this->getAddress()->getSameAsBilling()): ?> checked="checked"<?php endif; ?> title="<?php echo $this->__('Use Billing Address') ?>" onclick="shipping.setSameAsBilling(this.checked)" class="checkbox" /><label for="shipping:same_as_billing"><?php echo $this->__('Use Billing Address') ?></label>
|
141 |
+
</li>
|
142 |
+
</ul>
|
143 |
+
<div class="buttons-set" id="shipping-buttons-container">
|
144 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
145 |
+
<p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
146 |
+
<button type="button" class="button-green" title="<?php echo $this->__('Continue') ?>" onclick="shipping.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
|
147 |
+
<span id="shipping-please-wait" class="please-wait" style="display:none;">
|
148 |
+
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader'.$img.'.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
|
149 |
+
</span>
|
150 |
+
</div>
|
151 |
+
</form>
|
152 |
+
<script type="text/javascript">
|
153 |
+
//<![CDATA[
|
154 |
+
var shipping = new Shipping('co-shipping-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveShipping') ?>',
|
155 |
+
'<?php echo $this->getUrl('checkout/onepage/shippingMethod') ?>');
|
156 |
+
var shippingForm = new VarienForm('co-shipping-form');
|
157 |
+
shippingForm.extraChildParams = ' onchange="shipping.setSameAsBilling(false);"';
|
158 |
+
//shippingForm.setElementsRelation('shipping:country_id', 'shipping:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
|
159 |
+
$('shipping-address-select') && shipping.newAddress(!$('shipping-address-select').value);
|
160 |
+
|
161 |
+
var shippingRegionUpdater = new RegionUpdater('shipping:country_id', 'shipping:region', 'shipping:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'shipping:postcode');
|
162 |
+
//]]>
|
163 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/checkout/onepage/shipping_method.phtml
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
28 |
+
if ( $imgStyle == 'green'){
|
29 |
+
$img = '-green';
|
30 |
+
}else {
|
31 |
+
$img = '-blue';
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
<form id="co-shipping-method-form" action="">
|
35 |
+
<div id="checkout-shipping-method-load">
|
36 |
+
<!-- Content loaded dynamically -->
|
37 |
+
</div>
|
38 |
+
<script type="text/javascript">
|
39 |
+
//<![CDATA[
|
40 |
+
var shippingMethod = new ShippingMethod('co-shipping-method-form', "<?php echo $this->getUrl('checkout/onepage/saveShippingMethod') ?>");
|
41 |
+
//]]>
|
42 |
+
</script>
|
43 |
+
<div id="onepage-checkout-shipping-method-additional-load">
|
44 |
+
<?php echo $this->getChildHtml('additional') ?>
|
45 |
+
</div>
|
46 |
+
<div class="buttons-set" id="shipping-method-buttons-container">
|
47 |
+
<p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
48 |
+
<button type="button" class="button_green" onclick="shippingMethod.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
|
49 |
+
<span id="shipping-method-please-wait" class="please-wait" style="display:none;">
|
50 |
+
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader'.$img.'.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
|
51 |
+
</span>
|
52 |
+
</div>
|
53 |
+
</form>
|
app/design/frontend/modulesgarden/minimo/template/checkout/success.phtml
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Your order has been received.') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
31 |
+
<h2 class="sub-title"><?php echo $this->__('Thank you for your purchase!') ?></h2>
|
32 |
+
|
33 |
+
<?php if ($this->getOrderId()):?>
|
34 |
+
<?php if ($this->getCanViewOrder()) :?>
|
35 |
+
<p><?php echo $this->__('Your order # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getViewOrderUrl()), $this->escapeHtml($this->getOrderId()))) ?></p>
|
36 |
+
<?php else :?>
|
37 |
+
<p><?php echo $this->__('Your order # is: %s.', $this->escapeHtml($this->getOrderId())) ?></p>
|
38 |
+
<?php endif;?>
|
39 |
+
<p><?php echo $this->__('You will receive an order confirmation email with details of your order and a link to track its progress.') ?></p>
|
40 |
+
<?php if ($this->getCanViewOrder() && $this->getCanPrintOrder()) :?>
|
41 |
+
<p>
|
42 |
+
<?php echo $this->__('Click <a href="%s" onclick="this.target=\'_blank\'">here to print</a> a copy of your order confirmation.', $this->getPrintUrl()) ?>
|
43 |
+
<?php echo $this->getChildHtml() ?>
|
44 |
+
</p>
|
45 |
+
<?php endif;?>
|
46 |
+
<?php endif;?>
|
47 |
+
|
48 |
+
<?php if ($this->getAgreementRefId()): ?>
|
49 |
+
<p><?php echo $this->__('Your billing agreement # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getAgreementUrl()), $this->escapeHtml($this->getAgreementRefId())))?></p>
|
50 |
+
<?php endif;?>
|
51 |
+
|
52 |
+
<?php if ($profiles = $this->getRecurringProfiles()):?>
|
53 |
+
<p><?php echo $this->__('Your recurring payment profiles:'); ?></p>
|
54 |
+
<ul class="disc">
|
55 |
+
<?php foreach($profiles as $profile):?>
|
56 |
+
<?php $profileIdHtml = ($this->getCanViewProfiles() ? sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getProfileUrl($profile)), $this->escapeHtml($this->getObjectData($profile, 'reference_id'))) : $this->escapeHtml($this->getObjectData($profile, 'reference_id')));?>
|
57 |
+
<li><?php echo $this->__('Payment profile # %s: "%s".', $profileIdHtml, $this->escapeHtml($this->getObjectData($profile, 'schedule_description')))?></li>
|
58 |
+
<?php endforeach;?>
|
59 |
+
</ul>
|
60 |
+
<?php endif;?>
|
61 |
+
|
62 |
+
<div class="buttons-set">
|
63 |
+
<button type="button" class="button" title="<?php echo $this->__('Continue Shopping') ?>" onclick="window.location='<?php echo $this->getUrl() ?>'"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
|
64 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/checkout/total/default.phtml
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<tr>
|
28 |
+
<td colspan="<?php echo $this->getColspan(); ?>" style="<?php echo $this->getTotal()->getStyle() ?>" class="a-right">
|
29 |
+
<?php if ($this->getRenderingArea() == $this->getTotal()->getArea()): ?><strong><?php endif; ?>
|
30 |
+
<?php echo $this->escapeHtml($this->getTotal()->getTitle()); ?>
|
31 |
+
<?php if ($this->getRenderingArea() == $this->getTotal()->getArea()): ?></strong><?php endif; ?>
|
32 |
+
</td>
|
33 |
+
<td style="<?php echo $this->getTotal()->getStyle() ?>" class="a-right">
|
34 |
+
<?php if ($this->getRenderingArea() == $this->getTotal()->getArea()): ?><strong><?php endif; ?>
|
35 |
+
<?php echo $this->helper('checkout')->formatPrice($this->getTotal()->getValue()) ?>
|
36 |
+
<?php if ($this->getRenderingArea() == $this->getTotal()->getArea()): ?></strong><?php endif; ?>
|
37 |
+
</td>
|
38 |
+
</tr>
|
app/design/frontend/modulesgarden/minimo/template/cms/content.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php echo $pageData->getPageContent(); ?>
|
app/design/frontend/modulesgarden/minimo/template/cms/widget/static_block/default.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="widget widget-static-block"><?php echo $this->getText(); ?></div>
|
app/design/frontend/modulesgarden/minimo/template/contacts/form.phtml
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
|
28 |
+
<div class="page-title">
|
29 |
+
<h1><?php echo Mage::helper('contacts')->__('Contact Us') ?></h1>
|
30 |
+
</div>
|
31 |
+
<form action="<?php echo $this->getFormAction(); ?>" id="contactForm" method="post">
|
32 |
+
<div class="fieldset">
|
33 |
+
<h2 class="legend"><?php echo Mage::helper('contacts')->__('Contact Information') ?></h2>
|
34 |
+
<ul class="form-list">
|
35 |
+
<li class="fields">
|
36 |
+
<div class="field">
|
37 |
+
<label for="name" class="required"><em>*</em><?php echo Mage::helper('contacts')->__('Name') ?></label>
|
38 |
+
<div class="input-box">
|
39 |
+
<input name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserName()) ?>" class="input-text required-entry" type="text" />
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
<div class="field">
|
43 |
+
<label for="email" class="required"><em>*</em><?php echo Mage::helper('contacts')->__('Email') ?></label>
|
44 |
+
<div class="input-box">
|
45 |
+
<input name="email" id="email" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserEmail()) ?>" class="input-text required-entry validate-email" type="text" />
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
</li>
|
49 |
+
<li>
|
50 |
+
<label for="telephone"><?php echo Mage::helper('contacts')->__('Telephone') ?></label>
|
51 |
+
<div class="input-box">
|
52 |
+
<input name="telephone" id="telephone" title="<?php echo Mage::helper('contacts')->__('Telephone') ?>" value="" class="input-text" type="text" />
|
53 |
+
</div>
|
54 |
+
</li>
|
55 |
+
<li class="wide">
|
56 |
+
<label for="comment" class="required"><em>*</em><?php echo Mage::helper('contacts')->__('Comment') ?></label>
|
57 |
+
<div class="input-box">
|
58 |
+
<textarea name="comment" id="comment" title="<?php echo Mage::helper('contacts')->__('Comment') ?>" class="required-entry input-text" cols="5" rows="3"></textarea>
|
59 |
+
</div>
|
60 |
+
</li>
|
61 |
+
</ul>
|
62 |
+
</div>
|
63 |
+
<div class="buttons-set">
|
64 |
+
<p class="required"><?php echo Mage::helper('contacts')->__('* Required Fields') ?></p>
|
65 |
+
<input type="text" name="hideit" id="hideit" value="" style="display:none !important;" />
|
66 |
+
<button type="submit" title="<?php echo Mage::helper('contacts')->__('Submit') ?>" class="button_green"><span><span><?php echo Mage::helper('contacts')->__('Submit') ?></span></span></button>
|
67 |
+
</div>
|
68 |
+
</form>
|
69 |
+
<script type="text/javascript">
|
70 |
+
//<![CDATA[
|
71 |
+
var contactForm = new VarienForm('contactForm', true);
|
72 |
+
//]]>
|
73 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard.phtml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="dashboard">
|
28 |
+
<div class="page-title">
|
29 |
+
<h1><?php echo $this->__('My Dashboard') ?></h1>
|
30 |
+
</div>
|
31 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
32 |
+
<?php echo $this->getChildHtml('hello') ?>
|
33 |
+
<?php echo $this->getChildHtml('top') ?>
|
34 |
+
<div class="box-account box-info">
|
35 |
+
<div class="box-head">
|
36 |
+
<h2><?php echo $this->__('Account Information') ?></h2>
|
37 |
+
</div>
|
38 |
+
<?php /* Extensions placeholder */ ?>
|
39 |
+
<?php echo $this->getChildHtml('customer.account.dashboard.extra') ?>
|
40 |
+
<?php echo $this->getChildHtml('info') ?>
|
41 |
+
<?php echo $this->getChildHtml('address') ?>
|
42 |
+
</div>
|
43 |
+
<?php echo $this->getChildHtml('info1') ?>
|
44 |
+
<?php echo $this->getChildHtml('info2') ?>
|
45 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/address.phtml
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="col2-set">
|
28 |
+
<div class="box">
|
29 |
+
<div class="box-title">
|
30 |
+
<h3><?php echo $this->__('Address Book') ?></h3>
|
31 |
+
<a href="<?php echo $this->getAddressBookUrl() ?>"><?php echo $this->__('Manage Addresses') ?></a>
|
32 |
+
</div>
|
33 |
+
<div class="box-content">
|
34 |
+
<div class="col-1">
|
35 |
+
<h4><?php echo $this->__('Default Billing Address') ?></h4>
|
36 |
+
<address>
|
37 |
+
<?php echo $this->getPrimaryBillingAddressHtml() ?><br />
|
38 |
+
<a href="<?php echo $this->getPrimaryBillingAddressEditUrl() ?>"><?php echo $this->__('Edit Address') ?></a>
|
39 |
+
</address>
|
40 |
+
</div>
|
41 |
+
<div class="col-2">
|
42 |
+
<h4><?php echo $this->__('Default Shipping Address') ?></h4>
|
43 |
+
<address>
|
44 |
+
<?php echo $this->getPrimaryShippingAddressHtml() ?><br />
|
45 |
+
<a href="<?php echo $this->getPrimaryShippingAddressEditUrl() ?>"><?php echo $this->__('Edit Address') ?></a>
|
46 |
+
</address>
|
47 |
+
</div>
|
48 |
+
</div>
|
49 |
+
</div>
|
50 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/hello.phtml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="welcome-msg">
|
28 |
+
<p class="hello"><strong><?php echo $this->__('Hello, %s!', $this->escapeHtml($this->getCustomerName())) ?></strong></p>
|
29 |
+
<p><?php echo $this->__('From your My Account Dashboard you have the ability to view a snapshot of your recent account activity and update your account information. Select a link below to view or edit information.') ?></p>
|
30 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/info.phtml
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="col2-set">
|
28 |
+
<div class="col-1">
|
29 |
+
<div class="box">
|
30 |
+
<div class="box-title">
|
31 |
+
<h3><?php echo $this->__('Contact Information') ?></h3>
|
32 |
+
<a href="<?php echo $this->getUrl('customer/account/edit') ?>"><?php echo $this->__('Edit') ?></a>
|
33 |
+
</div>
|
34 |
+
<div class="box-content">
|
35 |
+
<p>
|
36 |
+
<?php echo $this->escapeHtml($this->getCustomer()->getName()) ?><br />
|
37 |
+
<?php echo $this->escapeHtml($this->getCustomer()->getEmail()) ?><br />
|
38 |
+
<a href="<?php echo $this->getChangePasswordUrl() ?>"><?php echo $this->__('Change Password') ?></a>
|
39 |
+
</p>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
</div>
|
43 |
+
<?php if( $this->isNewsletterEnabled() ): ?>
|
44 |
+
<div class="col-2">
|
45 |
+
<div class="box">
|
46 |
+
<div class="box-title">
|
47 |
+
<h3><?php echo $this->__('Newsletters') ?></h3>
|
48 |
+
<a href="<?php echo $this->getUrl('newsletter/manage') ?>"><?php echo $this->__('Edit') ?></a>
|
49 |
+
</div>
|
50 |
+
<div class="box-content">
|
51 |
+
<p>
|
52 |
+
<?php if( $this->getIsSubscribed() ): ?>
|
53 |
+
<?php echo $this->__("You are currently subscribed to 'General Subscription'.") ?>
|
54 |
+
<?php else: ?>
|
55 |
+
<?php echo $this->__('You are currently not subscribed to any newsletter.') ?>
|
56 |
+
<?php endif; ?>
|
57 |
+
</p>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
+
<?php /* Extensions placeholder */ ?>
|
61 |
+
<?php echo $this->getChildHtml('customer.account.dashboard.info.extra')?>
|
62 |
+
</div>
|
63 |
+
<?php endif; ?>
|
64 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/account/dashboard/newsletter.phtml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="col-2">
|
28 |
+
<h4><?php echo $this->__('Newsletters') ?></h4>
|
29 |
+
<a href="<?php echo $this->getUrl('newsletter/manage') ?>"><?php echo $this->__('Edit Newsletters') ?></a>
|
30 |
+
<p><?php echo $this->__('You are currently subscribed to our newsletter.') ?></p>
|
31 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/account/link/back.phtml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="buttons-set">
|
28 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
29 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/account/navigation.phtml
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="block block-account">
|
28 |
+
<div class="block-title">
|
29 |
+
<strong><span><?php echo $this->__('My Account'); ?></span></strong>
|
30 |
+
</div>
|
31 |
+
<div class="block-content">
|
32 |
+
<ul id="nav-left">
|
33 |
+
<?php $_links = $this->getLinks(); ?>
|
34 |
+
<?php $_index = 1; ?>
|
35 |
+
<?php $_count = count($_links); ?>
|
36 |
+
<?php foreach ($_links as $_link): ?>
|
37 |
+
<?php $_last = ($_index++ >= $_count); ?>
|
38 |
+
<?php if ($this->isActive($_link)): ?>
|
39 |
+
<li class="current<?php echo ($_last ? ' last' : '') ?>"><strong><?php echo $_link->getLabel() ?></strong></li>
|
40 |
+
<?php else: ?>
|
41 |
+
<li<?php echo ($_last ? ' class="last"' : '') ?>><a href="<?php echo $_link->getUrl() ?>"><?php echo $_link->getLabel() ?></a></li>
|
42 |
+
<?php endif; ?>
|
43 |
+
<?php endforeach; ?>
|
44 |
+
</ul>
|
45 |
+
</div>
|
46 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/address.phtml
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Address Books') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
31 |
+
<table width="100%">
|
32 |
+
<tr>
|
33 |
+
<td style="width:50%;"><h3>Default</h3>
|
34 |
+
<table width="100%">
|
35 |
+
<?php if(!empty($primaryAddresses)): ?>
|
36 |
+
<?php foreach($primaryAddresses as $_address): ?>
|
37 |
+
<tr>
|
38 |
+
<td>
|
39 |
+
<address>
|
40 |
+
<?php echo $_address->format('html') ?>
|
41 |
+
</address>
|
42 |
+
<p>
|
43 |
+
<strong><a href="<?php echo $this->getUrl('customer/address/form', array('address'=>$_address->getAddressId())) ?>" class="red-link"><?php echo $this->__('Edit Address') ?></a></strong>
|
44 |
+
</p>
|
45 |
+
</td>
|
46 |
+
</tr>
|
47 |
+
<?php endforeach; ?>
|
48 |
+
<?php else: ?>
|
49 |
+
<tr>
|
50 |
+
<td>
|
51 |
+
<p><?php echo $this->__('You have no default entries in your address book.') ?></p>
|
52 |
+
</td>
|
53 |
+
</tr>
|
54 |
+
<?php endif ?>
|
55 |
+
</table>
|
56 |
+
</td>
|
57 |
+
<td style="width:50%;"><h3><?php echo $this->__('Additional Address Entries') ?></h3>
|
58 |
+
<table width="100%">
|
59 |
+
<?php if(!empty($alternativeAddresses)): ?>
|
60 |
+
<?php foreach($alternativeAddresses as $_address): ?>
|
61 |
+
<tr>
|
62 |
+
<td>
|
63 |
+
<address>
|
64 |
+
<?php echo $_address->format('html') ?>
|
65 |
+
</address>
|
66 |
+
<p>
|
67 |
+
<strong><a href="<?php echo $this->getUrl('customer/address/form', array('address'=>$_address->getAddressId())) ?>" class="red-link"><?php echo $this->__('Edit Address') ?></a></strong><span class="separator"> | </span><strong><a href="#" onclick="return deleteAddress('<?php echo $_address->getAddressId() ?>');" class="red-link"><?php echo $this->__('Delete Address') ?></a></strong>
|
68 |
+
</p>
|
69 |
+
</td>
|
70 |
+
</tr>
|
71 |
+
<?php endforeach; ?>
|
72 |
+
<?php else: ?>
|
73 |
+
<tr>
|
74 |
+
<td>
|
75 |
+
<p><?php echo $this->__('You have no additional entries in your address book.') ?></p>
|
76 |
+
</td>
|
77 |
+
</tr>
|
78 |
+
<?php endif ?>
|
79 |
+
</table>
|
80 |
+
</td>
|
81 |
+
</tr>
|
82 |
+
</table>
|
83 |
+
<div class="buttons-set">
|
84 |
+
<p class="back-link"><a href="<?php echo $this->getUrl('customer/account/') ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
85 |
+
<button type="button" onclick="window.location='<?php echo $this->getUrl('customer/address/form') ?>';" class="button"><span><span><?php echo $this->__('New Address') ?></span></span></button>
|
86 |
+
</div>
|
87 |
+
<script type="text/javascript">
|
88 |
+
function deleteAddress(addressId) {
|
89 |
+
if(confirm('<?php echo $this->__('Are you sure you want to delete this address?') ?>')) {
|
90 |
+
window.location='<?php echo $this->getUrl("customer/address/delete") ?>address/'+addressId;
|
91 |
+
}
|
92 |
+
return false;
|
93 |
+
}
|
94 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/address/book.phtml
ADDED
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Temlate for Mage_Customer_Block_Address_Book block
|
30 |
+
* @var $test Mage_Customer_Block_Address_Book
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<div class="page-title title-buttons">
|
34 |
+
<h1><?php echo $this->__('Address Book') ?></h1>
|
35 |
+
<button type="button" title="<?php echo $this->__('Add New Address') ?>" class="button" onclick="window.location='<?php echo $this->getAddAddressUrl() ?>';"><span><span><?php echo $this->__('Add New Address') ?></span></span></button>
|
36 |
+
</div>
|
37 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
38 |
+
<div class="col2-set addresses-list">
|
39 |
+
<div class="col-1 addresses-primary">
|
40 |
+
<h2><?php echo $this->__('Default Addresses') ?></h2>
|
41 |
+
<ol>
|
42 |
+
<?php if($_pAddsses = Mage::getSingleton('customer/session')->getCustomer()->getDefaultBilling()): ?>
|
43 |
+
<li class="item">
|
44 |
+
<h3><?php echo $this->__('Default Billing Address') ?></h3>
|
45 |
+
<address>
|
46 |
+
<?php echo $this->getAddressHtml(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>
|
47 |
+
</address>
|
48 |
+
<p><a href="<?php echo $this->getAddressEditUrl(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>"><?php echo $this->__('Change Billing Address') ?></a></p>
|
49 |
+
</li>
|
50 |
+
<?php else: ?>
|
51 |
+
<li class="item">
|
52 |
+
<h3><?php echo $this->__('Default Billing Address') ?></h3>
|
53 |
+
<?php echo $this->__('You have no default billing address in your address book.') ?>
|
54 |
+
</li>
|
55 |
+
<?php endif ?>
|
56 |
+
|
57 |
+
<?php if($_pAddsses = Mage::getSingleton('customer/session')->getCustomer()->getDefaultShipping()): ?>
|
58 |
+
<li class="item">
|
59 |
+
<h3><?php echo $this->__('Default Shipping Address') ?></h3>
|
60 |
+
<address>
|
61 |
+
<?php echo $this->getAddressHtml(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>
|
62 |
+
</address>
|
63 |
+
<p><a href="<?php echo $this->getAddressEditUrl(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>"><?php echo $this->__('Change Shipping Address') ?></a></p>
|
64 |
+
</li>
|
65 |
+
<?php else: ?>
|
66 |
+
<li class="item empty">
|
67 |
+
<h3><?php echo $this->__('Default Shipping Address') ?></h3>
|
68 |
+
<p><?php echo $this->__('You have no default shipping address in your address book.') ?></p>
|
69 |
+
</li>
|
70 |
+
<?php endif ?>
|
71 |
+
</ol>
|
72 |
+
</div>
|
73 |
+
<div class="col-2 addresses-additional">
|
74 |
+
<h2><?php echo $this->__('Additional Address Entries') ?></h2>
|
75 |
+
<ol>
|
76 |
+
<?php if($_pAddsses = $this->getAdditionalAddresses()): ?>
|
77 |
+
<?php foreach($_pAddsses as $_address): ?>
|
78 |
+
<li class="item">
|
79 |
+
<address>
|
80 |
+
<?php echo $this->getAddressHtml($_address) ?>
|
81 |
+
</address>
|
82 |
+
<p><a href="<?php echo $this->getUrl('customer/address/edit', array('id'=>$_address->getId())) ?>"><?php echo $this->__('Edit Address') ?></a> <span class="separator">|</span> <a href="#" class="link-remove" onclick="return deleteAddress('<?php echo $_address->getId() ?>');"><?php echo $this->__('Delete Address') ?></a></p>
|
83 |
+
</li>
|
84 |
+
<?php endforeach; ?>
|
85 |
+
<?php else: ?>
|
86 |
+
<li class="item empty">
|
87 |
+
<p><?php echo $this->__('You have no additional address entries in your address book.') ?></p>
|
88 |
+
</li>
|
89 |
+
<?php endif ?>
|
90 |
+
</ol>
|
91 |
+
</div>
|
92 |
+
</div>
|
93 |
+
<div class="buttons-set">
|
94 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
95 |
+
</div>
|
96 |
+
<script type="text/javascript">
|
97 |
+
//<![CDATA[
|
98 |
+
function deleteAddress(addressId) {
|
99 |
+
if(confirm('<?php echo $this->__('Are you sure you want to delete this address?') ?>')) {
|
100 |
+
window.location='<?php echo $this->getDeleteUrl() ?>id/'+addressId;
|
101 |
+
}
|
102 |
+
return false;
|
103 |
+
}
|
104 |
+
//]]>
|
105 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/address/edit.phtml
ADDED
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Edit customer address template
|
30 |
+
*
|
31 |
+
* @see Mage_Customer_Block_Address_Edit
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php if($this->getTitle()): ?>
|
35 |
+
<div class="page-title">
|
36 |
+
<h1><?php echo $this->getTitle() ?></h1>
|
37 |
+
</div>
|
38 |
+
<?php endif; ?>
|
39 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
40 |
+
<form action="<?php echo $this->getSaveUrl() ?>" method="post" id="form-validate">
|
41 |
+
<div class="fieldset">
|
42 |
+
<?php echo $this->getBlockHtml('formkey')?>
|
43 |
+
<input type="hidden" name="success_url" value="<?php echo $this->getSuccessUrl() ?>" />
|
44 |
+
<input type="hidden" name="error_url" value="<?php echo $this->getErrorUrl() ?>" />
|
45 |
+
<h2 class="legend"><?php echo $this->__('Contact Information') ?></h2>
|
46 |
+
<ul class="form-list">
|
47 |
+
<li class="fields">
|
48 |
+
<?php echo $this->getNameBlockHtml() ?>
|
49 |
+
</li>
|
50 |
+
<li class="wide">
|
51 |
+
<label for="company"><?php echo $this->__('Company') ?></label>
|
52 |
+
<div class="input-box">
|
53 |
+
<input type="text" name="company" id="company" title="<?php echo $this->__('Company') ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
|
54 |
+
</div>
|
55 |
+
</li>
|
56 |
+
<li class="fields">
|
57 |
+
<div class="field">
|
58 |
+
<label for="telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
|
59 |
+
<div class="input-box">
|
60 |
+
<input type="text" name="telephone" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="telephone" />
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
<div class="field">
|
64 |
+
<label for="fax"><?php echo $this->__('Fax') ?></label>
|
65 |
+
<div class="input-box">
|
66 |
+
<input type="text" name="fax" id="fax" title="<?php echo $this->__('Fax') ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" />
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
</li>
|
70 |
+
</ul>
|
71 |
+
</div>
|
72 |
+
<div class="fieldset">
|
73 |
+
<h2 class="legend"><?php echo $this->__('Address') ?></h2>
|
74 |
+
<ul class="form-list">
|
75 |
+
<?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
|
76 |
+
<li class="wide">
|
77 |
+
<label for="street_1" class="required"><em>*</em><?php echo $this->__('Street Address') ?></label>
|
78 |
+
<div class="input-box">
|
79 |
+
<input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" title="<?php echo $this->__('Street Address') ?>" id="street_1" class="input-text <?php echo $_streetValidationClass ?>" />
|
80 |
+
</div>
|
81 |
+
</li>
|
82 |
+
<?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
|
83 |
+
<?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
|
84 |
+
<li class="wide">
|
85 |
+
<div class="input-box">
|
86 |
+
<input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" title="<?php echo $this->__('Street Address %s', $_i) ?>" id="street_<?php echo $_i ?>" class="input-text <?php echo $_streetValidationClass ?>" />
|
87 |
+
</div>
|
88 |
+
</li>
|
89 |
+
<?php endfor; ?>
|
90 |
+
<?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
|
91 |
+
<li class="wide">
|
92 |
+
<label for="vat_id"><?php echo $this->__('VAT Number') ?></label>
|
93 |
+
<div class="input-box">
|
94 |
+
<input type="text" name="vat_id" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()) ?>" title="<?php echo $this->__('VAT Number') ?>" id="vat_id" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
|
95 |
+
</div>
|
96 |
+
</li>
|
97 |
+
<?php endif; ?>
|
98 |
+
<li class="fields">
|
99 |
+
<div class="field">
|
100 |
+
<label for="city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
|
101 |
+
<div class="input-box">
|
102 |
+
<input type="text" name="city" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="city" />
|
103 |
+
</div>
|
104 |
+
</div>
|
105 |
+
<div class="field">
|
106 |
+
<label for="region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
|
107 |
+
<div class="input-box">
|
108 |
+
<select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
|
109 |
+
<option value=""><?php echo $this->__('Please select region, state or province') ?></option>
|
110 |
+
</select>
|
111 |
+
<script type="text/javascript">
|
112 |
+
//<![CDATA[
|
113 |
+
$('region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
|
114 |
+
//]]>
|
115 |
+
</script>
|
116 |
+
<input type="text" id="region" name="region" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" />
|
117 |
+
</div>
|
118 |
+
</div>
|
119 |
+
</li>
|
120 |
+
<li class="fields">
|
121 |
+
<div class="field">
|
122 |
+
<label for="zip" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
|
123 |
+
<div class="input-box">
|
124 |
+
<input type="text" name="postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" title="<?php echo $this->__('Zip/Postal Code') ?>" id="zip" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
|
125 |
+
</div>
|
126 |
+
</div>
|
127 |
+
<div class="field">
|
128 |
+
<label for="country" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
|
129 |
+
<div class="input-box">
|
130 |
+
<?php echo $this->getCountryHtmlSelect() ?>
|
131 |
+
</div>
|
132 |
+
</div>
|
133 |
+
</li>
|
134 |
+
<li<?php if($this->canSetAsDefaultBilling()) echo ' class="control"' ?>>
|
135 |
+
<?php if($this->isDefaultBilling()): ?>
|
136 |
+
<strong><?php echo $this->__('Default Billing Address') ?></strong>
|
137 |
+
<?php elseif($this->canSetAsDefaultBilling()): ?>
|
138 |
+
<input type="checkbox" id="primary_billing" name="default_billing" value="1" title="<?php echo $this->__('Use as My Default Billing Address') ?>" class="checkbox" /><label for="primary_billing"><?php echo $this->__('Use as my default billing address') ?></label>
|
139 |
+
<?php else: ?>
|
140 |
+
<input type="hidden" name="default_billing" value="1" />
|
141 |
+
<?php endif; ?>
|
142 |
+
</li>
|
143 |
+
<li<?php if($this->canSetAsDefaultShipping()) echo ' class="control"' ?>>
|
144 |
+
<?php if($this->isDefaultShipping()): ?>
|
145 |
+
<strong><?php echo $this->__('Default Shipping Address') ?></strong>
|
146 |
+
<?php elseif($this->canSetAsDefaultShipping()): ?>
|
147 |
+
<input type="checkbox" id="primary_shipping" name="default_shipping" value="1" title="<?php echo $this->__('Use as My Default Shipping Address') ?>" class="checkbox" /><label for="primary_shipping"><?php echo $this->__('Use as my default shipping address') ?></label>
|
148 |
+
<?php else: ?>
|
149 |
+
<input type="hidden" name="default_shipping" value="1" />
|
150 |
+
<?php endif; ?>
|
151 |
+
</li>
|
152 |
+
</ul>
|
153 |
+
</div>
|
154 |
+
<div class="buttons-set">
|
155 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
156 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
157 |
+
<button data-action="save-customer-address" type="submit" title="<?php echo $this->__('Save Address') ?>" class="button"><span><span><?php echo $this->__('Save Address') ?></span></span></button>
|
158 |
+
</div>
|
159 |
+
</form>
|
160 |
+
<script type="text/javascript">
|
161 |
+
//<![CDATA[
|
162 |
+
var dataForm = new VarienForm('form-validate', true);
|
163 |
+
new RegionUpdater('country', 'region', 'region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'zip');
|
164 |
+
//]]>
|
165 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/balance.phtml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
28 |
+
<?php echo $this->__('Your account balance is: %s', $customer->getStoreBalance()) ?>
|
29 |
+
<div class="buttons-set">
|
30 |
+
<p class="back-link"><a href="<?php echo $this->getUrl('customer/account') ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
31 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/address.phtml
ADDED
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<script type="text/javascript">countryRegions = <?php echo $this->helper('directory')->getRegionJson() ?></script>
|
28 |
+
|
29 |
+
<div class="page-title">
|
30 |
+
<h1><?php if($data->getAddressId()): ?><?php echo $this->__('Edit Address Entry') ?><?php else: ?><?php echo $this->__('New Address Entry') ?><?php endif ?></h1>
|
31 |
+
</div>
|
32 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
33 |
+
<form action="<?php echo $action ?>" method="post" id="form-validate">
|
34 |
+
<div class="fieldset">
|
35 |
+
<input type="hidden" name="address_id" value="<?php echo $data->getAddressId() ?>" />
|
36 |
+
<input type="hidden" name="customer_id" id="address_id" value="<?php echo $data->getCustomerId() ?>" />
|
37 |
+
<h2 class="legend"><?php echo $this->__('Personal Information') ?></h2>
|
38 |
+
<ul class="form-list">
|
39 |
+
<li class="fields">
|
40 |
+
<?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($data)->toHtml() ?>
|
41 |
+
</li>
|
42 |
+
<li>
|
43 |
+
<label for="company"><?php echo $this->__('Company') ?></label>
|
44 |
+
<div class="input-box">
|
45 |
+
<input type="text" name="company" id="company" title="<?php echo $this->__('Company') ?>" value="<?php echo $this->escapeHtml($data->getCompany()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
|
46 |
+
</div>
|
47 |
+
</li>
|
48 |
+
</ul>
|
49 |
+
</div>
|
50 |
+
<div class="fieldset">
|
51 |
+
<h2 class="legend"><?php echo $this->__('Address') ?></h2>
|
52 |
+
<ul class="form-list">
|
53 |
+
<?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
|
54 |
+
<li class="wide">
|
55 |
+
<label for="street_1" class="required"><em>*</em><?php echo $this->__('Street Address') ?></label>
|
56 |
+
<div class="input-box">
|
57 |
+
<input type="text" name="street[]" value="<?php echo $this->escapeHtml($data->getStreet(1)) ?>" title="<?php echo $this->__('Street Address') ?>" id="street_1" class="input-text <?php echo $_streetValidationClass ?>" />
|
58 |
+
</div>
|
59 |
+
</li>
|
60 |
+
<?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
|
61 |
+
<?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
|
62 |
+
<li class="wide">
|
63 |
+
<div class="input-box">
|
64 |
+
<input type="text" name="street[]" value="<?php echo $this->escapeHtml($data->getStreet($_i)) ?>" title="<?php echo $this->__('Street Address %s', $_i) ?>" id="street_<?php echo $_i ?>" class="input-text <?php echo $_streetValidationClass ?>" />
|
65 |
+
</div>
|
66 |
+
</li>
|
67 |
+
<?php endfor; ?>
|
68 |
+
<li class="fields">
|
69 |
+
<div class="field">
|
70 |
+
<label for="city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
|
71 |
+
<div class="input-box">
|
72 |
+
<input type="text" name="city" value="<?php echo $this->escapeHtml($data->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="city" />
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
<div class="field">
|
76 |
+
<label for="region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
|
77 |
+
<div class="input-box">
|
78 |
+
<select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
|
79 |
+
<option value=""><?php echo $this->__('Please select region, state or province') ?></option>
|
80 |
+
</select>
|
81 |
+
<script type="text/javascript">
|
82 |
+
//<![CDATA[
|
83 |
+
$('region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
|
84 |
+
//]]>
|
85 |
+
</script>
|
86 |
+
<input type="text" id="region" name="region" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
</li>
|
90 |
+
<li class="fields">
|
91 |
+
<div class="field">
|
92 |
+
<label for="zip" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
|
93 |
+
<div class="input-box">
|
94 |
+
<input type="text" name="postcode" value="<?php echo $this->escapeHtml($data->getPostcode()) ?>" title="<?php echo $this->__('Zip/Postal Code') ?>" id="zip" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
|
95 |
+
</div>
|
96 |
+
</div>
|
97 |
+
<div class="field">
|
98 |
+
<label for="country" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
|
99 |
+
<div class="input-box">
|
100 |
+
<select name="country_id" id="country" title="<?php echo $this->__('Country') ?>" class="validate-select">
|
101 |
+
<?php echo $countries->toHtmlOptions($data->getCountryId()) ?>
|
102 |
+
</select>
|
103 |
+
</div>
|
104 |
+
</div>
|
105 |
+
</li>
|
106 |
+
<li class="fields">
|
107 |
+
<div class="field">
|
108 |
+
<label for="telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
|
109 |
+
<div class="input-box">
|
110 |
+
<input type="text" name="telephone" value="<?php echo $this->escapeHtml($data->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="telephone" />
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
<div class="field">
|
114 |
+
<label for="fax"><?php echo $this->__('Fax') ?></label>
|
115 |
+
<div class="input-box">
|
116 |
+
<input type="text" name="fax" value="<?php echo $this->escapeHtml($data->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="fax" />
|
117 |
+
</div>
|
118 |
+
</div>
|
119 |
+
</li>
|
120 |
+
<?php foreach ($primaryTypes as $code=>$type): ?>
|
121 |
+
<li<?php if (!$address->isPrimary($type['address_type_id'])) echo ' class="control"' ?>>
|
122 |
+
<?php if ($address->isPrimary($type['address_type_id'])): ?>
|
123 |
+
<strong><?php echo $this->__("This is My Default %s Address", ucfirst($type['name'])) ?></strong>
|
124 |
+
<?php else: ?>
|
125 |
+
<input type="checkbox" id="primary_<?php echo $code ?>" name="primary_types[]" value="<?php echo $type['address_type_id'] ?>" class="checkbox" /><label for="primary_<?php echo $code ?>"><?php echo $this->__("Use as My Default %s Address", ucfirst($type['name'])) ?></label>
|
126 |
+
<?php endif ?>
|
127 |
+
</li>
|
128 |
+
<?php endforeach ?>
|
129 |
+
</ul>
|
130 |
+
</div>
|
131 |
+
<div class="buttons-set">
|
132 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
133 |
+
<p class="back-link"><a href="<?php echo $this->getUrl('customer/address/') ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
134 |
+
<button data-action="save-customer-address" type="submit" class="button" title="<?php echo $this->__('Save Address') ?>"><span><span><?php echo $this->__('Save Address') ?></span></span></button>
|
135 |
+
</div>
|
136 |
+
</form>
|
137 |
+
<script type="text/javascript">
|
138 |
+
//<![CDATA[
|
139 |
+
var dataForm = new VarienForm('form-validate', true);
|
140 |
+
//dataForm.setElementsRelation('country', 'state', '<?php echo $this->getUrl('directory/json/childRegion') ?>');
|
141 |
+
new RegionUpdater('country', 'region', 'region_id', countryRegions, undefined, 'zip');
|
142 |
+
//]]>
|
143 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/changepassword.phtml
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Change Account Password') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
31 |
+
<form action="<?php echo $action ?>" method="post" id="form-validate">
|
32 |
+
<div class="fieldset">
|
33 |
+
<h2 class="legend"><?php echo $this->__('Change Account Password') ?></h2>
|
34 |
+
<ul class="form-list">
|
35 |
+
<li>
|
36 |
+
<label for="current_password" class="required"><em>*</em><?php echo $this->__('Current Password') ?></label>
|
37 |
+
<div class="input-box">
|
38 |
+
<input type="password" title="<?php echo $this->__('Current Password') ?>" class="input-text required-entry" name="current_password" id="current_password" />
|
39 |
+
</div>
|
40 |
+
</li>
|
41 |
+
<li class="fields">
|
42 |
+
<div class="field">
|
43 |
+
<label for="password" class="required"><em>*</em><?php echo $this->__('New Password') ?></label>
|
44 |
+
<div class="input-box">
|
45 |
+
<input type="password" title="<?php echo $this->__('New Password') ?>" class="input-text required-entry validate-password" name="password" id="password" />
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
<div class="field">
|
49 |
+
<label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm New Password') ?></label>
|
50 |
+
<div class="input-box">
|
51 |
+
<input type="password" title="<?php echo $this->__('Confirm New Password') ?>" class="input-text required-entry validate-cpassword" name="confirmation" id="confirmation" />
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
</li>
|
55 |
+
</ul>
|
56 |
+
</div>
|
57 |
+
<div class="buttons-set">
|
58 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
59 |
+
<p class="back-link"><a href="<?php echo $this->getUrl('customer/account') ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
60 |
+
<button type="submit" title="<?php echo $this->__('Save Password') ?>" class="button"><span><span><?php echo $this->__('Save Password') ?></span></span></button>
|
61 |
+
</div>
|
62 |
+
</form>
|
63 |
+
<script type="text/javascript">
|
64 |
+
//<![CDATA[
|
65 |
+
var dataForm = new VarienForm('form-validate');
|
66 |
+
//]]>
|
67 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/confirmation.phtml
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Send confirmation link') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
31 |
+
<form action="" method="post" id="form-validate">
|
32 |
+
<div class="fieldset">
|
33 |
+
<h2 class="legend"><?php echo $this->__('Retrieve your confirmation link here') ?></h2>
|
34 |
+
<p><?php echo $this->__('Please enter your email below and we\'ll send you confirmation link for it.') ?></p>
|
35 |
+
<ul class="form-list">
|
36 |
+
<li>
|
37 |
+
<label for="email_address" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
38 |
+
<div class="input-box">
|
39 |
+
<input type="text" name="email" id="email_address" title="<?php echo $this->__('Email Address') ?>" class="input-text required-entry validate-email" value="<?php echo $this->escapeHtml($this->getEmail()) ?>" />
|
40 |
+
</div>
|
41 |
+
</li>
|
42 |
+
</ul>
|
43 |
+
</div>
|
44 |
+
<div class="buttons-set">
|
45 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
46 |
+
<p class="back-link"><a href="<?php echo $this->helper('customer')->getLoginUrl() ?>"><small>« </small><?php echo $this->__('Back to Login') ?></a></p>
|
47 |
+
<button type="submit" title="<?php echo $this->__('Submit') ?>" class="button"><span><span><?php echo $this->__('Submit') ?></span></span></button>
|
48 |
+
</div>
|
49 |
+
</form>
|
50 |
+
<script type="text/javascript">
|
51 |
+
//<![CDATA[
|
52 |
+
var dataForm = new VarienForm('form-validate', true);
|
53 |
+
//]]>
|
54 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/edit.phtml
ADDED
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Edit Account Information') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
31 |
+
<form action="<?php echo $this->getUrl('customer/account/editPost') ?>" method="post" id="form-validate" autocomplete="off">
|
32 |
+
<div class="fieldset">
|
33 |
+
<?php echo $this->getBlockHtml('formkey')?>
|
34 |
+
<h2 class="legend"><?php echo $this->__('Account Information') ?></h2>
|
35 |
+
<ul class="form-list">
|
36 |
+
<li class="fields">
|
37 |
+
<?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getCustomer())->toHtml() ?>
|
38 |
+
</li>
|
39 |
+
<li>
|
40 |
+
<label for="email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
41 |
+
<div class="input-box">
|
42 |
+
<input type="text" name="email" id="email" value="<?php echo $this->escapeHtml($this->getCustomer()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text required-entry validate-email" />
|
43 |
+
</div>
|
44 |
+
</li>
|
45 |
+
<?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
|
46 |
+
<?php if ($_dob->isEnabled()): ?>
|
47 |
+
<li><?php echo $_dob->setDate($this->getCustomer()->getDob())->toHtml() ?></li>
|
48 |
+
<?php endif ?>
|
49 |
+
<?php $_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat') ?>
|
50 |
+
<?php if ($_taxvat->isEnabled()): ?>
|
51 |
+
<li><?php echo $_taxvat->setTaxvat($this->getCustomer()->getTaxvat())->toHtml() ?></li>
|
52 |
+
<?php endif ?>
|
53 |
+
<?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
|
54 |
+
<?php if ($_gender->isEnabled()): ?>
|
55 |
+
<li><?php echo $_gender->setGender($this->getCustomer()->getGender())->toHtml() ?></li>
|
56 |
+
<?php endif ?>
|
57 |
+
<li class="control">
|
58 |
+
<input type="checkbox" name="change_password" id="change_password" value="1" onclick="setPasswordForm(this.checked)" title="<?php echo $this->__('Change Password') ?>"<?php if($this->getCustomer()->getChangePassword()==1): ?> checked="checked"<?php endif; ?> class="checkbox" /><label for="change_password"><?php echo $this->__('Change Password') ?></label>
|
59 |
+
</li>
|
60 |
+
</ul>
|
61 |
+
</div>
|
62 |
+
<div class="fieldset" style="display:none;">
|
63 |
+
<h2 class="legend"><?php echo $this->__('Change Password') ?></h2>
|
64 |
+
<ul class="form-list">
|
65 |
+
<li>
|
66 |
+
<label for="current_password" class="required"><em>*</em><?php echo $this->__('Current Password') ?></label>
|
67 |
+
<div class="input-box">
|
68 |
+
<!-- This is a dummy hidden field to trick firefox from auto filling the password -->
|
69 |
+
<input type="text" class="input-text no-display" name="dummy" id="dummy" />
|
70 |
+
<input type="password" title="<?php echo $this->__('Current Password') ?>" class="input-text" name="current_password" id="current_password" />
|
71 |
+
</div>
|
72 |
+
</li>
|
73 |
+
<li class="fields">
|
74 |
+
<div class="field">
|
75 |
+
<label for="password" class="required"><em>*</em><?php echo $this->__('New Password') ?></label>
|
76 |
+
<div class="input-box">
|
77 |
+
<input type="password" title="<?php echo $this->__('New Password') ?>" class="input-text validate-password" name="password" id="password" />
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
<div class="field">
|
81 |
+
<label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm New Password') ?></label>
|
82 |
+
<div class="input-box">
|
83 |
+
<input type="password" title="<?php echo $this->__('Confirm New Password') ?>" class="input-text validate-cpassword" name="confirmation" id="confirmation" />
|
84 |
+
</div>
|
85 |
+
</div>
|
86 |
+
</li>
|
87 |
+
</ul>
|
88 |
+
</div>
|
89 |
+
<div class="buttons-set">
|
90 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
91 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
92 |
+
<button type="submit" title="<?php echo $this->__('Save') ?>" class="button"><span><span><?php echo $this->__('Save') ?></span></span></button>
|
93 |
+
</div>
|
94 |
+
</form>
|
95 |
+
<script type="text/javascript">
|
96 |
+
//<![CDATA[
|
97 |
+
var dataForm = new VarienForm('form-validate', true);
|
98 |
+
function setPasswordForm(arg){
|
99 |
+
if(arg){
|
100 |
+
$('current_password').up(3).show();
|
101 |
+
$('current_password').addClassName('required-entry');
|
102 |
+
$('password').addClassName('required-entry');
|
103 |
+
$('confirmation').addClassName('required-entry');
|
104 |
+
|
105 |
+
}else{
|
106 |
+
$('current_password').up(3).hide();
|
107 |
+
$('current_password').removeClassName('required-entry');
|
108 |
+
$('password').removeClassName('required-entry');
|
109 |
+
$('confirmation').removeClassName('required-entry');
|
110 |
+
}
|
111 |
+
}
|
112 |
+
|
113 |
+
<?php if($this->getCustomer()->getChangePassword()): ?>
|
114 |
+
setPasswordForm(true);
|
115 |
+
<?php endif; ?>
|
116 |
+
//]]>
|
117 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/forgotpassword.phtml
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Forgot Your Password?') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
31 |
+
<form action="<?php echo $this->getUrl('*/*/forgotpasswordpost') ?>" method="post" id="form-validate">
|
32 |
+
<div class="fieldset">
|
33 |
+
<h2 class="legend"><?php echo $this->__('Retrieve your password here') ?></h2>
|
34 |
+
<p><?php echo $this->__('Please enter your email address below. You will receive a link to reset your password.') ?></p>
|
35 |
+
<ul class="form-list">
|
36 |
+
<li>
|
37 |
+
<label for="email_address" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
38 |
+
<div class="input-box">
|
39 |
+
<input type="text" name="email" alt="email" id="email_address" class="input-text required-entry validate-email" value="<?php echo $this->escapeHtml($this->getEmailValue()) ?>" />
|
40 |
+
</div>
|
41 |
+
</li>
|
42 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
43 |
+
</ul>
|
44 |
+
</div>
|
45 |
+
<div class="buttons-set">
|
46 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
47 |
+
<p class="back-link"><a href="<?php echo $this->helper('customer')->getLoginUrl() ?>"><small>« </small><?php echo $this->__('Back to Login') ?></a></p>
|
48 |
+
<button type="submit" title="<?php echo $this->__('Submit') ?>" class="button"><span><span><?php echo $this->__('Submit') ?></span></span></button>
|
49 |
+
</div>
|
50 |
+
</form>
|
51 |
+
<script type="text/javascript">
|
52 |
+
//<![CDATA[
|
53 |
+
var dataForm = new VarienForm('form-validate', true);
|
54 |
+
//]]>
|
55 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/login.phtml
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Customer login form template
|
30 |
+
*
|
31 |
+
* @see Mage_Customer_Block_Form_Login
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<div class="account-login">
|
35 |
+
<div class="page-title">
|
36 |
+
<h1><?php echo $this->__('Login or Create an Account') ?></h1>
|
37 |
+
</div>
|
38 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
39 |
+
<?php /* Extensions placeholder */ ?>
|
40 |
+
<?php echo $this->getChildHtml('customer.form.login.extra')?>
|
41 |
+
<form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="login-form">
|
42 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
43 |
+
<div class="col2-set">
|
44 |
+
<div class="col-1 new-users">
|
45 |
+
<div class="content">
|
46 |
+
<h2><?php echo $this->__('New Customers') ?></h2>
|
47 |
+
<p><?php echo $this->__('By creating an account with our store, you will be able to move through the checkout process faster, store multiple shipping addresses, view and track your orders in your account and more.') ?></p>
|
48 |
+
</div>
|
49 |
+
</div>
|
50 |
+
<div class="col-2 registered-users">
|
51 |
+
<div class="content">
|
52 |
+
<h2><?php echo $this->__('Registered Customers') ?></h2>
|
53 |
+
<p><?php echo $this->__('If you have an account with us, please log in.') ?></p>
|
54 |
+
<ul class="form-list">
|
55 |
+
<li>
|
56 |
+
<label for="email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
57 |
+
<div class="input-box">
|
58 |
+
<input type="text" name="login[username]" value="<?php echo $this->escapeHtml($this->getUsername()) ?>" id="email" class="input-text required-entry validate-email" title="<?php echo $this->__('Email Address') ?>" />
|
59 |
+
</div>
|
60 |
+
</li>
|
61 |
+
<li>
|
62 |
+
<label for="pass" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
|
63 |
+
<div class="input-box">
|
64 |
+
<input type="password" name="login[password]" class="input-text required-entry validate-password" id="pass" title="<?php echo $this->__('Password') ?>" />
|
65 |
+
</div>
|
66 |
+
</li>
|
67 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
68 |
+
</ul>
|
69 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
<div class="col2-set">
|
74 |
+
<div class="col-1 new-users">
|
75 |
+
<div class="buttons-set">
|
76 |
+
<button type="button" title="<?php echo $this->__('Create an Account') ?>" class="button" onclick="window.location='<?php echo $this->getCreateAccountUrl() ?>';"><span><span><?php echo $this->__('Create an Account') ?></span></span></button>
|
77 |
+
</div>
|
78 |
+
</div>
|
79 |
+
<div class="col-2 registered-users">
|
80 |
+
<div class="buttons-set">
|
81 |
+
<a href="<?php echo $this->getForgotPasswordUrl() ?>" class="f-left"><?php echo $this->__('Forgot Your Password?') ?></a>
|
82 |
+
<button type="submit" class="button" title="<?php echo $this->__('Login') ?>" name="send" id="send2"><span><span><?php echo $this->__('Login') ?></span></span></button>
|
83 |
+
</div>
|
84 |
+
</div>
|
85 |
+
</div>
|
86 |
+
</form>
|
87 |
+
<script type="text/javascript">
|
88 |
+
//<![CDATA[
|
89 |
+
var dataForm = new VarienForm('login-form', true);
|
90 |
+
//]]>
|
91 |
+
</script>
|
92 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/mini.login.phtml
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="block block-login">
|
28 |
+
<div class="block-title">
|
29 |
+
<strong><span><?php echo $this->__('Login') ?></span></strong>
|
30 |
+
</div>
|
31 |
+
<form action="<?php echo $this->getPostActionUrl() ?>" method="post">
|
32 |
+
<div class="block-content">
|
33 |
+
<label for="mini-login"><?php echo $this->__('Email:') ?></label><input type="text" name="login[username]" id="mini-login" class="input-text" />
|
34 |
+
<label for="mini-password"><?php echo $this->__('Password:') ?></label><input type="password" name="login[password]" id="mini-password" class="input-text" />
|
35 |
+
<div class="actions">
|
36 |
+
<button type="submit" class="button"><span><span><?php echo $this->__('Login') ?></span></span></button>
|
37 |
+
</div>
|
38 |
+
</div>
|
39 |
+
</form>
|
40 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/newsletter.phtml
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Newsletter Subscription') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
31 |
+
<?php echo $this->getChildHtml('form_before')?>
|
32 |
+
<form action="<?php echo $this->getAction() ?>" method="post" id="form-validate">
|
33 |
+
<div class="fieldset">
|
34 |
+
<?php echo $this->getBlockHtml('formkey')?>
|
35 |
+
<h2 class="legend"><?php echo $this->__('Newsletter Subscription') ?></h2>
|
36 |
+
<ul class="form-list">
|
37 |
+
<li class="control"><input type="checkbox" name="is_subscribed" id="subscription" value="1" title="<?php echo $this->__('General Subscription') ?>"<?php if($this->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox" /><label for="subscription"><?php echo $this->__('General Subscription') ?></label></li>
|
38 |
+
<?php /* Extensions placeholder */ ?>
|
39 |
+
<?php echo $this->getChildHtml('customer.form.newsletter.extra')?>
|
40 |
+
</ul>
|
41 |
+
</div>
|
42 |
+
<div class="buttons-set">
|
43 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
44 |
+
<button type="submit" title="<?php echo $this->__('Save') ?>" class="button"><span><span><?php echo $this->__('Save') ?></span></span></button>
|
45 |
+
</div>
|
46 |
+
</form>
|
47 |
+
<?php /* Extensions placeholder */ ?>
|
48 |
+
<?php echo $this->getChildHtml('customer.form.newsletter.extra2')?>
|
49 |
+
<script type="text/javascript">
|
50 |
+
//<![CDATA[
|
51 |
+
var dataForm = new VarienForm('form-validate', true);
|
52 |
+
//]]>
|
53 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/register.phtml
ADDED
@@ -0,0 +1,190 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Create account form template
|
30 |
+
*
|
31 |
+
* @var $this Mage_Customer_Block_Form_Register
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<div class="account-create">
|
35 |
+
<div class="page-title">
|
36 |
+
<h1><?php echo $this->__('Create an Account') ?></h1>
|
37 |
+
</div>
|
38 |
+
<?php echo $this->getChildHtml('form_fields_before')?>
|
39 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
40 |
+
<?php /* Extensions placeholder */ ?>
|
41 |
+
<?php echo $this->getChildHtml('customer.form.register.extra')?>
|
42 |
+
<form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="form-validate">
|
43 |
+
<div class="fieldset">
|
44 |
+
<input type="hidden" name="success_url" value="<?php echo $this->getSuccessUrl() ?>" />
|
45 |
+
<input type="hidden" name="error_url" value="<?php echo $this->getErrorUrl() ?>" />
|
46 |
+
<h2 class="legend"><?php echo $this->__('Personal Information') ?></h2>
|
47 |
+
<ul class="form-list">
|
48 |
+
<li class="fields">
|
49 |
+
<?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
|
50 |
+
</li>
|
51 |
+
<li>
|
52 |
+
<label for="email_address" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
53 |
+
<div class="input-box">
|
54 |
+
<input type="text" name="email" id="email_address" value="<?php echo $this->escapeHtml($this->getFormData()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text validate-email required-entry" />
|
55 |
+
</div>
|
56 |
+
</li>
|
57 |
+
<?php if ($this->isNewsletterEnabled()): ?>
|
58 |
+
<li class="control">
|
59 |
+
<div class="input-box">
|
60 |
+
<input type="checkbox" name="is_subscribed" title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1" id="is_subscribed"<?php if($this->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox" />
|
61 |
+
</div>
|
62 |
+
<label for="is_subscribed"><?php echo $this->__('Sign Up for Newsletter') ?></label>
|
63 |
+
<?php /* Extensions placeholder */ ?>
|
64 |
+
<?php echo $this->getChildHtml('customer.form.register.newsletter')?>
|
65 |
+
</li>
|
66 |
+
<?php endif ?>
|
67 |
+
<?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
|
68 |
+
<?php if ($_dob->isEnabled()): ?>
|
69 |
+
<li><?php echo $_dob->setDate($this->getFormData()->getDob())->toHtml() ?></li>
|
70 |
+
<?php endif ?>
|
71 |
+
<?php $_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat') ?>
|
72 |
+
<?php if ($_taxvat->isEnabled()): ?>
|
73 |
+
<li><?php echo $_taxvat->setTaxvat($this->getFormData()->getTaxvat())->toHtml() ?></li>
|
74 |
+
<?php endif ?>
|
75 |
+
<?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
|
76 |
+
<?php if ($_gender->isEnabled()): ?>
|
77 |
+
<li><?php echo $_gender->setGender($this->getFormData()->getGender())->toHtml() ?></li>
|
78 |
+
<?php endif ?>
|
79 |
+
</ul>
|
80 |
+
</div>
|
81 |
+
<?php if($this->getShowAddressFields()): ?>
|
82 |
+
<div class="fieldset">
|
83 |
+
<input type="hidden" name="create_address" value="1" />
|
84 |
+
<h2 class="legend"><?php echo $this->__('Address Information') ?></h2>
|
85 |
+
<ul class="form-list">
|
86 |
+
<li class="fields">
|
87 |
+
<div class="field">
|
88 |
+
<label for="company"><?php echo $this->__('Company') ?></label>
|
89 |
+
<div class="input-box">
|
90 |
+
<input type="text" name="company" id="company" value="<?php echo $this->escapeHtml($this->getFormData()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
|
91 |
+
</div>
|
92 |
+
</div>
|
93 |
+
<div class="field">
|
94 |
+
<label for="telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
|
95 |
+
<div class="input-box">
|
96 |
+
<input type="text" name="telephone" id="telephone" value="<?php echo $this->escapeHtml($this->getFormData()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" />
|
97 |
+
</div>
|
98 |
+
</div>
|
99 |
+
</li>
|
100 |
+
<?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
|
101 |
+
<li class="wide">
|
102 |
+
<label for="street_1" class="required"><em>*</em><?php echo $this->__('Street Address') ?></label>
|
103 |
+
<div class="input-box">
|
104 |
+
<input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getFormData()->getStreet(1)) ?>" title="<?php echo $this->__('Street Address') ?>" id="street_1" class="input-text <?php echo $_streetValidationClass ?>" />
|
105 |
+
</div>
|
106 |
+
</li>
|
107 |
+
<?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
|
108 |
+
<?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
|
109 |
+
<li class="wide">
|
110 |
+
<div class="input-box">
|
111 |
+
<input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getFormData()->getStreet($_i)) ?>" title="<?php echo $this->__('Street Address %s', $_i) ?>" id="street_<?php echo $_i ?>" class="input-text <?php echo $_streetValidationClass ?>" />
|
112 |
+
</div>
|
113 |
+
</li>
|
114 |
+
<?php endfor; ?>
|
115 |
+
<li class="fields">
|
116 |
+
<div class="field">
|
117 |
+
<label for="city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
|
118 |
+
<div class="input-box">
|
119 |
+
<input type="text" name="city" value="<?php echo $this->escapeHtml($this->getFormData()->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="city" />
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
<div class="field">
|
123 |
+
<label for="region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
|
124 |
+
<div class="input-box">
|
125 |
+
<select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
|
126 |
+
<option value=""><?php echo $this->__('Please select region, state or province') ?></option>
|
127 |
+
</select>
|
128 |
+
<script type="text/javascript">
|
129 |
+
//<![CDATA[
|
130 |
+
$('region_id').setAttribute('defaultValue', "<?php echo $this->getFormData()->getRegionId() ?>");
|
131 |
+
//]]>
|
132 |
+
</script>
|
133 |
+
<input type="text" id="region" name="region" value="<?php echo $this->escapeHtml($this->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
|
134 |
+
</div>
|
135 |
+
</div>
|
136 |
+
</li>
|
137 |
+
<li class="fields">
|
138 |
+
<div class="field">
|
139 |
+
<label for="zip" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
|
140 |
+
<div class="input-box">
|
141 |
+
<input type="text" name="postcode" value="<?php echo $this->escapeHtml($this->getFormData()->getPostcode()) ?>" title="<?php echo $this->__('Zip/Postal Code') ?>" id="zip" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
|
142 |
+
</div>
|
143 |
+
</div>
|
144 |
+
<div class="field">
|
145 |
+
<label for="country" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
|
146 |
+
<div class="input-box">
|
147 |
+
<?php echo $this->getCountryHtmlSelect() ?>
|
148 |
+
</div>
|
149 |
+
</div>
|
150 |
+
</li>
|
151 |
+
</ul>
|
152 |
+
<input type="hidden" name="default_billing" value="1" />
|
153 |
+
<input type="hidden" name="default_shipping" value="1" />
|
154 |
+
</div>
|
155 |
+
<?php endif; ?>
|
156 |
+
<div class="fieldset">
|
157 |
+
<h2 class="legend"><?php echo $this->__('Login Information') ?></h2>
|
158 |
+
<ul class="form-list">
|
159 |
+
<li class="fields">
|
160 |
+
<div class="field">
|
161 |
+
<label for="password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
|
162 |
+
<div class="input-box">
|
163 |
+
<input type="password" name="password" id="password" title="<?php echo $this->__('Password') ?>" class="input-text required-entry validate-password" />
|
164 |
+
</div>
|
165 |
+
</div>
|
166 |
+
<div class="field">
|
167 |
+
<label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
|
168 |
+
<div class="input-box">
|
169 |
+
<input type="password" name="confirmation" title="<?php echo $this->__('Confirm Password') ?>" id="confirmation" class="input-text required-entry validate-cpassword" />
|
170 |
+
</div>
|
171 |
+
</div>
|
172 |
+
</li>
|
173 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
174 |
+
</ul>
|
175 |
+
</div>
|
176 |
+
<div class="buttons-set">
|
177 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
178 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>" class="back-link"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
179 |
+
<button type="submit" title="<?php echo $this->__('Submit') ?>" class="button"><span><span><?php echo $this->__('Submit') ?></span></span></button>
|
180 |
+
</div>
|
181 |
+
</form>
|
182 |
+
<script type="text/javascript">
|
183 |
+
//<![CDATA[
|
184 |
+
var dataForm = new VarienForm('form-validate', true);
|
185 |
+
<?php if($this->getShowAddressFields()): ?>
|
186 |
+
new RegionUpdater('country', 'region', 'region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'zip');
|
187 |
+
<?php endif; ?>
|
188 |
+
//]]>
|
189 |
+
</script>
|
190 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/form/resetforgottenpassword.phtml
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('Reset a Password'); ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml(); ?>
|
31 |
+
<form action="<?php echo $this->getUrl('*/*/resetpasswordpost', array('_query' => array('id' => $this->getCustomerId(), 'token' => $this->getResetPasswordLinkToken()))); ?>" method="post" id="form-validate">
|
32 |
+
<div class="fieldset" style="margin-top: 70px;">
|
33 |
+
<ul class="form-list">
|
34 |
+
<li class="fields">
|
35 |
+
<div class="field">
|
36 |
+
<label for="password" class="required"><em>*</em><?php echo $this->__('New Password'); ?></label>
|
37 |
+
<div class="input-box">
|
38 |
+
<input type="password" class="input-text required-entry validate-password" name="password" id="password" />
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
<div class="field">
|
42 |
+
<label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm New Password'); ?></label>
|
43 |
+
<div class="input-box">
|
44 |
+
<input type="password" class="input-text required-entry validate-cpassword" name="confirmation" id="confirmation" />
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
</li>
|
48 |
+
</ul>
|
49 |
+
</div>
|
50 |
+
<div class="buttons-set">
|
51 |
+
<p class="required"><?php echo $this->__('* Required Fields'); ?></p>
|
52 |
+
<button type="submit" title="<?php echo $this->__('Reset a Password'); ?>" class="button"><span><span><?php echo $this->__('Reset a Password'); ?></span></span></button>
|
53 |
+
</div>
|
54 |
+
</form>
|
55 |
+
<script type="text/javascript">
|
56 |
+
/*<![CDATA[*/
|
57 |
+
var dataForm = new VarienForm('form-validate', true);
|
58 |
+
/*]]>*/
|
59 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/logout.phtml
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo Mage::helper('customer')->__('You are now logged out') ?></h1>
|
29 |
+
</div>
|
30 |
+
<p><?php echo Mage::helper('customer')->__('You have logged out and will be redirected to our homepage in 5 seconds.') ?></p>
|
31 |
+
<script type="text/javascript">
|
32 |
+
//<![CDATA[
|
33 |
+
setTimeout(function(){ location.href = '<?php echo $this->getUrl() ?>'},5000);
|
34 |
+
//]]>
|
35 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/orders.phtml
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @deprecated after 1.4.0.0-alpha3
|
29 |
+
*/
|
30 |
+
?>
|
31 |
+
<div class="page-title">
|
32 |
+
<h1><?php echo $this->__('My Orders') ?></h1>
|
33 |
+
</div>
|
34 |
+
<?php if($orders->getSize()): ?>
|
35 |
+
<table class="data-table" id="my-orders-table" >
|
36 |
+
<thead>
|
37 |
+
<tr>
|
38 |
+
<th><?php echo $this->__('Order #') ?></th>
|
39 |
+
<th><?php echo $this->__('Date') ?></th>
|
40 |
+
<!--<th class="a-center">Shipped To</th>-->
|
41 |
+
<th><?php echo $this->__('Total') ?></th>
|
42 |
+
<th><?php echo $this->__('Status') ?></th>
|
43 |
+
<th><?php echo $this->__('Details') ?></th>
|
44 |
+
</tr>
|
45 |
+
</thead>
|
46 |
+
<tbody>
|
47 |
+
<?php foreach ($orders as $order): ?>
|
48 |
+
<tr>
|
49 |
+
<td><?php echo $order->getRealOrderId() ?> </td>
|
50 |
+
<td><?php echo date("D, j M, Y", strtotime($order->getCreatedAt())) ?> </td>
|
51 |
+
<!--<td class="a-center">{$page.orders[io].customer}</td>-->
|
52 |
+
<td><?php echo $order->getGrandTotal() ?> </td>
|
53 |
+
<td><?php echo $order->getStatus() ?> </td>
|
54 |
+
<td><a href="<?php echo $this->getUrl('customer/order/view', array('order'=>$order->getOrderId())) ?>"><?php echo $this->__('View Order') ?></a> </td>
|
55 |
+
</tr>
|
56 |
+
<?php endforeach ?>
|
57 |
+
</tbody>
|
58 |
+
</table>
|
59 |
+
<script type="text/javascript">decorateTable('my-orders-table')</script>
|
60 |
+
<?php else: ?>
|
61 |
+
<p><?php echo $this->__('You have placed no orders yet.') ?></p>
|
62 |
+
<?php endif ?>
|
63 |
+
<div class="buttons-set">
|
64 |
+
<p class="back-link"><a href="<?php echo $this->getUrl('customer/account') ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
65 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/widget/dob.phtml
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
USAGE:
|
29 |
+
|
30 |
+
Simple:
|
31 |
+
|
32 |
+
<?php echo $this->getLayout()->createBlock('customer/widget_dob')
|
33 |
+
->setDate($this->getCustomer()->getDob())
|
34 |
+
->toHtml() ?>
|
35 |
+
|
36 |
+
For checkout/onepage/billing.phtml:
|
37 |
+
|
38 |
+
<?php echo $this->getLayout()->createBlock('customer/widget_dob')
|
39 |
+
->setDate($this->getCustomer()->getDob())
|
40 |
+
->setFieldIdFormat('billing:%s')
|
41 |
+
->setFieldNameFormat('billing[%s]')
|
42 |
+
->toHtml() ?>
|
43 |
+
|
44 |
+
NOTE: Regarding styles - if we leave it this way, we'll move it to boxes.css
|
45 |
+
Alternatively we could calculate widths automatically using block input parameters.
|
46 |
+
*/
|
47 |
+
|
48 |
+
/**
|
49 |
+
* @see Mage_Customer_Block_Widget_Dob
|
50 |
+
*/
|
51 |
+
?>
|
52 |
+
<label for="<?php echo $this->getFieldId('month')?>"<?php if ($this->isRequired()) echo ' class="required"' ?>><?php if ($this->isRequired()) echo '<em>*</em>' ?><?php echo $this->__('Date of Birth') ?></label>
|
53 |
+
<div class="input-box customer-dob">
|
54 |
+
<?php
|
55 |
+
$this->setDateInput('d',
|
56 |
+
'<div class="dob-day">
|
57 |
+
<input type="text" id="' . $this->getFieldId('day') . '" name="' . $this->getFieldName('day') . '" value="' . $this->getDay() . '" title="' . $this->__('Day') . '" class="input-text validate-custom" ' . $this->getFieldParams() . ' />
|
58 |
+
<label for="' . $this->getFieldId('day') . '">' . $this->__('DD') . '</label>
|
59 |
+
</div>'
|
60 |
+
);
|
61 |
+
|
62 |
+
$this->setDateInput('m',
|
63 |
+
'<div class="dob-month">
|
64 |
+
<input type="text" id="' . $this->getFieldId('month') . '" name="' . $this->getFieldName('month') . '" value="' . $this->getMonth() . '" title="' . $this->__('Month') . '" class="input-text validate-custom" ' . $this->getFieldParams() . ' />
|
65 |
+
<label for="' . $this->getFieldId('month') . '">' . $this->__('MM') . '</label>
|
66 |
+
</div>'
|
67 |
+
);
|
68 |
+
|
69 |
+
$this->setDateInput('y',
|
70 |
+
'<div class="dob-year">
|
71 |
+
<input type="text" id="' . $this->getFieldId('year') . '" name="' . $this->getFieldName('year') . '" value="' . $this->getYear() . '" title="' . $this->__('Year') . '" class="input-text validate-custom" ' . $this->getFieldParams() . ' />
|
72 |
+
<label for="' . $this->getFieldId('year') . '">' . $this->__('YYYY') . '</label>
|
73 |
+
</div>'
|
74 |
+
);
|
75 |
+
?>
|
76 |
+
<?php echo $this->getSortedDateInputs() ?>
|
77 |
+
<div class="dob-full" style="display:none;">
|
78 |
+
<input type="hidden" id="<?php echo $this->getFieldId('dob')?>" name="<?php echo $this->getFieldName('dob')?>" />
|
79 |
+
</div>
|
80 |
+
|
81 |
+
<div class="validation-advice" style="display:none;"></div>
|
82 |
+
</div>
|
83 |
+
<script type="text/javascript">
|
84 |
+
//<![CDATA[
|
85 |
+
var customer_dob = new Varien.DOB('.customer-dob', <?php echo $this->isRequired() ? 'true' : 'false' ?>, '<?php echo $this->getDateFormat() ?>');
|
86 |
+
//]]>
|
87 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/customer/widget/gender.phtml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<label for="<?php echo $this->getFieldId('gender')?>"<?php if ($this->isRequired()) echo ' class="required"' ?>><?php if ($this->isRequired()) echo '<em>*</em>' ?><?php echo $this->__('Gender') ?></label>
|
28 |
+
<div class="input-box">
|
29 |
+
<select id="<?php echo $this->getFieldId('gender')?>" name="<?php echo $this->getFieldName('gender')?>" title="<?php echo $this->__('Gender') ?>"<?php if ($this->isRequired()):?> class="validate-select"<?php endif; ?> <?php echo $this->getFieldParams() ?>>
|
30 |
+
<?php $options = Mage::getResourceSingleton('customer/customer')->getAttribute('gender')->getSource()->getAllOptions();?>
|
31 |
+
<?php $value = $this->getGender();?>
|
32 |
+
<?php foreach ($options as $option):?>
|
33 |
+
<option value="<?php echo $option['value'] ?>"<?php if ($option['value'] == $value) echo ' selected="selected"' ?>><?php echo $option['label'] ?></option>
|
34 |
+
<?php endforeach;?>
|
35 |
+
</select>
|
36 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/widget/name.phtml
ADDED
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
USAGE:
|
29 |
+
|
30 |
+
Simple:
|
31 |
+
|
32 |
+
<?php echo $this->getLayout()->createBlock('customer/widget_name')
|
33 |
+
->setObject($this->getAddress())
|
34 |
+
->toHtml() ?>
|
35 |
+
|
36 |
+
For checkout/onepage/shipping.phtml:
|
37 |
+
|
38 |
+
<?php echo $this->getLayout()->createBlock('customer/widget_name')
|
39 |
+
->setObject($this->getAddress())
|
40 |
+
->setFieldIdFormat('shipping:%s')
|
41 |
+
->setFieldNameFormat('shipping[%s]')
|
42 |
+
->setFieldParams('onchange="shipping.setSameAsBilling(false);"')
|
43 |
+
->toHtml() ?>
|
44 |
+
*/
|
45 |
+
/* @var $this Mage_Customer_Block_Widget_Name */
|
46 |
+
?>
|
47 |
+
<div class="<?php echo $this->getContainerClassName()?>">
|
48 |
+
<?php if ($this->showPrefix()): ?>
|
49 |
+
<div class="field name-prefix">
|
50 |
+
<label for="<?php echo $this->getFieldId('prefix')?>"<?php if ($this->isPrefixRequired()) echo ' class="required"' ?>><?php if ($this->isPrefixRequired()) echo '<em>*</em>' ?><?php echo $this->getStoreLabel('prefix') ?></label>
|
51 |
+
<div class="input-box">
|
52 |
+
<?php if ($this->getPrefixOptions() === false): ?>
|
53 |
+
<input type="text" id="<?php echo $this->getFieldId('prefix')?>" name="<?php echo $this->getFieldName('prefix')?>" value="<?php echo $this->escapeHtml($this->getObject()->getPrefix()) ?>" title="<?php echo $this->getStoreLabel('prefix') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('prefix') ?>" <?php echo $this->getFieldParams() ?> />
|
54 |
+
<?php else: ?>
|
55 |
+
<select id="<?php echo $this->getFieldId('prefix')?>" name="<?php echo $this->getFieldName('prefix')?>" title="<?php echo $this->getStoreLabel('prefix') ?>" class="<?php echo $this->helper('customer/address')->getAttributeValidationClass('prefix') ?>" <?php echo $this->getFieldParams() ?>>
|
56 |
+
<?php foreach ($this->getPrefixOptions() as $_option): ?>
|
57 |
+
<option value="<?php echo $_option?>"<?php if ($this->getObject()->getPrefix()==$_option):?> selected="selected"<?php endif; ?>><?php echo $this->__($_option)?></option>
|
58 |
+
<?php endforeach; ?>
|
59 |
+
</select>
|
60 |
+
<?php endif; ?>
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
<?php endif; ?>
|
64 |
+
<div class="field name-firstname">
|
65 |
+
<label for="<?php echo $this->getFieldId('firstname')?>" class="required"><em>*</em><?php echo $this->getStoreLabel('firstname') ?></label>
|
66 |
+
<div class="input-box">
|
67 |
+
<input type="text" id="<?php echo $this->getFieldId('firstname')?>" name="<?php echo $this->getFieldName('firstname')?>" value="<?php echo $this->escapeHtml($this->getObject()->getFirstname()) ?>" title="<?php echo $this->getStoreLabel('firstname') ?>" maxlength="255" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('firstname') ?>" <?php echo $this->getFieldParams() ?> />
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
<?php if ($this->showMiddlename()): ?>
|
71 |
+
<?php $isMiddlenameRequired = $this->isMiddlenameRequired(); ?>
|
72 |
+
<div class="field name-middlename">
|
73 |
+
<label for="<?php echo $this->getFieldId('middlename')?>"<?php echo $isMiddlenameRequired ? ' class="required"' : '' ?>><?php echo $isMiddlenameRequired ? '<em>*</em>' : '' ?><?php echo $this->getStoreLabel('middlename') ?></label>
|
74 |
+
<div class="input-box">
|
75 |
+
<input type="text" id="<?php echo $this->getFieldId('middlename')?>" name="<?php echo $this->getFieldName('middlename')?>" value="<?php echo $this->escapeHtml($this->getObject()->getMiddlename()) ?>" title="<?php echo $this->getStoreLabel('middlename') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('middlename') ?>" <?php echo $this->getFieldParams() ?> />
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
<?php endif; ?>
|
79 |
+
<div class="field name-lastname">
|
80 |
+
<label for="<?php echo $this->getFieldId('lastname')?>" class="required"><em>*</em><?php echo $this->getStoreLabel('lastname') ?></label>
|
81 |
+
<div class="input-box">
|
82 |
+
<input type="text" id="<?php echo $this->getFieldId('lastname')?>" name="<?php echo $this->getFieldName('lastname')?>" value="<?php echo $this->escapeHtml($this->getObject()->getLastname()) ?>" title="<?php echo $this->getStoreLabel('lastname') ?>" maxlength="255" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('lastname') ?>" <?php echo $this->getFieldParams() ?> />
|
83 |
+
</div>
|
84 |
+
</div>
|
85 |
+
<?php if ($this->showSuffix()): ?>
|
86 |
+
<div class="field name-suffix">
|
87 |
+
<label for="<?php echo $this->getFieldId('suffix')?>"<?php if ($this->isSuffixRequired()) echo ' class="required"' ?>><?php if ($this->isSuffixRequired()) echo '<em>*</em>' ?><?php echo $this->getStoreLabel('suffix') ?></label>
|
88 |
+
<div class="input-box">
|
89 |
+
<?php if ($this->getSuffixOptions() === false): ?>
|
90 |
+
<input type="text" id="<?php echo $this->getFieldId('suffix')?>" name="<?php echo $this->getFieldName('suffix')?>" value="<?php echo $this->escapeHtml($this->getObject()->getSuffix()) ?>" title="<?php echo $this->getStoreLabel('suffix') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('suffix') ?>" <?php echo $this->getFieldParams() ?> />
|
91 |
+
<?php else: ?>
|
92 |
+
<select id="<?php echo $this->getFieldId('suffix')?>" name="<?php echo $this->getFieldName('suffix')?>" title="<?php echo $this->getStoreLabel('suffix') ?>" class="<?php echo $this->helper('customer/address')->getAttributeValidationClass('suffix') ?>" <?php echo $this->getFieldParams() ?>>
|
93 |
+
<?php foreach ($this->getSuffixOptions() as $_option): ?>
|
94 |
+
<option value="<?php echo $_option?>"<?php if ($this->getObject()->getSuffix()==$_option):?> selected="selected"<?php endif; ?>><?php echo $this->__($_option)?></option>
|
95 |
+
<?php endforeach; ?>
|
96 |
+
</select>
|
97 |
+
<?php endif; ?>
|
98 |
+
</div>
|
99 |
+
</div>
|
100 |
+
<?php endif; ?>
|
101 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/widget/taxvat.phtml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<label for="<?php echo $this->getFieldId('taxvat')?>"<?php if ($this->isRequired()) echo ' class="required"' ?>><?php if ($this->isRequired()) echo '<em>*</em>' ?><?php echo $this->__('Tax/VAT number') ?></label>
|
28 |
+
<div class="input-box">
|
29 |
+
<input type="text" id="<?php echo $this->getFieldId('taxvat')?>" name="<?php echo $this->getFieldName('taxvat')?>" value="<?php echo $this->escapeHtml($this->getTaxvat()) ?>" title="<?php echo $this->__('Tax/VAT number') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('taxvat') ?>" <?php echo $this->getFieldParams() ?> />
|
30 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/customer/wishlist.phtml
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @deprecated after 1.4.0.0-alpha3
|
29 |
+
*/
|
30 |
+
?>
|
31 |
+
<div class="page-title">
|
32 |
+
<h1><?php echo $this->__('Wishlist') ?></h1>
|
33 |
+
</div>
|
34 |
+
<?php if($wishlist->getSize()): ?>
|
35 |
+
<form action="<?php echo $this->getUrl('customer/wishlist/updatePost') ?>" method="post">
|
36 |
+
<table class="data-table">
|
37 |
+
<col />
|
38 |
+
<col width="60" />
|
39 |
+
<col width="60" />
|
40 |
+
<col width="60" />
|
41 |
+
<thead>
|
42 |
+
<tr>
|
43 |
+
<th><?php echo $this->__('Product') ?></th>
|
44 |
+
<th><?php echo $this->__('Status') ?></th>
|
45 |
+
<th><?php echo $this->__('To Cart') ?></th>
|
46 |
+
<th><?php echo $this->__('Remove') ?></th>
|
47 |
+
</tr>
|
48 |
+
</thead>
|
49 |
+
<tbody>
|
50 |
+
<?php foreach($wishlist as $item): ?>
|
51 |
+
<tr>
|
52 |
+
<td>
|
53 |
+
<input type="hidden" value="1" name="wishlist[<?php echo $item->getItemId() ?>]" />
|
54 |
+
<a href="<?php echo $this->getUrl('catalog/product/view/id/'.$item->getProduct()->getId()) ?>"><?php echo $this->escapeHtml($item->getProduct()->getName()) ?></a>
|
55 |
+
</td>
|
56 |
+
<td><?php echo $item->getStatus() ?></td>
|
57 |
+
<td><input type="checkbox" value="1" name="to_cart[<?php echo $item->getItemId() ?>]" class="checkbox" /></td>
|
58 |
+
<td><input type="checkbox" value="1" name="remove[<?php echo $item->getItemId() ?>]" class="checkbox" /></td>
|
59 |
+
</tr>
|
60 |
+
<?php endforeach ?>
|
61 |
+
</tbody>
|
62 |
+
</table>
|
63 |
+
<div class="buttons-set">
|
64 |
+
<a href="<?php echo Mage::getBaseUrl() ?>">« <?php echo $this->__('Continue Shopping') ?></a>
|
65 |
+
<input type="submit" value="<?php echo $this->__('Update') ?>" class="input-button" name="do" />
|
66 |
+
</div>
|
67 |
+
</form>
|
68 |
+
<?php else: ?>
|
69 |
+
<p><?php echo $this->__('You have placed no products yet.') ?></p>
|
70 |
+
<div class="buttons-set">
|
71 |
+
<p class="back-link"><a href="<?php echo $this->getUrl('customer/account') ?>"><small>« </small><?php echo $this->__('Back - link to the previously viewed page') ?></a></p>
|
72 |
+
</div>
|
73 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/downloadable/checkout/cart/item/default.phtml
ADDED
@@ -0,0 +1,313 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
$_item = $this->getItem();
|
29 |
+
$canApplyMsrp = Mage::helper('catalog')->canApplyMsrp($_item->getProduct(), Mage_Catalog_Model_Product_Attribute_Source_Msrp_Type::TYPE_BEFORE_ORDER_CONFIRM);
|
30 |
+
?>
|
31 |
+
<tr>
|
32 |
+
<td class="product-cart-image"><a href="<?php echo $this->getProductUrl() ?>" class="product-image"
|
33 |
+
title="<?php echo $this->escapeHtml($this->getProductName()) ?>"><img
|
34 |
+
src="<?php echo $this->getProductThumbnail()->resize(75); ?>"
|
35 |
+
alt="<?php echo $this->escapeHtml($this->getProductName()) ?>"/></a></td>
|
36 |
+
<td class="cart-rwd-item" >
|
37 |
+
<h2 class="product-name"><a
|
38 |
+
href="<?php echo $this->getProductUrl() ?>"><?php echo $this->escapeHtml($this->getProductName()) ?></a>
|
39 |
+
</h2>
|
40 |
+
<?php if ($_options = $this->getOptionList()): ?>
|
41 |
+
<dl class="item-options">
|
42 |
+
<?php foreach ($_options as $_option) : ?>
|
43 |
+
<?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
|
44 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
45 |
+
<dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
|
46 |
+
<?php if (isset($_formatedOptionValue['full_view'])): ?>
|
47 |
+
<div class="truncated_full_value">
|
48 |
+
<dl class="item-options">
|
49 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
50 |
+
<dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
|
51 |
+
</dl>
|
52 |
+
</div>
|
53 |
+
<?php endif; ?>
|
54 |
+
</dd>
|
55 |
+
<?php endforeach; ?>
|
56 |
+
</dl>
|
57 |
+
<?php endif; ?>
|
58 |
+
<!-- downloadable -->
|
59 |
+
<?php if ($links = $this->getLinks()): ?>
|
60 |
+
<dl class="item-options">
|
61 |
+
<dt><?php echo $this->getLinksTitle() ?></dt>
|
62 |
+
<?php foreach ($links as $link): ?>
|
63 |
+
<dd><?php echo $this->escapeHtml($link->getTitle()); ?></dd>
|
64 |
+
<?php endforeach; ?>
|
65 |
+
</dl>
|
66 |
+
<?php endif; ?>
|
67 |
+
<!-- EOF downloadable -->
|
68 |
+
|
69 |
+
<?php if ($messages = $this->getMessages()): ?>
|
70 |
+
<?php foreach ($messages as $message): ?>
|
71 |
+
<div class="shopping-cart-item-message <?php echo $message['type'] ?>">
|
72 |
+
* <?php echo $this->escapeHtml($message['text']) ?>
|
73 |
+
</div>
|
74 |
+
<?php endforeach; ?>
|
75 |
+
<?php endif; ?>
|
76 |
+
</td>
|
77 |
+
<?php if ($canApplyMsrp): ?>
|
78 |
+
<td class="a-right cart-rwd-item"<?php if ($this->helper('tax')->displayCartBothPrices()): ?> colspan="2"<?php endif; ?>>
|
79 |
+
<span class="cart-price">
|
80 |
+
<span class="cart-msrp-unit"><?php echo $this->__('See price before order confirmation.'); ?></span>
|
81 |
+
<?php $helpLinkId = 'cart-msrp-help-' . $_item->getId(); ?>
|
82 |
+
<a id="<?php echo $helpLinkId ?>" href="#"
|
83 |
+
class="map-help-link"><?php echo $this->__("What's this?"); ?></a>
|
84 |
+
<script type="text/javascript">
|
85 |
+
Catalog.Map.addHelpLink($('<?php echo $helpLinkId ?>'), "<?php echo $this->__("What's this?") ?>");
|
86 |
+
</script>
|
87 |
+
</span>
|
88 |
+
</td>
|
89 |
+
<?php else: ?>
|
90 |
+
|
91 |
+
|
92 |
+
<?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
93 |
+
<td class="a-right cart-rwd-item">
|
94 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
95 |
+
<div class="cart-tax-total"
|
96 |
+
onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
97 |
+
<?php else: ?>
|
98 |
+
<div class="cart-price">
|
99 |
+
<?php endif; ?>
|
100 |
+
|
101 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
102 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice() + $_item->getWeeeTaxAppliedAmount() + $_item->getWeeeTaxDisposition()); ?>
|
103 |
+
<?php else: ?>
|
104 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
|
105 |
+
<?php endif; ?>
|
106 |
+
|
107 |
+
</div>
|
108 |
+
|
109 |
+
|
110 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
111 |
+
|
112 |
+
<div class="cart-tax-info" id="eunit-item-tax-details<?php echo $_item->getId(); ?>"
|
113 |
+
style="display:none;">
|
114 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
115 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
116 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
117 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'], true, true); ?></span>
|
118 |
+
<?php endforeach; ?>
|
119 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
120 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
121 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
122 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'], true, true); ?></span>
|
123 |
+
<?php endforeach; ?>
|
124 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
125 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
126 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
127 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'], true, true); ?></span>
|
128 |
+
<?php endforeach; ?>
|
129 |
+
<?php endif; ?>
|
130 |
+
</div>
|
131 |
+
|
132 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
133 |
+
<div class="cart-tax-total"
|
134 |
+
onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
135 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>
|
136 |
+
: <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice() + $_item->getWeeeTaxAppliedAmount() + $_item->getWeeeTaxDisposition()); ?></span>
|
137 |
+
</div>
|
138 |
+
<?php endif; ?>
|
139 |
+
<?php endif; ?>
|
140 |
+
</td>
|
141 |
+
<?php endif; ?>
|
142 |
+
<?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
|
143 |
+
<td class="cart-rwd-item">
|
144 |
+
<?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
|
145 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
146 |
+
<div class="cart-tax-total"
|
147 |
+
onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
148 |
+
<?php else: ?>
|
149 |
+
<div class="cart-price">
|
150 |
+
<?php endif; ?>
|
151 |
+
|
152 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
153 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?>
|
154 |
+
<?php else: ?>
|
155 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl - $_item->getWeeeTaxDisposition()) ?>
|
156 |
+
<?php endif; ?>
|
157 |
+
|
158 |
+
</div>
|
159 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
160 |
+
|
161 |
+
<div class="cart-tax-info" id="unit-item-tax-details<?php echo $_item->getId(); ?>"
|
162 |
+
style="display:none;">
|
163 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
164 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
165 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
166 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'], true, true); ?></span>
|
167 |
+
<?php endforeach; ?>
|
168 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
169 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
170 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
171 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'], true, true); ?></span>
|
172 |
+
<?php endforeach; ?>
|
173 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
174 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
175 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
176 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'], true, true); ?></span>
|
177 |
+
<?php endforeach; ?>
|
178 |
+
<?php endif; ?>
|
179 |
+
</div>
|
180 |
+
|
181 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
182 |
+
<div class="cart-tax-total"
|
183 |
+
onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
184 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>
|
185 |
+
: <?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?></span>
|
186 |
+
</div>
|
187 |
+
<?php endif; ?>
|
188 |
+
<?php endif; ?>
|
189 |
+
</td>
|
190 |
+
<?php endif; ?>
|
191 |
+
<?php endif; ?>
|
192 |
+
<td class="a-center cart-rwd-item">
|
193 |
+
<span class="qty-container">
|
194 |
+
<input name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getQty() ?>" size="4" title="<?php echo $this->__('Qty') ?>" class="input-text qty" maxlength="12"/>
|
195 |
+
<i class="fa fa-angle-up"></i>
|
196 |
+
<i class="fa fa-angle-down"></i>
|
197 |
+
</span>
|
198 |
+
</td>
|
199 |
+
<?php if (($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()) && !$_item->getNoSubtotal()): ?>
|
200 |
+
<td class="a-right cart-rwd-item">
|
201 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
202 |
+
<div class="cart-tax-total"
|
203 |
+
onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
204 |
+
<?php else: ?>
|
205 |
+
<div class="cart-price">
|
206 |
+
<?php endif; ?>
|
207 |
+
|
208 |
+
<?php if ($canApplyMsrp): ?>
|
209 |
+
<span class="cart-msrp-subtotal">--</span>
|
210 |
+
<?php else: ?>
|
211 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
212 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal() + $_item->getWeeeTaxAppliedRowAmount() + $_item->getWeeeTaxRowDisposition()); ?>
|
213 |
+
<?php else: ?>
|
214 |
+
<?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
|
215 |
+
<?php endif; ?>
|
216 |
+
<?php endif; ?>
|
217 |
+
|
218 |
+
</div>
|
219 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
220 |
+
|
221 |
+
<div class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $_item->getId(); ?>"
|
222 |
+
style="display:none;">
|
223 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
224 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
225 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
226 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'], true, true); ?></span>
|
227 |
+
<?php endforeach; ?>
|
228 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
229 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
230 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
231 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'], true, true); ?></span>
|
232 |
+
<?php endforeach; ?>
|
233 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
234 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
235 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
236 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'], true, true); ?></span>
|
237 |
+
<?php endforeach; ?>
|
238 |
+
<?php endif; ?>
|
239 |
+
</div>
|
240 |
+
|
241 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
242 |
+
<div class="cart-tax-total"
|
243 |
+
onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
244 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>
|
245 |
+
: <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal() + $_item->getWeeeTaxAppliedRowAmount() + $_item->getWeeeTaxRowDisposition()); ?></span>
|
246 |
+
</div>
|
247 |
+
<?php endif; ?>
|
248 |
+
<?php endif; ?>
|
249 |
+
</td>
|
250 |
+
<?php endif; ?>
|
251 |
+
<?php if (($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()) && !$_item->getNoSubtotal()): ?>
|
252 |
+
<td class="cart-rwd-item">
|
253 |
+
<?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?>
|
254 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
255 |
+
<div class="cart-tax-total"
|
256 |
+
onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
257 |
+
<?php else: ?>
|
258 |
+
<div class="cart-price">
|
259 |
+
<?php endif; ?>
|
260 |
+
|
261 |
+
<?php if ($canApplyMsrp): ?>
|
262 |
+
<span class="cart-msrp-subtotal">--</span>
|
263 |
+
<?php else: ?>
|
264 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
265 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?>
|
266 |
+
<?php else: ?>
|
267 |
+
<?php echo $this->helper('checkout')->formatPrice($_incl - $_item->getWeeeTaxRowDisposition()) ?>
|
268 |
+
<?php endif; ?>
|
269 |
+
<?php endif; ?>
|
270 |
+
|
271 |
+
</div>
|
272 |
+
|
273 |
+
|
274 |
+
<?php if (Mage::helper('weee')->getApplied($_item)): ?>
|
275 |
+
|
276 |
+
<div class="cart-tax-info" id="subtotal-item-tax-details<?php echo $_item->getId(); ?>"
|
277 |
+
style="display:none;">
|
278 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
279 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
280 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
281 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'], true, true); ?></span>
|
282 |
+
<?php endforeach; ?>
|
283 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
284 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
285 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
286 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'], true, true); ?></span>
|
287 |
+
<?php endforeach; ?>
|
288 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
289 |
+
<?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
|
290 |
+
<span class="weee"><?php echo $tax['title']; ?>
|
291 |
+
: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'], true, true); ?></span>
|
292 |
+
<?php endforeach; ?>
|
293 |
+
<?php endif; ?>
|
294 |
+
</div>
|
295 |
+
|
296 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
|
297 |
+
<div class="cart-tax-total"
|
298 |
+
onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
|
299 |
+
<span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>
|
300 |
+
: <?php echo $this->helper('checkout')->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?></span>
|
301 |
+
</div>
|
302 |
+
<?php endif; ?>
|
303 |
+
<?php endif; ?>
|
304 |
+
</td>
|
305 |
+
<?php endif; ?>
|
306 |
+
<td class="a-center cart-rwd-item">
|
307 |
+
<a href="<?php echo $this->getConfigureUrl() ?>" title="<?php echo $this->__('Edit item parameters') ?>"><i class="fa fa-pencil-square-o"></i></a>
|
308 |
+
<?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
|
309 |
+
<a href="<?php echo $this->helper('wishlist')->getMoveFromCartUrl($_item->getId()); ?>" title="<?php echo $this->__('Add to wishlist') ?>" class="link-wishlist"><i class="fa fa-heart"></i></a>
|
310 |
+
<?php endif ?>
|
311 |
+
<a href="<?php echo $this->getDeleteUrl() ?>" title="<?php echo $this->__('Remove Item') ?>" class="btn-remove-cart"><i class="fa fa-trash"></i></a>
|
312 |
+
</td>
|
313 |
+
</tr>
|
app/design/frontend/modulesgarden/minimo/template/downloadable/customer/products/list.phtml
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Downloadable_Block_Customer_Products_List
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<?php $_items = $this->getItems(); ?>
|
33 |
+
<div class="page-title">
|
34 |
+
<h1><?php echo Mage::helper('downloadable')->__('My Downloadable Products') ?></h1>
|
35 |
+
</div>
|
36 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
37 |
+
<?php if(count($_items)): ?>
|
38 |
+
<table class="data-table" id="my-downloadable-products-table">
|
39 |
+
<col width="1" />
|
40 |
+
<col width="1" />
|
41 |
+
<col />
|
42 |
+
<col width="1" />
|
43 |
+
<col width="1" />
|
44 |
+
<thead>
|
45 |
+
<tr>
|
46 |
+
<th><?php echo Mage::helper('downloadable')->__('Order #') ?></th>
|
47 |
+
<th><?php echo Mage::helper('downloadable')->__('Date') ?></th>
|
48 |
+
<th><?php echo Mage::helper('downloadable')->__('Title') ?></th>
|
49 |
+
<th><?php echo Mage::helper('downloadable')->__('Status') ?></th>
|
50 |
+
<th><span class="nobr"><?php echo Mage::helper('downloadable')->__('Remaining Downloads') ?></span></th>
|
51 |
+
</tr>
|
52 |
+
</thead>
|
53 |
+
<tbody>
|
54 |
+
<?php $_odd = ''; ?>
|
55 |
+
<?php foreach ($_items as $_item): ?>
|
56 |
+
<tr>
|
57 |
+
<td><a href="<?php echo $this->getOrderViewUrl($_item->getPurchased()->getOrderId()) ?>" title="<?php echo Mage::helper('downloadable')->__('View Order') ?>"><?php echo $_item->getPurchased()->getOrderIncrementId() ?></a></td>
|
58 |
+
<td><span class="nobr"><?php echo $this->formatDate($_item->getPurchased()->getCreatedAt()) ?></span></td>
|
59 |
+
<td><?php echo $this->escapeHtml($_item->getPurchased()->getProductName()) ?> - <a href="<?php echo $this->getDownloadUrl($_item) ?>" title="<?php echo Mage::helper('downloadable')->__('Start Download') ?>" <?php echo $this->getIsOpenInNewWindow()?'onclick="this.target=\'_blank\'"':''; ?>><?php echo $this->escapeHtml($_item->getLinkTitle()); ?></a></td>
|
60 |
+
<td><em><?php echo Mage::helper('downloadable')->__(ucfirst($_item->getStatus())) ?></em></td>
|
61 |
+
<td><?php echo $this->getRemainingDownloads($_item) ?></td>
|
62 |
+
</tr>
|
63 |
+
<?php endforeach; ?>
|
64 |
+
</tbody>
|
65 |
+
</table>
|
66 |
+
<script type="text/javascript">decorateTable('my-downloadable-products-table')</script>
|
67 |
+
<br class="clear"/>
|
68 |
+
<?php echo $this->getChildHtml('pager'); ?>
|
69 |
+
<?php else: ?>
|
70 |
+
<p><?php echo Mage::helper('downloadable')->__('You have not purchased any downloadable products yet.'); ?></p>
|
71 |
+
<?php endif; ?>
|
72 |
+
<div class="buttons-set">
|
73 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
74 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/newsletter/subscribe.phtml
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="block block-subscribe">
|
28 |
+
<div class="block-title">
|
29 |
+
<strong><span><?php echo $this->__('Newsletter') ?></span></strong>
|
30 |
+
</div>
|
31 |
+
<form action="<?php echo $this->getFormActionUrl() ?>" method="post" id="newsletter-validate-detail">
|
32 |
+
<div class="block-content">
|
33 |
+
<div class="form-subscribe-header">
|
34 |
+
<label for="newsletter"><?php echo $this->__('Sign Up for Our Newsletter:') ?></label>
|
35 |
+
</div>
|
36 |
+
<div class="input-box">
|
37 |
+
<input type="text" name="email" id="newsletter" title="<?php echo $this->__('Sign up for our newsletter') ?>" class="input-text required-entry validate-email" />
|
38 |
+
</div>
|
39 |
+
<div class="actions">
|
40 |
+
<button type="submit" title="<?php echo $this->__('Subscribe') ?>" class="button_green"><span><span><?php echo $this->__('Subscribe') ?></span></span></button>
|
41 |
+
</div>
|
42 |
+
</div>
|
43 |
+
</form>
|
44 |
+
<script type="text/javascript">
|
45 |
+
//<![CDATA[
|
46 |
+
var newsletterSubscriberFormDetail = new VarienForm('newsletter-validate-detail');
|
47 |
+
//]]>
|
48 |
+
</script>
|
49 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/oauth/customer/token/list.phtml
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/** @var $this Mage_Oauth_Block_Customer_Token_List */
|
28 |
+
?>
|
29 |
+
<?php echo $this->getMessagesBlock()->toHtml() ?>
|
30 |
+
<div class="page-title">
|
31 |
+
<h1><?php echo $this->__('My Applications') ?></h1>
|
32 |
+
</div>
|
33 |
+
<?php if ($this->getCollection() && $this->count()): ?>
|
34 |
+
<table class="data-table" id="my-apps-table">
|
35 |
+
<col />
|
36 |
+
<col width="100" align="right" />
|
37 |
+
<col width="110" align="right" />
|
38 |
+
<thead>
|
39 |
+
<tr>
|
40 |
+
<th><?php echo $this->__('App Name') ?></th>
|
41 |
+
<th><?php echo $this->__('Status') ?></th>
|
42 |
+
<th> </th>
|
43 |
+
</tr>
|
44 |
+
</thead>
|
45 |
+
<tbody>
|
46 |
+
<?php /** @var $item Mage_Oauth_Model_Token */ ?>
|
47 |
+
<?php foreach ($this->getCollection() as $item) : ?>
|
48 |
+
<tr>
|
49 |
+
<td><span class="app-name">
|
50 |
+
<?php echo $this->escapeHtml($item->getName()); ?></span></td>
|
51 |
+
<td><em><?php echo $this->getStatusLabel($item->getRevoked()) ?></em></td>
|
52 |
+
<td align="right">
|
53 |
+
<a href="<?php echo $this->getUpdateRevokeLink($item)?>" class="nobr"
|
54 |
+
onclick="return confirm('<?php echo $this->getChangeStatusConfirmMessage($item->getRevoked()) ?>')">
|
55 |
+
<?php echo $this->getChangeStatusLabel($item->getRevoked()) ?></a>
|
56 |
+
<span class="separator">|</span> <a href="<?php echo $this->getDeleteLink($item)?>" class="nobr"
|
57 |
+
onclick="return confirm('<?php echo $this->__('Are you sure you want to delete this application?') ?>')">
|
58 |
+
<?php echo $this->__('Delete') ?></a></td>
|
59 |
+
</tr>
|
60 |
+
<?php endforeach; ?>
|
61 |
+
</tbody>
|
62 |
+
</table>
|
63 |
+
<script type="text/javascript">
|
64 |
+
//<![CDATA[
|
65 |
+
decorateTable('my-apps-table');
|
66 |
+
//]]>
|
67 |
+
</script>
|
68 |
+
<br class="clear"/>
|
69 |
+
<?php echo $this->getToolbarHtml() ?>
|
70 |
+
<?php else: ?>
|
71 |
+
<p><?php echo $this->__('You have no applications.'); ?></p>
|
72 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/page/1column.phtml
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Template for Mage_Page_Block_Html
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
33 |
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
|
34 |
+
<head>
|
35 |
+
<?php echo $this->getChildHtml('head') ?>
|
36 |
+
<?php
|
37 |
+
$style = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
38 |
+
if ( $style == 'green'){
|
39 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles-inversion.css').'" media="all" />';
|
40 |
+
}else {
|
41 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles.css').'" media="all" />';
|
42 |
+
}
|
43 |
+
?>
|
44 |
+
</head>
|
45 |
+
<body id="<?php $version = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
46 |
+
if ( $version == 'green'){
|
47 |
+
echo 'green-theme';
|
48 |
+
}else {
|
49 |
+
echo 'blue-theme';
|
50 |
+
}
|
51 |
+
?>"
|
52 |
+
<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
|
53 |
+
<?php echo $this->getChildHtml('after_body_start') ?>
|
54 |
+
<div class="wrapper">
|
55 |
+
<?php echo $this->getChildHtml('global_notices') ?>
|
56 |
+
<div class="page">
|
57 |
+
<?php echo $this->getChildHtml('header') ?>
|
58 |
+
<?php echo $this->getChildHtml('newToolbar') ?>
|
59 |
+
<?php echo $this->getChildHtml('baners') ?>
|
60 |
+
<?php echo $this->getChildHtml('newBanerList') ?>
|
61 |
+
<div class="main-container col1-layout">
|
62 |
+
<?php echo $this->getChildHtml('categoryimg') ?>
|
63 |
+
<?php echo $this->getChildHtml('breadcrumbsnew') ?>
|
64 |
+
<div class="main">
|
65 |
+
<div class="containerHomeList"><?php echo $this->getChildHtml('newreference') ?></div>
|
66 |
+
<div class="col-main">
|
67 |
+
<?php echo $this->getChildHtml('global_messages') ?>
|
68 |
+
<?php echo $this->getChildHtml('category_bar') ?>
|
69 |
+
<?php echo $this->getChildHtml('content') ?>
|
70 |
+
<br class="clear" />
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
</div>
|
74 |
+
<div class="brands_container"><?php echo $this->getChildHtml('brands') ?></div>
|
75 |
+
<?php echo $this->getChildHtml('footer') ?>
|
76 |
+
<?php echo $this->getChildHtml('global_cookie_notice') ?>
|
77 |
+
<?php echo $this->getChildHtml('before_body_end') ?>
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
<?php echo $this->getAbsoluteFooter() ?>
|
81 |
+
</body>
|
82 |
+
</html>
|
app/design/frontend/modulesgarden/minimo/template/page/2columns-left.phtml
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Template for Mage_Page_Block_Html
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
33 |
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
|
34 |
+
<head>
|
35 |
+
<?php echo $this->getChildHtml('head') ?>
|
36 |
+
<?php
|
37 |
+
$style = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
38 |
+
if ( $style == 'green'){
|
39 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles-inversion.css').'" media="all" />';
|
40 |
+
}else {
|
41 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles.css').'" media="all" />';
|
42 |
+
}
|
43 |
+
?>
|
44 |
+
</head>
|
45 |
+
<body id="<?php $version = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
46 |
+
if ( $version == 'green'){
|
47 |
+
echo 'green-theme';
|
48 |
+
}else {
|
49 |
+
echo 'blue-theme';
|
50 |
+
}
|
51 |
+
?>"
|
52 |
+
<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
|
53 |
+
<?php echo $this->getChildHtml('after_body_start') ?>
|
54 |
+
<div class="wrapper">
|
55 |
+
<?php echo $this->getChildHtml('global_notices') ?>
|
56 |
+
<div class="page">
|
57 |
+
<?php echo $this->getChildHtml('header') ?>
|
58 |
+
<?php echo $this->getChildHtml('newToolbar') ?>
|
59 |
+
<?php echo $this->getChildHtml('baners') ?>
|
60 |
+
<?php echo $this->getChildHtml('newBanerList') ?>
|
61 |
+
<div class="main-container col2-left-layout">
|
62 |
+
<?php echo $this->getChildHtml('categoryimg') ?>
|
63 |
+
<?php echo $this->getChildHtml('breadcrumbsnew') ?>
|
64 |
+
<div class="main">
|
65 |
+
<div class="containerHomeList"><?php echo $this->getChildHtml('newreference') ?></div>
|
66 |
+
<div class="col-main">
|
67 |
+
<?php echo $this->getChildHtml('global_messages') ?>
|
68 |
+
<?php echo $this->getChildHtml('category_bar') ?>
|
69 |
+
<?php echo $this->getChildHtml('content') ?>
|
70 |
+
</div>
|
71 |
+
<div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
|
72 |
+
<div class="clear"></div>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
<div class="brands_container"><?php echo $this->getChildHtml('brands') ?></div>
|
76 |
+
<?php echo $this->getChildHtml('footer') ?>
|
77 |
+
<?php echo $this->getChildHtml('global_cookie_notice') ?>
|
78 |
+
<?php echo $this->getChildHtml('before_body_end') ?>
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
<?php echo $this->getAbsoluteFooter() ?>
|
82 |
+
</body>
|
83 |
+
</html>
|
app/design/frontend/modulesgarden/minimo/template/page/2columns-right.phtml
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Template for Mage_Page_Block_Html
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
33 |
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
|
34 |
+
<head>
|
35 |
+
<?php echo $this->getChildHtml('head') ?>
|
36 |
+
<?php
|
37 |
+
$style = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
38 |
+
if ( $style == 'green'){
|
39 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles-inversion.css').'" media="all" />';
|
40 |
+
}else {
|
41 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles.css').'" media="all" />';
|
42 |
+
}
|
43 |
+
?>
|
44 |
+
</head>
|
45 |
+
<body id="<?php $version = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
46 |
+
if ( $version == 'green'){
|
47 |
+
echo 'green-theme';
|
48 |
+
}else {
|
49 |
+
echo 'blue-theme';
|
50 |
+
}
|
51 |
+
?>"
|
52 |
+
<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
|
53 |
+
<?php echo $this->getChildHtml('after_body_start') ?>
|
54 |
+
<div class="wrapper">
|
55 |
+
<?php echo $this->getChildHtml('global_notices') ?>
|
56 |
+
<div class="page">
|
57 |
+
<?php echo $this->getChildHtml('header') ?>
|
58 |
+
<?php echo $this->getChildHtml('newToolbar') ?>
|
59 |
+
<?php echo $this->getChildHtml('baners') ?>
|
60 |
+
<?php echo $this->getChildHtml('newBanerList') ?>
|
61 |
+
<div class="main-container col2-right-layout">
|
62 |
+
<?php echo $this->getChildHtml('categoryimg') ?>
|
63 |
+
<?php echo $this->getChildHtml('breadcrumbsnew') ?>
|
64 |
+
<div class="main">
|
65 |
+
<div class="containerHomeList"><?php echo $this->getChildHtml('newreference') ?></div>
|
66 |
+
<div class="col-main">
|
67 |
+
<?php echo $this->getChildHtml('global_messages') ?>
|
68 |
+
<?php echo $this->getChildHtml('category_bar') ?>
|
69 |
+
<div class="uwaga-content"><?php echo $this->getChildHtml('content') ?></div>
|
70 |
+
</div>
|
71 |
+
<div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
|
72 |
+
<br class="clear"/>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
<div class="brands_container"><?php echo $this->getChildHtml('brands') ?></div>
|
76 |
+
<?php echo $this->getChildHtml('footer') ?>
|
77 |
+
<?php echo $this->getChildHtml('global_cookie_notice') ?>
|
78 |
+
<?php echo $this->getChildHtml('before_body_end') ?>
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
<?php echo $this->getAbsoluteFooter() ?>
|
82 |
+
</body>
|
83 |
+
</html>
|
app/design/frontend/modulesgarden/minimo/template/page/3columns.phtml
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Template for Mage_Page_Block_Html
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
33 |
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
|
34 |
+
<head>
|
35 |
+
<?php echo $this->getChildHtml('head') ?>
|
36 |
+
<?php
|
37 |
+
$style = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
38 |
+
if ( $style == 'green'){
|
39 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles-inversion.css').'" media="all" />';
|
40 |
+
}else {
|
41 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/styles.css').'" media="all" />';
|
42 |
+
}
|
43 |
+
?>
|
44 |
+
</head>
|
45 |
+
<body id="<?php $version = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
46 |
+
if ( $version == 'green'){
|
47 |
+
echo 'green-theme';
|
48 |
+
}else {
|
49 |
+
echo 'blue-theme';
|
50 |
+
}
|
51 |
+
?>"
|
52 |
+
<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
|
53 |
+
<?php echo $this->getChildHtml('after_body_start') ?>
|
54 |
+
<div class="wrapper">
|
55 |
+
<?php echo $this->getChildHtml('global_notices') ?>
|
56 |
+
<div class="page">
|
57 |
+
<?php echo $this->getChildHtml('header') ?>
|
58 |
+
<?php echo $this->getChildHtml('newToolbar') ?>
|
59 |
+
<?php echo $this->getChildHtml('baners') ?>
|
60 |
+
<?php echo $this->getChildHtml('newBanerList') ?>
|
61 |
+
<div class="main-container col3-layout">
|
62 |
+
<?php echo $this->getChildHtml('categoryimg') ?>
|
63 |
+
<?php echo $this->getChildHtml('breadcrumbsnew') ?>
|
64 |
+
<div class="main">
|
65 |
+
<div class="containerHomeList"><?php echo $this->getChildHtml('newreference') ?></div>
|
66 |
+
<div class="col-wrapper">
|
67 |
+
<div class="col-main">
|
68 |
+
<?php echo $this->getChildHtml('global_messages') ?>
|
69 |
+
<?php echo $this->getChildHtml('content') ?>
|
70 |
+
</div>
|
71 |
+
<div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
|
72 |
+
</div>
|
73 |
+
<div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
|
74 |
+
<div class="clear"></div>
|
75 |
+
</div>
|
76 |
+
</div>
|
77 |
+
<div class="brands_container"><?php echo $this->getChildHtml('brands') ?></div>
|
78 |
+
<?php echo $this->getChildHtml('footer') ?>
|
79 |
+
<?php echo $this->getChildHtml('global_cookie_notice') ?>
|
80 |
+
<?php echo $this->getChildHtml('before_body_end') ?>
|
81 |
+
</div>
|
82 |
+
</div>
|
83 |
+
<?php echo $this->getAbsoluteFooter() ?>
|
84 |
+
</body>
|
85 |
+
</html>
|
app/design/frontend/modulesgarden/minimo/template/page/baners.phtml
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if (Mage::helper('core')->isModuleEnabled('Modulesgarden_SPSSliders')){
|
3 |
+
$slider = Mage::getModel('storepluginsetsliders/slider')->loadByCode('minimo_slider_full');
|
4 |
+
$slider2 = Mage::getModel('storepluginsetsliders/slider')->loadByCode('minimo_slider_wrapped');
|
5 |
+
|
6 |
+
$style = Mage::getStoreConfig('mgthememinimo/main/colorslider');
|
7 |
+
if ( $style == 'blue'){
|
8 |
+
$color = 'blue';
|
9 |
+
$fontColor = '#1ea3da';
|
10 |
+
}elseif ($style == 'green') {
|
11 |
+
$color = 'green';
|
12 |
+
$fontColor = '#43bf8a';
|
13 |
+
}else {
|
14 |
+
$color = 'red';
|
15 |
+
$fontColor = '#f83e3e';
|
16 |
+
}
|
17 |
+
?>
|
18 |
+
|
19 |
+
|
20 |
+
<?php $sliderStyle = Mage::getStoreConfig('mgthememinimo/main/slider');
|
21 |
+
if ( $sliderStyle == 'wrapped') { ?>
|
22 |
+
<?php if (!$slider2->isEmpty() && $slider2->getEnabled() && $slider2->isEnabledForCurrentStoreView()){ ?>
|
23 |
+
<div class="baners">
|
24 |
+
<div id="slider-wrapper-one">
|
25 |
+
<section id="layerslider" class="slider" style="width:1200px; height:425px; max-width:1240px; padding:0 20px;" >
|
26 |
+
<div class='slides'>
|
27 |
+
<?php
|
28 |
+
foreach ($slider2->getEnabledBanners() as $banner){ ?>
|
29 |
+
|
30 |
+
<div class='ls-slide' data-ls='slidedelay: 4000; transition2d: 2,7,9;'>
|
31 |
+
<?php
|
32 |
+
echo '<img class="ls-bg" alt="Slide background" src="'.$banner->getFileUrl().'"/>';
|
33 |
+
?>
|
34 |
+
<p class="ls-l" style="top:50%;left:50px;font-family:'GeogrotesqueSemiBold';font-size:84px;color:#ffffff;white-space:nowrap;text-transform:uppercase;text-align:left;text-shadow: 0 0 1px rgba(0,0,0,0.6);font-smooth: always;" data-ls="offsetxin:0;durationin:2000;delayin:1500;easingin:easeOutElastic;rotatexin:-90;transformoriginin:50% top 0;offsetxout:-200;durationout:1000;">
|
35 |
+
<?php echo $banner->getTitle(); ?>
|
36 |
+
</p>
|
37 |
+
<p class="ls-l" style="top:130px;left:50px;font-family:'GeogrotesqueUltraLight';font-size:29px;color:#fff;white-space:nowrap;text-transform:uppercase;text-align:left;text-shadow: 0 0 1px rgba(0,0,0,0.6);font-smooth: always;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
|
38 |
+
<?php $descSlide = $banner->getDescription();
|
39 |
+
if (strlen($descSlide) > 120){
|
40 |
+
$descSlide = substr($descSlide,0,120);
|
41 |
+
$descSlideWrap = $descSlide."...";
|
42 |
+
}
|
43 |
+
else {
|
44 |
+
$descSlideWrap = $descSlide;
|
45 |
+
}
|
46 |
+
echo $descSlideWrap; ?>
|
47 |
+
</p>
|
48 |
+
|
49 |
+
<?php if ($banner->getUrlTitle()) {
|
50 |
+
echo '<a style="top:80%;left:50px;font-family:GeogrotesqueSemiBold;font-size:29px;white-space:nowrap;padding:5px 17px;color:#fff;border:2px #fff solid;text-transform:uppercase;text-decoration:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;text-shadow: 0 0 1px rgba(0,0,0,0.6);font-smooth: always;" class="ls-l" href="'.$banner->getUrl().'">'.$banner->getUrlTitle().'<i class="fa fa-chevron-right" style="font-size:24px; padding-leftt:5px;"></i></a>';
|
51 |
+
} ?>
|
52 |
+
</div>
|
53 |
+
<?php } ?>
|
54 |
+
</div>
|
55 |
+
</section>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
<?php } ?>
|
59 |
+
<?php }else { ?>
|
60 |
+
|
61 |
+
<?php if (!$slider->isEmpty() && $slider->getEnabled() && $slider->isEnabledForCurrentStoreView()){ ?>
|
62 |
+
<div id="full-slider-wrapper">
|
63 |
+
<div id="slider-full">
|
64 |
+
<div id="layerslider" style="width:100%;height:400px;">
|
65 |
+
<?php foreach ($slider->getEnabledBanners() as $banner){ ?>
|
66 |
+
<div class="ls-slide" data-ls="transition2d:1;">
|
67 |
+
<img class="ls-l" style="top:0;left:70%;white-space:nowrap;" data-ls="offsetxin:400;durationin:2000;offsetxout:400;" src="<?php echo $banner->getFileUrl(); ?>" alt="">
|
68 |
+
<p class="ls-l" style="top:50%;left:10px;font-family:'GeogrotesqueSemiBold';font-size:84px;color:#ffffff;white-space:nowrap;text-transform:uppercase;text-align:left;text-shadow: 0 0 1px rgba(0,0,0,0.6);font-smooth: always;" data-ls="offsetxin:0;durationin:2000;delayin:1500;easingin:easeOutElastic;rotatexin:-90;transformoriginin:50% top 0;offsetxout:-200;durationout:1000;">
|
69 |
+
<?php echo $banner->getTitle(); ?>
|
70 |
+
</p>
|
71 |
+
<p class="ls-l" style="top:130px;left:10px;font-family:'GeogrotesqueUltraLight';font-size:29px;color:#fff;white-space:nowrap;text-transform:uppercase;text-align:left;text-shadow: 0 0 1px rgba(0,0,0,0.6);font-smooth: always;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
|
72 |
+
<?php $descSlide = $banner->getDescription();
|
73 |
+
if (strlen($descSlide) > 120){
|
74 |
+
$descSlide = substr($descSlide,0,120);
|
75 |
+
$descSlideWrap = $descSlide."...";
|
76 |
+
}
|
77 |
+
else {
|
78 |
+
$descSlideWrap = $descSlide;
|
79 |
+
}
|
80 |
+
echo $descSlideWrap; ?>
|
81 |
+
</p>
|
82 |
+
<?php if ($banner->getUrlTitle()) {
|
83 |
+
echo '<a style="top:80%;left:10px;font-family:GeogrotesqueSemiBold;font-size:29px;white-space:nowrap;padding:5px 17px;color:#fff;border:2px #fff solid;text-transform:uppercase;text-decoration:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;text-shadow: 0 0 1px rgba(0,0,0,0.6);font-smooth: always;" class="ls-l" href="'.$banner->getUrl().'">'.$banner->getUrlTitle().'<i class="fa fa-chevron-right" style="font-size:24px; padding-left:5px;"></i></a>';
|
84 |
+
} ?>
|
85 |
+
</div>
|
86 |
+
<?php } ?>
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
<?php } ?>
|
91 |
+
<?php } ?>
|
92 |
+
|
93 |
+
<?php } ?>
|
app/design/frontend/modulesgarden/minimo/template/page/brands.phtml
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
<?php
|
3 |
+
if (Mage::helper('core')->isModuleEnabled('Modulesgarden_SPSSliders')){
|
4 |
+
$slider = Mage::getModel('storepluginsetsliders/slider')->loadByCode('minimo_brands');
|
5 |
+
if (!$slider->isEmpty() && $slider->getEnabled() && $slider->isEnabledForCurrentStoreView()){
|
6 |
+
?>
|
7 |
+
<section class="brands">
|
8 |
+
<div class="page-title catalog_title"><h2><?php echo $this->__('Brands') ?></h2></div>
|
9 |
+
<div class="customNavigation">
|
10 |
+
<a class="btn prev prev-brands"></a>
|
11 |
+
<a class="btn next next-brands"></a>
|
12 |
+
</div>
|
13 |
+
<div id="owl-brands" class="owl-carousel-brands owl-carousel owl-theme">
|
14 |
+
<?php
|
15 |
+
foreach ($slider->getEnabledBanners() as $banner){
|
16 |
+
echo "<div class='item'><img src='".$banner->getFileUrl()."'/></div>";
|
17 |
+
}
|
18 |
+
}
|
19 |
+
?>
|
20 |
+
</div>
|
21 |
+
</section>
|
22 |
+
<?php } ?>
|
app/design/frontend/modulesgarden/minimo/template/page/breadcrumbsnew.phtml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="category-bar">
|
2 |
+
<div class="top-wrapper clearfix">
|
3 |
+
<?php $category = Mage::registry('current_category'); ?>
|
4 |
+
<h2 class="category-name-bar"><?php echo $category->getName() ?></h2>
|
5 |
+
<?php echo $this->getChildHtml('breadcrumbs') ?>
|
6 |
+
</div>
|
7 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/page/categoryimg.phtml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="<?php $version = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
2 |
+
if ( $version == 'green'){
|
3 |
+
echo 'green-color';
|
4 |
+
}else {
|
5 |
+
echo 'default-color';
|
6 |
+
}
|
7 |
+
?>" class="category-img">
|
8 |
+
<div class="clearfix top-wrapper">
|
9 |
+
<?php $category = Mage::registry('current_category'); ?>
|
10 |
+
<h3><?php echo $category->getName(); ?></h3>
|
11 |
+
<span><?php echo $category->getDescription(); ?></span>
|
12 |
+
</div>
|
13 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/page/html/breadcrumbs.phtml
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
?>
|
28 |
+
<?php $breadcrumbs = Mage::getStoreConfig('mgthememinimo/main/breadcrumbs'); ?>
|
29 |
+
<?php if ($breadcrumbs): ?>
|
30 |
+
<!-- ze jest -->
|
31 |
+
<?php if ($breadcrumbs == "yes"): ?>
|
32 |
+
<i class="fa fa-circle"></i>
|
33 |
+
<?php if($crumbs && is_array($crumbs)): ?>
|
34 |
+
<div class="breadcrumbs">
|
35 |
+
<ul>
|
36 |
+
<?php foreach($crumbs as $_crumbName=>$_crumbInfo): ?>
|
37 |
+
<li class="<?php echo $_crumbName ?>">
|
38 |
+
<?php if($_crumbInfo['link']): ?>
|
39 |
+
<a href="<?php echo $_crumbInfo['link'] ?>" title="<?php echo $this->escapeHtml($_crumbInfo['title']) ?>"><?php echo $this->escapeHtml($_crumbInfo['label']) ?></a>
|
40 |
+
<?php elseif($_crumbInfo['last']): ?>
|
41 |
+
<strong><?php echo $this->escapeHtml($_crumbInfo['label']) ?></strong>
|
42 |
+
<?php else: ?>
|
43 |
+
<?php echo $this->escapeHtml($_crumbInfo['label']) ?>
|
44 |
+
<?php endif; ?>
|
45 |
+
<?php if(!$_crumbInfo['last']): ?>
|
46 |
+
<span>></span>
|
47 |
+
<?php endif; ?>
|
48 |
+
</li>
|
49 |
+
<?php endforeach; ?>
|
50 |
+
</ul>
|
51 |
+
</div>
|
52 |
+
<?php endif; ?>
|
53 |
+
<?php elseif($breadcrumbs == "no"): ?>
|
54 |
+
<!-- do nothing -->
|
55 |
+
<?php endif ?>
|
56 |
+
<?php else: ?>
|
57 |
+
<!-- ze nie ma -->
|
58 |
+
<?php if($crumbs && is_array($crumbs)): ?>
|
59 |
+
<div class="breadcrumbs">
|
60 |
+
<ul>
|
61 |
+
<?php foreach($crumbs as $_crumbName=>$_crumbInfo): ?>
|
62 |
+
<li class="<?php echo $_crumbName ?>">
|
63 |
+
<?php if($_crumbInfo['link']): ?>
|
64 |
+
<a href="<?php echo $_crumbInfo['link'] ?>" title="<?php echo $this->escapeHtml($_crumbInfo['title']) ?>"><?php echo $this->escapeHtml($_crumbInfo['label']) ?></a>
|
65 |
+
<?php elseif($_crumbInfo['last']): ?>
|
66 |
+
<strong><?php echo $this->escapeHtml($_crumbInfo['label']) ?></strong>
|
67 |
+
<?php else: ?>
|
68 |
+
<?php echo $this->escapeHtml($_crumbInfo['label']) ?>
|
69 |
+
<?php endif; ?>
|
70 |
+
<?php if(!$_crumbInfo['last']): ?>
|
71 |
+
<span>></span>
|
72 |
+
<?php endif; ?>
|
73 |
+
</li>
|
74 |
+
<?php endforeach; ?>
|
75 |
+
</ul>
|
76 |
+
</div>
|
77 |
+
<?php endif; ?>
|
78 |
+
<?php endif ?>
|
79 |
+
|
80 |
+
<!-- only sorter -->
|
81 |
+
<?php echo $this->getChildHtml('toolbar_only'); ?>
|
app/design/frontend/modulesgarden/minimo/template/page/html/footer.phtml
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="footer-container">
|
28 |
+
<div class="footer">
|
29 |
+
<div class="col1 col-footer">
|
30 |
+
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('minimo-footer-col1')->toHtml() ?>
|
31 |
+
</div>
|
32 |
+
<div class="col2 col-footer">
|
33 |
+
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('minimo-footer-col2')->toHtml() ?>
|
34 |
+
</div>
|
35 |
+
<div class="col3 col-footer">
|
36 |
+
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('minimo-footer-col3')->toHtml() ?>
|
37 |
+
</div>
|
38 |
+
<div class="col3 col-footer">
|
39 |
+
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('minimo-footer-col4')->toHtml() ?>
|
40 |
+
</div>
|
41 |
+
<div class="col4 col-footer">
|
42 |
+
<?php echo $this->getChildHtml('footer.newsletter'); ?>
|
43 |
+
</div>
|
44 |
+
<br class="clear"/>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
|
48 |
+
<address><?php echo $this->getCopyright() ?></address>
|
app/design/frontend/modulesgarden/minimo/template/page/html/head.phtml
ADDED
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<meta http-equiv="Content-Type" content="<?php echo $this->getContentType() ?>" />
|
29 |
+
|
30 |
+
<?php $pageTitle = Mage::getStoreConfig('mgthememinimo/main/maintitle'); ?>
|
31 |
+
<?php if ($pageTitle): ?>
|
32 |
+
<title><?php echo $pageTitle; ?></title>
|
33 |
+
<?php else: ?>
|
34 |
+
<title><?php echo $this->getTitle() ?></title>
|
35 |
+
<?php endif ?>
|
36 |
+
|
37 |
+
<meta name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" />
|
38 |
+
<meta name="keywords" content="<?php echo htmlspecialchars($this->getKeywords()) ?>" />
|
39 |
+
<meta name="robots" content="<?php echo htmlspecialchars($this->getRobots()) ?>" />
|
40 |
+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
41 |
+
<link rel="icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" />
|
42 |
+
<link rel="shortcut icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" />
|
43 |
+
<!--[if lt IE 7]>
|
44 |
+
<script type="text/javascript">
|
45 |
+
//<![CDATA[
|
46 |
+
var BLANK_URL = '<?php echo $this->helper('core/js')->getJsUrl('blank.html') ?>';
|
47 |
+
var BLANK_IMG = '<?php echo $this->helper('core/js')->getJsUrl('spacer.gif') ?>';
|
48 |
+
//]]>
|
49 |
+
</script>
|
50 |
+
<![endif]-->
|
51 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/layerslider/js/jquery.js'); ?>"></script>
|
52 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/owl-carousel/owl.carousel.js'); ?>"></script>
|
53 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/owl-carousel/owl.carousel.min.js'); ?>"></script>
|
54 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/fancybox/jquery.fancybox.pack.js'); ?>"></script>
|
55 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/custom.js'); ?>"></script>
|
56 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/layerslider/js/greensock.js'); ?>"></script>
|
57 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/layerslider/js/layerslider.transitions.js'); ?>"></script>
|
58 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/layerslider/js/layerslider.kreaturamedia.jquery.js'); ?>"></script>
|
59 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery.dcmegamenu.1.3.3.min.js'); ?>"></script>
|
60 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery.hoverIntent.minified.js'); ?>"></script>
|
61 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery.selectric.min.js'); ?>"></script>
|
62 |
+
|
63 |
+
<?php echo $this->getCssJsHtml() ?>
|
64 |
+
|
65 |
+
<?php $fontFamily = Mage::getStoreConfig('mgthememinimo/main/fontfamily'); ?>
|
66 |
+
<?php if ($fontFamily): ?>
|
67 |
+
<?php if ($fontFamily == "opensans"): ?>
|
68 |
+
<link href='http://fonts.googleapis.com/css?family=Signika:400,600,700,300&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
|
69 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/font/geo.css').'" media="all" />'; ?>
|
70 |
+
<?php elseif($fontFamily == "lato"): ?>
|
71 |
+
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
|
72 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/lato-font.css').'" media="all" />'; ?>
|
73 |
+
<?php elseif($fontFamily == "roboto"): ?>
|
74 |
+
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css'>
|
75 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/roboto-font.css').'" media="all" />'; ?>
|
76 |
+
<?php elseif($fontFamily == "raleway"): ?>
|
77 |
+
<link href='http://fonts.googleapis.com/css?family=Raleway:300,400,700' rel='stylesheet' type='text/css'>
|
78 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/raleway-font.css').'" media="all" />'; ?>
|
79 |
+
<?php endif ?>
|
80 |
+
<?php else: ?>
|
81 |
+
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700&subset=latin,latin-ext,cyrillic-ext,greek-ext,greek,vietnamese,cyrillic' rel='stylesheet' type='text/css'>
|
82 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/open-sans-font.css').'" media="all" />'; ?>
|
83 |
+
<?php endif ?>
|
84 |
+
|
85 |
+
<?php $colorFooter = Mage::getStoreConfig('mgthememinimo/main/colorfooter'); ?>
|
86 |
+
<?php if ($colorFooter): ?>
|
87 |
+
<?php if ($colorFooter == "lightgray"): ?>
|
88 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/color-footer-lightgray.css').'" media="all" />'; ?>
|
89 |
+
<?php elseif($colorFooter == "dark"): ?>
|
90 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/color-footer-dark.css').'" media="all" />'; ?>
|
91 |
+
<?php elseif($colorFooter == "white"): ?>
|
92 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/color-footer-white.css').'" media="all" />'; ?>
|
93 |
+
<?php endif ?>
|
94 |
+
<?php else: ?>
|
95 |
+
<?php echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/color-footer-lightgray.css').'" media="all" />'; ?>
|
96 |
+
<?php endif ?>
|
97 |
+
|
98 |
+
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700&subset=latin,latin-ext,cyrillic-ext,greek-ext,greek,vietnamese,cyrillic' rel='stylesheet' type='text/css'>
|
99 |
+
|
100 |
+
<?php $modules = Mage::getConfig()->getNode('modules')->children();
|
101 |
+
$modulesArray = (array)$modules;
|
102 |
+
|
103 |
+
// check is install IWD One Page Checkout
|
104 |
+
if(isset($modulesArray['IWD_All'])) {
|
105 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/iwd-active.css').'" media="all" />';
|
106 |
+
} else {
|
107 |
+
echo '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('css/iwd-disable.css').'" media="all" />';
|
108 |
+
} ?>
|
109 |
+
|
110 |
+
<?php echo $this->getChildHtml() ?>
|
111 |
+
<?php echo $this->helper('core/js')->getTranslatorScript() ?>
|
112 |
+
<?php echo $this->getIncludes() ?>
|
app/design/frontend/modulesgarden/minimo/template/page/html/header.phtml
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
/**
|
27 |
+
* @var Mage_Page_Block_Html_Header $this
|
28 |
+
*/
|
29 |
+
?>
|
30 |
+
<div class="header-container">
|
31 |
+
<div class="header_wrapp">
|
32 |
+
<div class="header">
|
33 |
+
<div class="msg_header"><p class="welcome-msg"><?php echo $this->getChildHtml('welcome') ?> <?php echo $this->getAdditionalHtml() ?></p></div>
|
34 |
+
<div class="quick-access">
|
35 |
+
<div id="search-lg-container">
|
36 |
+
<i class="fa fa-search"></i>
|
37 |
+
<div id="search-lg">
|
38 |
+
<?php $catalogSearchHelper = $this->helper('catalogsearch'); ?>
|
39 |
+
<form id="search_mini_form" action="<?php echo $catalogSearchHelper->getResultUrl() ?>" method="get">
|
40 |
+
<div class="form-search">
|
41 |
+
<input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
|
42 |
+
<button type="submit" title="<?php echo $this->__('Search') ?>" class="search-button"><i class="fa fa-chevron-right"></i></button>
|
43 |
+
<div id="search_autocomplete" class="search-autocomplete"></div>
|
44 |
+
<script type="text/javascript">
|
45 |
+
//<![CDATA[
|
46 |
+
var searchForm = new Varien.searchForm('search_mini_form', 'search', '');
|
47 |
+
searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
|
48 |
+
//]]>
|
49 |
+
</script>
|
50 |
+
</div>
|
51 |
+
</form>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
<?php echo $this->getChildHtml('topLinks') ?>
|
55 |
+
<?php echo $this->getChildHtml('store_language') ?>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
<div class="header clearfix">
|
60 |
+
<?php if ($this->getIsHomePage()):?>
|
61 |
+
<h1 class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a></h1>
|
62 |
+
<?php else:?>
|
63 |
+
<a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a>
|
64 |
+
<?php endif?>
|
65 |
+
<?php echo $this->getChildHtml('topContainer'); ?>
|
66 |
+
<?php echo $this->getChildHtml('topMenu') ?>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
|
app/design/frontend/modulesgarden/minimo/template/page/html/notices.phtml
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @var $this Mage_Page_Block_Html_Notices
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<?php if ($this->displayNoscriptNotice()): ?>
|
33 |
+
<noscript>
|
34 |
+
<div class="global-site-notice noscript">
|
35 |
+
<div class="notice-inner">
|
36 |
+
<p>
|
37 |
+
<strong><?php echo $this->__('JavaScript seems to be disabled in your browser.'); ?></strong><br />
|
38 |
+
<?php echo $this->__('You must have JavaScript enabled in your browser to utilize the functionality of this website.'); ?>
|
39 |
+
</p>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
</noscript>
|
43 |
+
<?php endif; ?>
|
44 |
+
<?php if ($this->displayDemoNotice()): ?>
|
45 |
+
<div class="global-site-notice demo-notice">
|
46 |
+
<div class="notice-inner"><p><?php echo $this->__('This is a demo store. Any orders placed through this store will not be honored or fulfilled.') ?></p></div>
|
47 |
+
</div>
|
48 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/page/html/pager.phtml
ADDED
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Pager template
|
30 |
+
*
|
31 |
+
* @see Mage_Page_Block_Html_Pager
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
35 |
+
if ( $imgStyle == 'blue'){
|
36 |
+
$img = '_blue';
|
37 |
+
}elseif ($imgStyle == 'red') {
|
38 |
+
$img = '_red';
|
39 |
+
}else {
|
40 |
+
$img = '';
|
41 |
+
}
|
42 |
+
?>
|
43 |
+
<?php if($this->getCollection()->getSize()): ?>
|
44 |
+
|
45 |
+
<?php if($this->getUseContainer()): ?>
|
46 |
+
<div class="pager">
|
47 |
+
<?php endif ?>
|
48 |
+
|
49 |
+
<?php if($this->getShowAmounts()): ?>
|
50 |
+
<p class="amount">
|
51 |
+
<?php if($this->getLastPageNum()>1): ?>
|
52 |
+
<?php echo $this->__('Items %s to %s of %s total', $this->getFirstNum(), $this->getLastNum(), $this->getTotalNum()) ?>
|
53 |
+
<?php else: ?>
|
54 |
+
<strong><?php echo $this->__('%s Item(s)', $this->getTotalNum()) ?></strong>
|
55 |
+
<?php endif; ?>
|
56 |
+
</p>
|
57 |
+
<?php endif ?>
|
58 |
+
|
59 |
+
<?php if($this->getShowPerPage()): ?>
|
60 |
+
<div class="limiter clearfix">
|
61 |
+
<span class="pull-right"><?php echo $this->__('per page') ?></span>
|
62 |
+
<select onchange="setLocation(this.value)" class="selectric-select">
|
63 |
+
<?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
|
64 |
+
<option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
|
65 |
+
<?php echo $_limit ?>
|
66 |
+
</option>
|
67 |
+
<?php endforeach; ?>
|
68 |
+
</select>
|
69 |
+
<label class="pull-right"><?php echo $this->__('Show') ?></label>
|
70 |
+
</div>
|
71 |
+
<?php endif ?>
|
72 |
+
|
73 |
+
<?php if($this->getLastPageNum()>1): ?>
|
74 |
+
<div class="pages">
|
75 |
+
<strong><?php echo $this->__('Page:') ?></strong>
|
76 |
+
<ol>
|
77 |
+
<?php if (!$this->isFirstPage()): ?>
|
78 |
+
<li>
|
79 |
+
<a class="previous<?php if(!$this->getAnchorTextForPrevious()): ?> i-previous<?php endif;?>" href="<?php echo $this->getPreviousPageUrl() ?>" title="<?php echo $this->__('Previous') ?>">
|
80 |
+
<?php if(!$this->getAnchorTextForPrevious()): ?>
|
81 |
+
<i class="fa fa-chevron-left v-middle"></i>
|
82 |
+
<?php else: ?>
|
83 |
+
<?php echo $this->getAnchorTextForPrevious() ?>
|
84 |
+
<?php endif;?>
|
85 |
+
</a>
|
86 |
+
</li>
|
87 |
+
<?php endif;?>
|
88 |
+
|
89 |
+
<?php if ($this->canShowFirst()): ?>
|
90 |
+
<li><a class="first" href="<?php echo $this->getFirstPageUrl() ?>">1</a></li>
|
91 |
+
<?php endif;?>
|
92 |
+
|
93 |
+
<?php if ($this->canShowPreviousJump()): ?>
|
94 |
+
<li><a class="previous_jump" title="" href="<?php echo $this->getPreviousJumpUrl() ?>">...</a></li>
|
95 |
+
<?php endif;?>
|
96 |
+
|
97 |
+
<?php foreach ($this->getFramePages() as $_page): ?>
|
98 |
+
<?php if ($this->isPageCurrent($_page)): ?>
|
99 |
+
<li class="current"><?php echo $_page ?></li>
|
100 |
+
<?php else: ?>
|
101 |
+
<li><a href="<?php echo $this->getPageUrl($_page) ?>"><?php echo $_page ?></a></li>
|
102 |
+
<?php endif;?>
|
103 |
+
<?php endforeach;?>
|
104 |
+
|
105 |
+
|
106 |
+
<?php if ($this->canShowNextJump()): ?>
|
107 |
+
<li><a class="next_jump" title="" href="<?php echo $this->getNextJumpUrl() ?>">...</a></li>
|
108 |
+
<?php endif;?>
|
109 |
+
|
110 |
+
<?php if ($this->canShowLast()): ?>
|
111 |
+
<li><a class="last" href="<?php echo $this->getLastPageUrl() ?>"><?php echo $this->getLastPageNum() ?></a></li>
|
112 |
+
<?php endif;?>
|
113 |
+
|
114 |
+
<?php if (!$this->isLastPage()): ?>
|
115 |
+
<li>
|
116 |
+
<a class="next<?php if(!$this->getAnchorTextForNext()): ?> i-next<?php endif; ?>" href="<?php echo $this->getNextPageUrl() ?>" title="<?php echo $this->__('Next') ?>">
|
117 |
+
<?php if(!$this->getAnchorTextForNext()): ?>
|
118 |
+
<i class="fa fa-chevron-right v-middle"></i>
|
119 |
+
<?php else: ?>
|
120 |
+
<?php echo $this->getAnchorTextForNext() ?>
|
121 |
+
<?php endif;?>
|
122 |
+
</a>
|
123 |
+
</li>
|
124 |
+
<?php endif;?>
|
125 |
+
</ol>
|
126 |
+
|
127 |
+
</div>
|
128 |
+
<?php endif; ?>
|
129 |
+
|
130 |
+
<?php if($this->getUseContainer()): ?>
|
131 |
+
</div>
|
132 |
+
<?php endif ?>
|
133 |
+
|
134 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/page/html/top.links.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @deprecated after 1.4.0.1
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<?php if($toplinks && is_array($toplinks)): ?>
|
33 |
+
<ul class="links">
|
34 |
+
<?php echo $this->getChildHtml() ?>
|
35 |
+
<?php foreach($toplinks as $_toplink): ?>
|
36 |
+
<li<?php if($_toplink['first']||$_toplink['last']): ?> class="<?php if($_toplink['first']): ?>first<?php endif; ?><?php if($_toplink['last']): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_toplink['liParams'] ?>><?php echo $_toplink['beforeText'] ?><a <?php echo $_toplink['aParams'] ?>><?php echo $_toplink['innerText'] ?></a><?php echo $_toplink['afterText'] ?></li>
|
37 |
+
<?php endforeach; ?>
|
38 |
+
</ul>
|
39 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/page/html/topmenu.phtml
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Top menu for store
|
30 |
+
*
|
31 |
+
* @see Mage_Page_Block_Html_Topmenu
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<div id="mainNav" class="menu">
|
35 |
+
<?php $_menu = $this->getHtml('level-top') ?>
|
36 |
+
<?php if($_menu): ?>
|
37 |
+
<div class="nav-container">
|
38 |
+
<div class="menu_search_wrapp clearfix">
|
39 |
+
<ul id="mega-menu-1" class="mega-menu">
|
40 |
+
<?php $homeLink = Mage::getStoreConfig('mgthememinimo/main/showhome'); ?>
|
41 |
+
<?php if ($homeLink): ?>
|
42 |
+
<?php if ($homeLink == "yes"): ?>
|
43 |
+
<li class="level0 nav-1 first home-link level-top"><a class="level-top" href="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK); ?>">Home</a></li>
|
44 |
+
<?php elseif($homeLink == "no"): ?>
|
45 |
+
<!-- do nothing -->
|
46 |
+
<?php endif ?>
|
47 |
+
<?php else: ?>
|
48 |
+
<!-- do nothing -->
|
49 |
+
<?php endif ?>
|
50 |
+
|
51 |
+
<?php echo $_menu ?>
|
52 |
+
|
53 |
+
<?php endif ?>
|
54 |
+
|
55 |
+
</ul>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
<div id="menu_mobile_click" class="clearfix">
|
63 |
+
<div class="menu_icon"><i class="fa fa-bars"></i></div>
|
64 |
+
<div class="search_icon"><i class="fa fa-search"></i></div>
|
65 |
+
<div class="search_mobile">
|
66 |
+
<?php $catalogSearchHelper = $this->helper('catalogsearch'); ?>
|
67 |
+
<form id="search_mini_form" action="<?php echo $catalogSearchHelper->getResultUrl() ?>" method="get">
|
68 |
+
<div class="form-search">
|
69 |
+
<input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
|
70 |
+
<button type="submit" title="<?php echo $this->__('Search') ?>" class="search-button"><i class="fa fa-chevron-right"></i></button>
|
71 |
+
<div id="search_autocomplete" class="search-autocomplete"></div>
|
72 |
+
<script type="text/javascript">
|
73 |
+
//<![CDATA[
|
74 |
+
var searchForm = new Varien.searchForm('search_mini_form', 'search', '');
|
75 |
+
searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
|
76 |
+
//]]>
|
77 |
+
</script>
|
78 |
+
</div>
|
79 |
+
</form>
|
80 |
+
</div>
|
81 |
+
</div>
|
82 |
+
|
83 |
+
<div class="menu_mobile">
|
84 |
+
<?php if($_menu): ?>
|
85 |
+
<div class="nav-container">
|
86 |
+
<div class="menu_search_wrapp">
|
87 |
+
|
88 |
+
<ul id="nav">
|
89 |
+
<?php echo $_menu; ?>
|
90 |
+
|
91 |
+
<?php endif ?>
|
92 |
+
|
93 |
+
</ul>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/page/html/viewpointmeta.phtml
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
app/design/frontend/modulesgarden/minimo/template/page/html/wrapper.phtml
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @deprecated after 1.4.0.0-alpha3
|
30 |
+
*/
|
31 |
+
|
32 |
+
/**
|
33 |
+
* This template is for generic wrapper purposes, including ajax.updater loaded blocks
|
34 |
+
*
|
35 |
+
* Usage in layout xml files:
|
36 |
+
* <block type="core/template" template="page/html/wrapper.phtml">
|
37 |
+
* <action method="setId"><id>some-custom-identificator</id></action>
|
38 |
+
*
|
39 |
+
* <!-- optional -->
|
40 |
+
* <action method="setTag"><tag>span</tag></action> <!-- div is used if not specified -->
|
41 |
+
* <action method="setParams"><params>class="custom-class"</params></action>
|
42 |
+
*
|
43 |
+
* <!-- insert wrapped blocks here -->
|
44 |
+
* </block>
|
45 |
+
*/
|
46 |
+
?>
|
47 |
+
<?php $_tag = $this->hasTag() ? $this->getTag() : "div" ?>
|
48 |
+
<<?php echo $_tag?> id="<?php echo $this->getId()?>" <?php echo $this->getParams()?>>
|
49 |
+
<?php echo $this->getChildHtml()?>
|
50 |
+
</<?php echo $_tag?>>
|
app/design/frontend/modulesgarden/minimo/template/page/newBanerList.phtml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$baner1 = (int) Mage::getModel('cms/block')->load('minimo-baner-1')->getIsActive();
|
3 |
+
$baner2 = (int) Mage::getModel('cms/block')->load('minimo-baner-2')->getIsActive();
|
4 |
+
$baner3 = (int) Mage::getModel('cms/block')->load('minimo-baner-3')->getIsActive();
|
5 |
+
?>
|
6 |
+
|
7 |
+
<?php if($baner1 && $baner2 && $baner3) { ?>
|
8 |
+
<div class="newBanerList-container">
|
9 |
+
<ul class="banersList clearfix">
|
10 |
+
<li><?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('minimo-baner-1')->toHtml() ?></li>
|
11 |
+
<li><?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('minimo-baner-2')->toHtml() ?></li>
|
12 |
+
<li><?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('minimo-baner-3')->toHtml() ?></li>
|
13 |
+
</ul>
|
14 |
+
</div>
|
15 |
+
<?php } ?>
|
app/design/frontend/modulesgarden/minimo/template/page/switch/languages.phtml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Language switcher template
|
30 |
+
*
|
31 |
+
* @see Mage_Page_Block_Switch
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php if(count($this->getStores())>1): ?>
|
35 |
+
<div class="form-language clearfix">
|
36 |
+
<select id="select-language" class="selectric-select" title="<?php echo $this->__('Language') ?>" onchange="window.location.href=this.value">
|
37 |
+
<?php foreach ($this->getStores() as $_lang): ?>
|
38 |
+
<?php $_selected = ($_lang->getId() == $this->getCurrentStoreId()) ? ' selected="selected"' : '' ?>
|
39 |
+
<option value="<?php echo $_lang->getCurrentUrl() ?>"<?php echo $_selected ?>><?php echo $this->escapeHtml($_lang->getName()) ?></option>
|
40 |
+
<?php endforeach; ?>
|
41 |
+
</select>
|
42 |
+
<label for="select-language"><?php echo $this->__('Language:') ?></label>
|
43 |
+
<i class="fa fa-globe"></i>
|
44 |
+
</div>
|
45 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/page/template/links.phtml
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Page_Block_Template_Links
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<?php $_links = $this->getLinks(); ?>
|
33 |
+
<?php if(count($_links)>0): ?>
|
34 |
+
<ul class="links"<?php if($this->getName()): ?> id="<?php echo $this->getName() ?>"<?php endif;?>>
|
35 |
+
<?php foreach($_links as $_link): ?>
|
36 |
+
<?php if ($_link instanceof Mage_Core_Block_Abstract):?>
|
37 |
+
<?php echo $_link->toHtml() ?>
|
38 |
+
<?php else: ?>
|
39 |
+
<li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo $_link->getLabel() ?></a><?php echo $_link->getAfterText() ?></li>
|
40 |
+
<?php endif;?>
|
41 |
+
<?php endforeach; ?>
|
42 |
+
</ul>
|
43 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/page/template/linksblock.phtml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Page_Block_Template_Links_Block
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<li<?php if($this->getIsFirst()||$this->getIsLast()): ?> class="<?php if($this->getIsFirst()): ?>first<?php endif; ?><?php if($this->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $this->getLiParams() ?>><?php echo $this->getBeforeText() ?><a href="<?php echo $this->getLinkUrl() ?>" title="<?php echo $this->getTitle() ?>" <?php echo $this->getAParams() ?>><?php echo $this->getLabel() ?></a><?php echo $this->getAfterText() ?></li>
|
app/design/frontend/modulesgarden/minimo/template/payment/catalog/product/view/profile/options.phtml
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Payment_Block_Catalog_Product_View_Profile
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<?php if ($dateHtml = $this->getDateHtml()): ?>
|
33 |
+
<dl>
|
34 |
+
<dt>
|
35 |
+
<label for="<?php echo $this->getDateHtmlId() ?>"><?php echo $this->__('Recurring Profile Start Date') ?></label>
|
36 |
+
</dt>
|
37 |
+
<dd>
|
38 |
+
<?php echo $dateHtml ?>
|
39 |
+
</dd>
|
40 |
+
</dl>
|
41 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/payment/catalog/product/view/profile/schedule.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Payment_Block_Catalog_Product_View_Profile
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<dl>
|
33 |
+
<?php foreach($this->getScheduleInfo() as $term => $definitions): ?>
|
34 |
+
<dt><?php echo $this->escapeHtml($term); ?></dt>
|
35 |
+
<?php foreach ($definitions as $definition):?>
|
36 |
+
<dd><?php echo $this->escapeHtml($definition)?></dd>
|
37 |
+
<?php endforeach;?>
|
38 |
+
<?php endforeach;?>
|
39 |
+
</dl>
|
app/design/frontend/modulesgarden/minimo/template/payment/form/banktransfer.phtml
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if ($instructions = $this->getInstructions()): ?>
|
28 |
+
<ul class="form-list checkout-agreements" id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none;">
|
29 |
+
<li>
|
30 |
+
<div class="<?php echo $this->getMethodCode() ?>-instructions-content agreement-content">
|
31 |
+
<?php echo nl2br($instructions) ?>
|
32 |
+
</div>
|
33 |
+
</li>
|
34 |
+
</ul>
|
35 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/payment/form/cashondelivery.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @see Saas_Payment_Block_Form_Cashondelivery
|
29 |
+
*/
|
30 |
+
?>
|
31 |
+
<?php if ($this->getInstructions()): ?>
|
32 |
+
<ul class="form-list checkout-agreements" id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none;">
|
33 |
+
<li>
|
34 |
+
<div class="<?php echo $this->getMethodCode() ?>-instructions-content agreement-content">
|
35 |
+
<?php echo nl2br($this->getInstructions()) ?>
|
36 |
+
</div>
|
37 |
+
</li>
|
38 |
+
</ul>
|
39 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/payment/form/cc.phtml
ADDED
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_code=$this->getMethodCode() ?>
|
28 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
29 |
+
<?php /*
|
30 |
+
<li>
|
31 |
+
<div class="input-box">
|
32 |
+
<label for="<?php echo $_code ?>_cc_owner" class="required"><em>*</em><?php echo $this->__('Name on Card') ?></label>
|
33 |
+
<input type="text" title="<?php echo $this->__('Name on Card') ?>" class="input-text required-entry" id="<?php echo $_code ?>_cc_owner" name="payment[cc_owner]" value="<?php echo $this->escapeHtml($this->getInfoData('cc_owner')) ?>" />
|
34 |
+
</div>
|
35 |
+
</li>
|
36 |
+
*/ ?>
|
37 |
+
<li>
|
38 |
+
<label for="<?php echo $_code ?>_cc_type" class="required"><em>*</em><?php echo $this->__('Credit Card Type') ?></label>
|
39 |
+
<div class="input-box">
|
40 |
+
<select id="<?php echo $_code ?>_cc_type" name="payment[cc_type]" class="required-entry validate-cc-type-select">
|
41 |
+
<option value=""><?php echo $this->__('--Please Select--')?></option>
|
42 |
+
<?php $_ccType = $this->getInfoData('cc_type') ?>
|
43 |
+
<?php foreach ($this->getCcAvailableTypes() as $_typeCode => $_typeName): ?>
|
44 |
+
<option value="<?php echo $_typeCode ?>"<?php if($_typeCode==$_ccType): ?> selected="selected"<?php endif ?>><?php echo $_typeName ?></option>
|
45 |
+
<?php endforeach ?>
|
46 |
+
</select>
|
47 |
+
</div>
|
48 |
+
</li>
|
49 |
+
<li>
|
50 |
+
<label for="<?php echo $_code ?>_cc_number" class="required"><em>*</em><?php echo $this->__('Credit Card Number') ?></label>
|
51 |
+
<div class="input-box">
|
52 |
+
<input type="text" id="<?php echo $_code ?>_cc_number" name="payment[cc_number]" title="<?php echo $this->__('Credit Card Number') ?>" class="input-text validate-cc-number validate-cc-type" value="" />
|
53 |
+
</div>
|
54 |
+
</li>
|
55 |
+
<li id="<?php echo $_code ?>_cc_type_exp_div">
|
56 |
+
<label for="<?php echo $_code ?>_expiration" class="required"><em>*</em><?php echo $this->__('Expiration Date') ?></label>
|
57 |
+
<div class="input-box">
|
58 |
+
<div class="v-fix">
|
59 |
+
<select id="<?php echo $_code ?>_expiration" name="payment[cc_exp_month]" class="month validate-cc-exp required-entry">
|
60 |
+
<?php $_ccExpMonth = $this->getInfoData('cc_exp_month') ?>
|
61 |
+
<?php foreach ($this->getCcMonths() as $k=>$v): ?>
|
62 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$_ccExpMonth): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
63 |
+
<?php endforeach ?>
|
64 |
+
</select>
|
65 |
+
</div>
|
66 |
+
<div class="v-fix">
|
67 |
+
<?php $_ccExpYear = $this->getInfoData('cc_exp_year') ?>
|
68 |
+
<select id="<?php echo $_code ?>_expiration_yr" name="payment[cc_exp_year]" class="year required-entry">
|
69 |
+
<?php foreach ($this->getCcYears() as $k=>$v): ?>
|
70 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$_ccExpYear): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
71 |
+
<?php endforeach ?>
|
72 |
+
</select>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
</li>
|
76 |
+
<?php echo $this->getChildHtml() ?>
|
77 |
+
<?php if($this->hasVerification()): ?>
|
78 |
+
<li id="<?php echo $_code ?>_cc_type_cvv_div">
|
79 |
+
<label for="<?php echo $_code ?>_cc_cid" class="required"><em>*</em><?php echo $this->__('Card Verification Number') ?></label>
|
80 |
+
<div class="input-box">
|
81 |
+
<div class="v-fix">
|
82 |
+
<input type="text" title="<?php echo $this->__('Card Verification Number') ?>" class="input-text cvv required-entry validate-cc-cvn" id="<?php echo $_code ?>_cc_cid" name="payment[cc_cid]" value="" />
|
83 |
+
</div>
|
84 |
+
<a href="#" class="cvv-what-is-this"><?php echo $this->__('What is this?') ?></a>
|
85 |
+
</div>
|
86 |
+
</li>
|
87 |
+
<?php endif; ?>
|
88 |
+
|
89 |
+
<?php if ($this->hasSsCardType()): ?>
|
90 |
+
<li id="<?php echo $_code ?>_cc_type_ss_div">
|
91 |
+
<ul class="inner-form">
|
92 |
+
<li class="form-alt"><label for="<?php echo $_code ?>_cc_issue" class="required"><em>*</em><?php echo $this->__('Switch/Solo/Maestro Only') ?></label></li>
|
93 |
+
<li>
|
94 |
+
<label for="<?php echo $_code ?>_cc_issue"><?php echo $this->__('Issue Number') ?>:</label>
|
95 |
+
<span class="input-box">
|
96 |
+
<input type="text" title="<?php echo $this->__('Issue Number') ?>" class="input-text validate-cc-ukss cvv" id="<?php echo $_code ?>_cc_issue" name="payment[cc_ss_issue]" value="" />
|
97 |
+
</span>
|
98 |
+
</li>
|
99 |
+
|
100 |
+
<li>
|
101 |
+
<label for="<?php echo $_code ?>_start_month"><?php echo $this->__('Start Date') ?>:</label>
|
102 |
+
<div class="input-box">
|
103 |
+
<div class="v-fix">
|
104 |
+
<select id="<?php echo $_code ?>_start_month" name="payment[cc_ss_start_month]" class="validate-cc-ukss month">
|
105 |
+
<?php foreach ($this->getCcMonths() as $k=>$v): ?>
|
106 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$this->getInfoData('cc_ss_start_month')): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
107 |
+
<?php endforeach ?>
|
108 |
+
</select>
|
109 |
+
</div>
|
110 |
+
<div class="v-fix">
|
111 |
+
<select id="<?php echo $_code ?>_start_year" name="payment[cc_ss_start_year]" class="validate-cc-ukss year">
|
112 |
+
<?php foreach ($this->getSsStartYears() as $k=>$v): ?>
|
113 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$this->getInfoData('cc_ss_start_year')): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
114 |
+
<?php endforeach ?>
|
115 |
+
</select>
|
116 |
+
</div>
|
117 |
+
</div>
|
118 |
+
</li>
|
119 |
+
<li class="adv-container"> </li>
|
120 |
+
</ul>
|
121 |
+
<script type="text/javascript">
|
122 |
+
//<![CDATA[
|
123 |
+
var SSChecked<?php echo $_code ?> = function() {
|
124 |
+
var elm = $('<?php echo $_code ?>_cc_type');
|
125 |
+
if (['SS','SM','SO'].indexOf(elm.value) != -1) {
|
126 |
+
$('<?php echo $_code ?>_cc_type_ss_div').show();
|
127 |
+
} else {
|
128 |
+
$('<?php echo $_code ?>_cc_type_ss_div').hide();
|
129 |
+
}
|
130 |
+
};
|
131 |
+
|
132 |
+
Event.observe($('<?php echo $_code ?>_cc_type'), 'change', SSChecked<?php echo $_code ?>);
|
133 |
+
SSChecked<?php echo $_code ?>();
|
134 |
+
//]]>
|
135 |
+
</script>
|
136 |
+
</li>
|
137 |
+
<?php endif; ?>
|
138 |
+
</ul>
|
app/design/frontend/modulesgarden/minimo/template/payment/form/ccsave.phtml
ADDED
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php $_code=$this->getMethodCode() ?>
|
28 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
|
29 |
+
<li>
|
30 |
+
<label for="<?php echo $_code ?>_cc_owner" class="required"><em>*</em><?php echo $this->__('Name on Card') ?></label>
|
31 |
+
<div class="input-box">
|
32 |
+
<input type="text" title="<?php echo $this->__('Name on Card') ?>" class="input-text required-entry" id="<?php echo $_code ?>_cc_owner" name="payment[cc_owner]" value="<?php echo $this->escapeHtml($this->getInfoData('cc_owner')) ?>" />
|
33 |
+
</div>
|
34 |
+
</li>
|
35 |
+
<li>
|
36 |
+
<label for="<?php echo $_code ?>_cc_type" class="required"><em>*</em><?php echo $this->__('Credit Card Type') ?></label>
|
37 |
+
<div class="input-box">
|
38 |
+
<select id="<?php echo $_code ?>_cc_type" name="payment[cc_type]" title="<?php echo $this->__('Credit Card Type') ?>" class="required-entry validate-cc-type-select">
|
39 |
+
<option value=""><?php echo $this->__('--Please Select--') ?></option>
|
40 |
+
<?php $_ccType = $this->getInfoData('cc_type') ?>
|
41 |
+
<?php foreach ($this->getCcAvailableTypes() as $_typeCode => $_typeName): ?>
|
42 |
+
<option value="<?php echo $_typeCode ?>"<?php if($_typeCode==$_ccType): ?> selected="selected"<?php endif ?>><?php echo $_typeName ?></option>
|
43 |
+
<?php endforeach ?>
|
44 |
+
</select>
|
45 |
+
</div>
|
46 |
+
</li>
|
47 |
+
<li>
|
48 |
+
<label for="<?php echo $_code ?>_cc_number" class="required"><em>*</em><?php echo $this->__('Credit Card Number') ?></label>
|
49 |
+
<div class="input-box">
|
50 |
+
<input type="text" id="<?php echo $_code ?>_cc_number" name="payment[cc_number]" title="<?php echo $this->__('Credit Card Number') ?>" class="input-text validate-cc-number validate-cc-type" value="" />
|
51 |
+
</div>
|
52 |
+
</li>
|
53 |
+
<li>
|
54 |
+
<label for="<?php echo $_code ?>_expiration" class="required"><em>*</em><?php echo $this->__('Expiration Date') ?></label>
|
55 |
+
<div class="input-box">
|
56 |
+
<div class="v-fix">
|
57 |
+
<select id="<?php echo $_code ?>_expiration" name="payment[cc_exp_month]" class="month validate-cc-exp required-entry">
|
58 |
+
<?php $_ccExpMonth = $this->getInfoData('cc_exp_month') ?>
|
59 |
+
<?php foreach ($this->getCcMonths() as $k=>$v): ?>
|
60 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$_ccExpMonth): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
61 |
+
<?php endforeach ?>
|
62 |
+
</select>
|
63 |
+
</div>
|
64 |
+
<div class="v-fix">
|
65 |
+
<?php $_ccExpYear = $this->getInfoData('cc_exp_year') ?>
|
66 |
+
<select id="<?php echo $_code ?>_expiration_yr" name="payment[cc_exp_year]" class="year required-entry">
|
67 |
+
<?php foreach ($this->getCcYears() as $k=>$v): ?>
|
68 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$_ccExpYear): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
69 |
+
<?php endforeach ?>
|
70 |
+
</select>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
</li>
|
74 |
+
<?php echo $this->getChildHtml() ?>
|
75 |
+
<?php if($this->hasVerification()): ?>
|
76 |
+
<li>
|
77 |
+
<label for="<?php echo $_code ?>_cc_cid" class="required"><em>*</em><?php echo $this->__('Card Verification Number') ?></label>
|
78 |
+
<div class="input-box">
|
79 |
+
<div class="v-fix">
|
80 |
+
<input type="text" title="<?php echo $this->__('Card Verification Number') ?>" class="input-text cvv required-entry validate-cc-cvn" id="<?php echo $_code ?>_cc_cid" name="payment[cc_cid]" value="" />
|
81 |
+
</div>
|
82 |
+
<a href="#" class="cvv-what-is-this"><?php echo $this->__('What is this?') ?></a>
|
83 |
+
</div>
|
84 |
+
</li>
|
85 |
+
<?php endif; ?>
|
86 |
+
<?php if ($this->hasSsCardType()): ?>
|
87 |
+
<li id="<?php echo $_code ?>_cc_type_ss_div">
|
88 |
+
<ul class="inner-form">
|
89 |
+
<li class="form-alt"><label for="<?php echo $_code ?>_cc_issue" class="required"><em>*</em><?php echo $this->__('Switch/Solo/Maestro Only') ?></label></li>
|
90 |
+
<li>
|
91 |
+
<label for="<?php echo $_code ?>_cc_issue"><?php echo $this->__('Issue Number') ?>:</label>
|
92 |
+
<span class="input-box">
|
93 |
+
<input type="text" title="<?php echo $this->__('Issue Number') ?>" class="input-text validate-cc-ukss cvv" id="<?php echo $_code ?>_cc_issue" name="payment[cc_ss_issue]" value="" />
|
94 |
+
</span>
|
95 |
+
</li>
|
96 |
+
|
97 |
+
<li>
|
98 |
+
<label for="<?php echo $_code ?>_start_month"><?php echo $this->__('Start Date') ?>:</label>
|
99 |
+
<div class="input-box">
|
100 |
+
<div class="v-fix">
|
101 |
+
<select id="<?php echo $_code ?>_start_month" name="payment[cc_ss_start_month]" class="validate-cc-ukss month">
|
102 |
+
<?php foreach ($this->getCcMonths() as $k=>$v): ?>
|
103 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$this->getInfoData('cc_ss_start_month')): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
104 |
+
<?php endforeach ?>
|
105 |
+
</select>
|
106 |
+
</div>
|
107 |
+
<div class="v-fix">
|
108 |
+
<select id="<?php echo $_code ?>_start_year" name="payment[cc_ss_start_year]" class="validate-cc-ukss year">
|
109 |
+
<?php foreach ($this->getSsStartYears() as $k=>$v): ?>
|
110 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$this->getInfoData('cc_ss_start_year')): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
111 |
+
<?php endforeach ?>
|
112 |
+
</select>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
</li>
|
116 |
+
<li class="adv-container"> </li>
|
117 |
+
</ul>
|
118 |
+
<script type="text/javascript">
|
119 |
+
//<![CDATA[
|
120 |
+
var SSChecked<?php echo $_code ?> = function() {
|
121 |
+
var elm = $('<?php echo $_code ?>_cc_type');
|
122 |
+
if (['SS','SM','SO'].indexOf(elm.value) != -1) {
|
123 |
+
$('<?php echo $_code ?>_cc_type_ss_div').show();
|
124 |
+
} else {
|
125 |
+
$('<?php echo $_code ?>_cc_type_ss_div').hide();
|
126 |
+
}
|
127 |
+
};
|
128 |
+
|
129 |
+
Event.observe($('<?php echo $_code ?>_cc_type'), 'change', SSChecked<?php echo $_code ?>);
|
130 |
+
SSChecked<?php echo $_code ?>();
|
131 |
+
//]]>
|
132 |
+
</script>
|
133 |
+
</li>
|
134 |
+
<?php endif; ?>
|
135 |
+
</ul>
|
app/design/frontend/modulesgarden/minimo/template/payment/form/checkmo.phtml
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if ($this->getMethod()->getMailingAddress() || $this->getMethod()->getPayableTo()): ?>
|
28 |
+
<ul class="form-list checkmo-list" id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none;">
|
29 |
+
<?php if ($this->getMethod()->getPayableTo()): ?>
|
30 |
+
<li>
|
31 |
+
<label><?php echo $this->__('Make Check payable to:') ?></label>
|
32 |
+
<?php echo $this->escapeHtml($this->getMethod()->getPayableTo()) ?>
|
33 |
+
</li>
|
34 |
+
<?php endif; ?>
|
35 |
+
<?php if ($this->getMethod()->getMailingAddress()): ?>
|
36 |
+
<li>
|
37 |
+
<label><?php echo Mage::helper('payment')->__('Send Check to:') ?></label>
|
38 |
+
<address class="checkmo-mailing-address">
|
39 |
+
<?php echo nl2br($this->escapeHtml($this->getMethod()->getMailingAddress())) ?>
|
40 |
+
</address>
|
41 |
+
</li>
|
42 |
+
<?php endif; ?>
|
43 |
+
</ul>
|
44 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/payment/form/purchaseorder.phtml
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<ul class="form-list" id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none;">
|
28 |
+
<li>
|
29 |
+
<label for="po_number" class="required"><em>*</em><?php echo $this->__('Purchase Order Number') ?></label>
|
30 |
+
<div class="input-box">
|
31 |
+
<input type="text" id="po_number" name="payment[po_number]" title="<?php echo $this->__('Purchase Order Number') ?>" class="input-text required-entry" value="<?php echo $this->escapeHtml($this->getInfoData('po_number')) ?>" />
|
32 |
+
</div>
|
33 |
+
</li>
|
34 |
+
</ul>
|
app/design/frontend/modulesgarden/minimo/template/payment/info/banktransfer.phtml
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Payment_Block_Info
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<p><?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?></p>
|
33 |
+
<?php if ($this->getInstructions()): ?>
|
34 |
+
<table>
|
35 |
+
<tbody>
|
36 |
+
<tr>
|
37 |
+
<td><?php echo nl2br($this->getInstructions()) ?></td>
|
38 |
+
</tr>
|
39 |
+
</tbody>
|
40 |
+
</table>
|
41 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/payment/info/checkmo.phtml
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<p><?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?></p>
|
28 |
+
<?php if($this->getInfo()->getAdditionalData()): ?>
|
29 |
+
<?php if($this->getPayableTo()): ?>
|
30 |
+
<p><strong><?php echo $this->__('Make Check payable to:') ?></strong> <?php echo $this->escapeHtml($this->getPayableTo()) ?></p>
|
31 |
+
<?php endif; ?>
|
32 |
+
<?php if($this->getMailingAddress()): ?>
|
33 |
+
<p><strong><?php echo Mage::helper('payment')->__('Send Check to:') ?></strong></p>
|
34 |
+
<address class="checkmo-mailing-address">
|
35 |
+
<?php echo nl2br($this->escapeHtml($this->getMailingAddress())) ?>
|
36 |
+
</address>
|
37 |
+
<?php endif; ?>
|
38 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/payment/info/default.phtml
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* @see Mage_Payment_Block_Info
|
30 |
+
*/
|
31 |
+
?>
|
32 |
+
<p><strong><?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?></strong></p>
|
33 |
+
|
34 |
+
<?php if ($_specificInfo = $this->getSpecificInformation()):?>
|
35 |
+
<table>
|
36 |
+
<tbody>
|
37 |
+
<?php foreach ($_specificInfo as $_label => $_value):?>
|
38 |
+
<tr>
|
39 |
+
<th><strong><?php echo $this->escapeHtml($_label)?>:</strong></th>
|
40 |
+
</tr>
|
41 |
+
<tr>
|
42 |
+
<td><?php echo nl2br(implode($this->getValueAsArray($_value, true), "\n"))?></td>
|
43 |
+
</tr>
|
44 |
+
<?php endforeach; ?>
|
45 |
+
</tbody>
|
46 |
+
</table>
|
47 |
+
<?php endif;?>
|
48 |
+
|
49 |
+
<?php echo $this->getChildHtml()?>
|
app/design/frontend/modulesgarden/minimo/template/payment/info/purchaseorder.phtml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<p><?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?></p>
|
28 |
+
<p><strong><?php echo $this->__('Purchase Order Number:') ?></strong> <span class="nobr"><?php echo $this->escapeHtml($this->getInfo()->getPoNumber()) ?></span></p>
|
app/design/frontend/modulesgarden/minimo/template/persistent/checkout/onepage/billing.phtml
ADDED
@@ -0,0 +1,233 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
/** @var Mage_Checkout_Block_Onepage_Billing $this */
|
27 |
+
?>
|
28 |
+
<?php $imgStyle = Mage::getStoreConfig('mgthememinimo/main/colorscheme');
|
29 |
+
if ( $imgStyle == 'green'){
|
30 |
+
$img = '-green';
|
31 |
+
}else {
|
32 |
+
$img = '-blue';
|
33 |
+
}
|
34 |
+
?>
|
35 |
+
<form id="co-billing-form" action="">
|
36 |
+
<fieldset>
|
37 |
+
<ul class="form-list">
|
38 |
+
<?php if ($this->customerHasAddresses()): ?>
|
39 |
+
<li class="wide">
|
40 |
+
<label for="billing-address-select"><?php echo $this->__('Select a billing address from your address book or enter a new address.') ?></label>
|
41 |
+
<div class="input-box">
|
42 |
+
<?php echo $this->getAddressesHtmlSelect('billing') ?>
|
43 |
+
</div>
|
44 |
+
</li>
|
45 |
+
<?php endif; ?>
|
46 |
+
<li id="billing-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif; ?>>
|
47 |
+
<fieldset>
|
48 |
+
<input type="hidden" name="billing[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="billing:address_id" />
|
49 |
+
<ul>
|
50 |
+
<li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress()->getFirstname() ? $this->getAddress() : $this->getQuote()->getCustomer())->setForceUseCustomerRequiredAttributes(!$this->isCustomerLoggedIn())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?></li>
|
51 |
+
<li class="fields">
|
52 |
+
<div class="field">
|
53 |
+
<label for="billing:company"><?php echo $this->__('Company') ?></label>
|
54 |
+
<div class="input-box">
|
55 |
+
<input type="text" id="billing:company" name="billing[company]" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
<?php if(!$this->isCustomerLoggedIn()): ?>
|
59 |
+
<div class="field">
|
60 |
+
<label for="billing:email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
61 |
+
<div class="input-box">
|
62 |
+
<input type="text" name="billing[email]" id="billing:email" value="<?php echo $this->escapeHtml($this->getAddress()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text validate-email required-entry" />
|
63 |
+
</div>
|
64 |
+
</div>
|
65 |
+
<?php endif; ?>
|
66 |
+
</li>
|
67 |
+
<?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
|
68 |
+
<li class="wide">
|
69 |
+
<label for="billing:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
|
70 |
+
<div class="input-box">
|
71 |
+
<input type="text" title="<?php echo $this->__('Street Address') ?>" name="billing[street][]" id="billing:street1" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" class="input-text <?php echo $_streetValidationClass ?>" />
|
72 |
+
</div>
|
73 |
+
</li>
|
74 |
+
<?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
|
75 |
+
<?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
|
76 |
+
<li class="wide">
|
77 |
+
<div class="input-box">
|
78 |
+
<input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="billing[street][]" id="billing:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="input-text <?php echo $_streetValidationClass ?>" />
|
79 |
+
</div>
|
80 |
+
</li>
|
81 |
+
<?php endfor; ?>
|
82 |
+
<?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
|
83 |
+
<li class="wide">
|
84 |
+
<label for="billing:vat_id"><?php echo $this->__('VAT Number') ?></label>
|
85 |
+
<div class="input-box">
|
86 |
+
<input type="text" id="billing:vat_id" name="billing[vat_id]" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()) ?>" title="<?php echo $this->__('VAT Number') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
|
87 |
+
</div>
|
88 |
+
</li>
|
89 |
+
<?php endif; ?>
|
90 |
+
<li class="fields">
|
91 |
+
<div class="field">
|
92 |
+
<label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
|
93 |
+
<div class="input-box">
|
94 |
+
<input type="text" title="<?php echo $this->__('City') ?>" name="billing[city]" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="billing:city" />
|
95 |
+
</div>
|
96 |
+
</div>
|
97 |
+
<div class="field">
|
98 |
+
<label for="billing:region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
|
99 |
+
<div class="input-box">
|
100 |
+
<select id="billing:region_id" name="billing[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
|
101 |
+
<option value=""><?php echo $this->__('Please select region, state or province') ?></option>
|
102 |
+
</select>
|
103 |
+
<script type="text/javascript">
|
104 |
+
//<![CDATA[
|
105 |
+
$('billing:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
|
106 |
+
//]]>
|
107 |
+
</script>
|
108 |
+
<input type="text" id="billing:region" name="billing[region]" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
|
109 |
+
</div>
|
110 |
+
</div>
|
111 |
+
</li>
|
112 |
+
<li class="fields">
|
113 |
+
<div class="field">
|
114 |
+
<label for="billing:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
|
115 |
+
<div class="input-box">
|
116 |
+
<input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="billing[postcode]" id="billing:postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
|
117 |
+
</div>
|
118 |
+
</div>
|
119 |
+
<div class="field">
|
120 |
+
<label for="billing:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
|
121 |
+
<div class="input-box">
|
122 |
+
<?php echo $this->getCountryHtmlSelect('billing') ?>
|
123 |
+
</div>
|
124 |
+
</div>
|
125 |
+
</li>
|
126 |
+
<li class="fields">
|
127 |
+
<div class="field">
|
128 |
+
<label for="billing:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
|
129 |
+
<div class="input-box">
|
130 |
+
<input type="text" name="billing[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="billing:telephone" />
|
131 |
+
</div>
|
132 |
+
</div>
|
133 |
+
<div class="field">
|
134 |
+
<label for="billing:fax"><?php echo $this->__('Fax') ?></label>
|
135 |
+
<div class="input-box">
|
136 |
+
<input type="text" name="billing[fax]" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="billing:fax" />
|
137 |
+
</div>
|
138 |
+
</div>
|
139 |
+
</li>
|
140 |
+
<?php if(!$this->isCustomerLoggedIn()): ?>
|
141 |
+
|
142 |
+
<?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
|
143 |
+
<?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
|
144 |
+
<?php if ($_dob->isEnabled() || $_gender->isEnabled()): ?>
|
145 |
+
<li class="fields">
|
146 |
+
<?php if ($_dob->isEnabled()): ?>
|
147 |
+
<div class="field">
|
148 |
+
<?php echo $_dob->setDate($this->getQuote()->getCustomerDob())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
|
149 |
+
</div>
|
150 |
+
<?php endif; ?>
|
151 |
+
<?php if ($_gender->isEnabled()): ?>
|
152 |
+
<div class="field">
|
153 |
+
<?php echo $_gender->setGender($this->getQuote()->getCustomerGender())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
|
154 |
+
</div>
|
155 |
+
<?php endif ?>
|
156 |
+
</li>
|
157 |
+
<?php endif ?>
|
158 |
+
|
159 |
+
<?php if ($this->isTaxvatEnabled()):?>
|
160 |
+
<li><?php echo $this->getTaxvatHtml() ?></li>
|
161 |
+
<?php endif; ?>
|
162 |
+
|
163 |
+
<li class="fields" id="register-customer-password">
|
164 |
+
<div class="field">
|
165 |
+
<label for="billing:customer_password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
|
166 |
+
<div class="input-box">
|
167 |
+
<input type="password" name="billing[customer_password]" id="billing:customer_password" title="<?php echo $this->__('Password') ?>" class="input-text required-entry validate-password" />
|
168 |
+
</div>
|
169 |
+
</div>
|
170 |
+
<div class="field">
|
171 |
+
<label for="billing:confirm_password" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
|
172 |
+
<div class="input-box">
|
173 |
+
<input type="password" name="billing[confirm_password]" title="<?php echo $this->__('Confirm Password') ?>" id="billing:confirm_password" class="input-text required-entry validate-cpassword" />
|
174 |
+
</div>
|
175 |
+
</div>
|
176 |
+
</li>
|
177 |
+
<?php echo $this->getChildHtml('persistent.remember.me'); ?>
|
178 |
+
<?php endif; ?>
|
179 |
+
<?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
|
180 |
+
<li class="control">
|
181 |
+
<input type="checkbox" name="billing[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="billing:save_in_address_book" onchange="if(window.shipping) shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="billing:save_in_address_book"><?php echo $this->__('Save in address book') ?></label>
|
182 |
+
</li>
|
183 |
+
<?php else:?>
|
184 |
+
<li class="no-display"><input type="hidden" name="billing[save_in_address_book]" value="1" /></li>
|
185 |
+
<?php endif; ?>
|
186 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
187 |
+
</ul>
|
188 |
+
<?php echo $this->getChildHtml('persistent.remember.me.tooltip'); ?>
|
189 |
+
</fieldset>
|
190 |
+
</li>
|
191 |
+
<?php if ($this->canShip()): ?>
|
192 |
+
<li class="control">
|
193 |
+
<input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_yes" value="1"<?php if ($this->isUseBillingAddressForShipping()) {?> checked="checked"<?php }?> title="<?php echo $this->__('Ship to this address') ?>" onclick="$('shipping:same_as_billing').checked = true;" class="radio" /><label for="billing:use_for_shipping_yes"><?php echo $this->__('Ship to this address') ?></label></li>
|
194 |
+
<li class="control">
|
195 |
+
<input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_no" value="0"<?php if (!$this->isUseBillingAddressForShipping()) {?> checked="checked"<?php }?> title="<?php echo $this->__('Ship to different address') ?>" onclick="$('shipping:same_as_billing').checked = false;" class="radio" /><label for="billing:use_for_shipping_no"><?php echo $this->__('Ship to different address') ?></label>
|
196 |
+
</li>
|
197 |
+
<?php endif; ?>
|
198 |
+
</ul>
|
199 |
+
<?php if (!$this->canShip()): ?>
|
200 |
+
<input type="hidden" name="billing[use_for_shipping]" value="1" />
|
201 |
+
<?php endif; ?>
|
202 |
+
<div class="buttons-set" id="billing-buttons-container">
|
203 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
204 |
+
<button type="button" title="<?php echo $this->__('Continue') ?>" class="button_green" onclick="billing.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
|
205 |
+
<span class="please-wait" id="billing-please-wait" style="display:none;">
|
206 |
+
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader'.$img.'.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
|
207 |
+
</span>
|
208 |
+
</div>
|
209 |
+
</fieldset>
|
210 |
+
</form>
|
211 |
+
<script type="text/javascript">
|
212 |
+
//<![CDATA[
|
213 |
+
var billing = new Billing('co-billing-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveBilling') ?>');
|
214 |
+
var billingForm = new VarienForm('co-billing-form');
|
215 |
+
|
216 |
+
//billingForm.setElementsRelation('billing:country_id', 'billing:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
|
217 |
+
$('billing-address-select') && billing.newAddress(!$('billing-address-select').value);
|
218 |
+
|
219 |
+
var billingRegionUpdater = new RegionUpdater('billing:country_id', 'billing:region', 'billing:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'billing:postcode');
|
220 |
+
if ($('onepage-guest-register-button')) {
|
221 |
+
Event.observe($('onepage-guest-register-button'), 'click', function(event) {
|
222 |
+
var billingRememberMe = $('co-billing-form').select('#remember-me-box');
|
223 |
+
if (billingRememberMe.length > 0) {
|
224 |
+
if ($('login:guest') && $('login:guest').checked) {
|
225 |
+
billingRememberMe[0].hide();
|
226 |
+
} else if ($('login:register') && ($('login:register').checked || $('login:register').type == 'hidden')) {
|
227 |
+
billingRememberMe[0].show();
|
228 |
+
}
|
229 |
+
}
|
230 |
+
});
|
231 |
+
}
|
232 |
+
//]]>
|
233 |
+
</script>
|
app/design/frontend/modulesgarden/minimo/template/persistent/checkout/onepage/login.phtml
ADDED
@@ -0,0 +1,149 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Customer onepage checkout login form template
|
30 |
+
*
|
31 |
+
* @see app/design/frontend/base/default/template/checkout/onepage/login.phtml
|
32 |
+
*/
|
33 |
+
/** @var $this Mage_Checkout_Block_Onepage_Login */
|
34 |
+
?>
|
35 |
+
<div class="col2-set">
|
36 |
+
<?php echo $this->getChildHtml('login_before')?>
|
37 |
+
<div class="col-1">
|
38 |
+
<h3><?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?><?php echo $this->__('Checkout as a Guest or Register') ?><?php else: ?><?php echo $this->__('Register to Create an Account') ?><?php endif; ?></h3>
|
39 |
+
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
|
40 |
+
<p><?php echo $this->__('Register with us for future convenience:') ?></p>
|
41 |
+
<?php else: ?>
|
42 |
+
<p><strong><?php echo $this->__('Register and save time!') ?></strong><br />
|
43 |
+
<?php echo $this->__('Register with us for future convenience:') ?></p>
|
44 |
+
<ul>
|
45 |
+
<li><?php echo $this->__('Fast and easy check out') ?></li>
|
46 |
+
<li><?php echo $this->__('Easy access to your order history and status') ?></li>
|
47 |
+
</ul>
|
48 |
+
<?php endif; ?>
|
49 |
+
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
|
50 |
+
<ul class="form-list">
|
51 |
+
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
|
52 |
+
<li class="control">
|
53 |
+
<input type="radio" name="checkout_method" id="login:guest" value="guest"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_GUEST): ?> checked="checked"<?php endif; ?> class="radio" /><label for="login:guest"><?php echo $this->__('Checkout as Guest') ?></label>
|
54 |
+
</li>
|
55 |
+
<?php endif; ?>
|
56 |
+
<li class="control">
|
57 |
+
<input type="radio" name="checkout_method" id="login:register" value="register"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_REGISTER || !$this->getQuote()->isAllowedGuestCheckout()): ?> checked="checked"<?php endif ?> class="radio" /><label for="login:register"><?php echo $this->__('Register') ?></label>
|
58 |
+
</li>
|
59 |
+
</ul>
|
60 |
+
<h4><?php echo $this->__('Register and save time!') ?></h4>
|
61 |
+
<p><?php echo $this->__('Register with us for future convenience:') ?></p>
|
62 |
+
<ul class="ul">
|
63 |
+
<li><?php echo $this->__('Fast and easy check out') ?></li>
|
64 |
+
<li><?php echo $this->__('Easy access to your order history and status') ?></li>
|
65 |
+
</ul>
|
66 |
+
<?php else: ?>
|
67 |
+
<input type="hidden" name="checkout_method" id="login:register" value="register" checked="checked" />
|
68 |
+
<?php endif; ?>
|
69 |
+
<div class="buttons-set">
|
70 |
+
<p class="required"> </p>
|
71 |
+
<?php if ($this->getQuote()->isAllowedGuestCheckout()): ?>
|
72 |
+
<button id="onepage-guest-register-button" type="button" class="button_green" onclick="checkout.setMethod();"><span><span><?php echo $this->__('Continue') ?></span></span></button>
|
73 |
+
<?php elseif ($this->helper('checkout')->isCustomerMustBeLogged()): ?>
|
74 |
+
<button id="onepage-guest-register-button" type="button" class="button_green" onclick="window.location='<?php echo $this->helper('checkout/url')->getRegistrationUrl();?>'"><span><span><?php echo $this->__('Register') ?></span></span></button>
|
75 |
+
<?php else: ?>
|
76 |
+
<form action="<?php echo $this->getUrl('persistent/index/saveMethod'); ?>">
|
77 |
+
<button id="onepage-guest-register-button" type="submit" class="button_green"><span><span><?php echo $this->__('Register') ?></span></span></button>
|
78 |
+
</form>
|
79 |
+
<?php endif; ?>
|
80 |
+
</div>
|
81 |
+
</div>
|
82 |
+
<div class="col-2">
|
83 |
+
<h3><?php echo $this->__('Login') ?></h3>
|
84 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
85 |
+
<form id="login-form" action="<?php echo $this->getPostAction() ?>" method="post">
|
86 |
+
<fieldset>
|
87 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
88 |
+
<h4><?php echo $this->__('Already registered?') ?></h4>
|
89 |
+
<p><?php echo $this->__('Please log in below:') ?></p>
|
90 |
+
<ul class="form-list">
|
91 |
+
<li>
|
92 |
+
<label for="login-email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
93 |
+
<div class="input-box">
|
94 |
+
<input type="text" class="input-text required-entry validate-email" id="login-email" name="login[username]" value="<?php echo $this->escapeHtml($this->getUsername()) ?>" />
|
95 |
+
</div>
|
96 |
+
</li>
|
97 |
+
<li>
|
98 |
+
<label for="login-password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
|
99 |
+
<div class="input-box">
|
100 |
+
<input type="password" class="input-text required-entry" id="login-password" name="login[password]" />
|
101 |
+
</div>
|
102 |
+
</li>
|
103 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
104 |
+
<?php echo $this->getChildHtml('persistent.remember.me'); ?>
|
105 |
+
</ul>
|
106 |
+
<input name="context" type="hidden" value="checkout" />
|
107 |
+
</fieldset>
|
108 |
+
</form>
|
109 |
+
<div class="buttons-set">
|
110 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
111 |
+
<a href="<?php echo $this->getUrl('customer/account/forgotpassword') ?>" class="f-left"><?php echo $this->__('Forgot your password?') ?></a>
|
112 |
+
<button type="submit" class="button_green" onclick="onepageLogin(this)"><span><span><?php echo $this->__('Login') ?></span></span></button>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
</div>
|
116 |
+
<script type="text/javascript">
|
117 |
+
//<![CDATA[
|
118 |
+
var loginForm = new VarienForm('login-form', true);
|
119 |
+
$('login-email').observe('keypress', bindLoginPost);
|
120 |
+
$('login-password').observe('keypress', bindLoginPost);
|
121 |
+
function bindLoginPost(evt){
|
122 |
+
if (evt.keyCode == Event.KEY_RETURN) {
|
123 |
+
loginForm.submit();
|
124 |
+
}
|
125 |
+
}
|
126 |
+
function onepageLogin(button)
|
127 |
+
{
|
128 |
+
if(loginForm.validator && loginForm.validator.validate()){
|
129 |
+
button.disabled = true;
|
130 |
+
loginForm.submit();
|
131 |
+
}
|
132 |
+
}
|
133 |
+
//]]>
|
134 |
+
</script>
|
135 |
+
<?php
|
136 |
+
$registerParam = $this->getRequest()->getParam('register');
|
137 |
+
if ($registerParam || $registerParam === ''):
|
138 |
+
?>
|
139 |
+
<script type="text/javascript">
|
140 |
+
//<![CDATA[
|
141 |
+
document.observe("dom:loaded", function() {
|
142 |
+
if($('login:register')) {
|
143 |
+
$('login:register').checked = true;
|
144 |
+
checkout.setMethod();
|
145 |
+
}
|
146 |
+
})
|
147 |
+
//]]>
|
148 |
+
</script>
|
149 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/persistent/customer/form/login.phtml
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Customer login form template
|
30 |
+
*
|
31 |
+
* @see app/design/frontend/base/default/template/customer/form/login.phtml
|
32 |
+
*/
|
33 |
+
/** @var $this Mage_Customer_Block_Form_Login */
|
34 |
+
?>
|
35 |
+
<div class="account-login">
|
36 |
+
<div class="page-title">
|
37 |
+
<h1><?php echo $this->__('Login or Create an Account') ?></h1>
|
38 |
+
</div>
|
39 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
40 |
+
<form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="login-form">
|
41 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
42 |
+
<div class="col2-set">
|
43 |
+
<div class="col-1 new-users">
|
44 |
+
<div class="content">
|
45 |
+
<h2><?php echo $this->__('New Customers') ?></h2>
|
46 |
+
<div class="wrapp">
|
47 |
+
<p><?php echo $this->__('By creating an account with our store, you will be able to move through the checkout process faster, store multiple shipping addresses, view and track your orders in your account and more.') ?></p>
|
48 |
+
</div>
|
49 |
+
<div class="buttons-set">
|
50 |
+
<button type="button" title="<?php echo $this->__('Create an Account') ?>" class="button_green" onclick="window.location='<?php echo Mage::helper('persistent')->getCreateAccountUrl($this->getCreateAccountUrl()) ?>';"><span><span><?php echo $this->__('Create an Account') ?></span></span></button>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
<div class="col-2 registered-users">
|
55 |
+
<div class="content">
|
56 |
+
<h2><?php echo $this->__('Registered Customers') ?></h2>
|
57 |
+
<div class="wrapp">
|
58 |
+
<p><?php echo $this->__('If you have an account with us, please log in.') ?></p>
|
59 |
+
<ul class="form-list">
|
60 |
+
<li>
|
61 |
+
<label for="email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
|
62 |
+
<div class="input-box">
|
63 |
+
<input type="text" name="login[username]" value="<?php echo $this->escapeHtml($this->getUsername()) ?>" id="email" class="input-text required-entry validate-email" title="<?php echo $this->__('Email Address') ?>" />
|
64 |
+
</div>
|
65 |
+
</li>
|
66 |
+
<li>
|
67 |
+
<label for="pass" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
|
68 |
+
<div class="input-box">
|
69 |
+
<input type="password" name="login[password]" class="input-text required-entry validate-password" id="pass" title="<?php echo $this->__('Password') ?>" />
|
70 |
+
</div>
|
71 |
+
</li>
|
72 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
73 |
+
<?php echo $this->getChildHtml('persistent.remember.me'); ?>
|
74 |
+
</ul>
|
75 |
+
<?php echo $this->getChildHtml('persistent.remember.me.tooltip'); ?>
|
76 |
+
<p class="required"><?php echo $this->__('* Required Fields') ?></p>
|
77 |
+
</div>
|
78 |
+
<div class="buttons-set">
|
79 |
+
<a href="<?php echo $this->getForgotPasswordUrl() ?>" class="f-left"><?php echo $this->__('Forgot Your Password?') ?></a>
|
80 |
+
<button type="submit" class="button_green" title="<?php echo $this->__('Login') ?>" name="send" id="send2"><span><span><?php echo $this->__('Login') ?></span></span></button>
|
81 |
+
</div>
|
82 |
+
</div>
|
83 |
+
</div>
|
84 |
+
</div>
|
85 |
+
<?php if (Mage::helper('checkout')->isContextCheckout()): ?>
|
86 |
+
<input name="context" type="hidden" value="checkout" />
|
87 |
+
<?php endif; ?>
|
88 |
+
</form>
|
89 |
+
<script type="text/javascript">
|
90 |
+
//<![CDATA[
|
91 |
+
var dataForm = new VarienForm('login-form', true);
|
92 |
+
//]]>
|
93 |
+
</script>
|
94 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/rating/detailed.phtml
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if(!empty($collection) && $collection->getSize()): ?>
|
28 |
+
<table class="ratings-table">
|
29 |
+
<col width="1" />
|
30 |
+
<col />
|
31 |
+
<tbody>
|
32 |
+
<?php foreach ($collection as $_rating): ?>
|
33 |
+
<?php if($_rating->getSummary()): ?>
|
34 |
+
<tr>
|
35 |
+
<th><?php echo $this->__($this->escapeHtml($_rating->getRatingCode())) ?></th>
|
36 |
+
<td>
|
37 |
+
<div class="rating-box">
|
38 |
+
<div class="rating" style="width:<?php echo ceil($_rating->getSummary()) ?>%;"></div>
|
39 |
+
</div>
|
40 |
+
</td>
|
41 |
+
</tr>
|
42 |
+
<?php endif; ?>
|
43 |
+
<?php endforeach; ?>
|
44 |
+
</tbody>
|
45 |
+
</table>
|
46 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/rating/empty.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<p class="no-rating"><a href="#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
|
app/design/frontend/modulesgarden/minimo/template/review/customer/list.phtml
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
28 |
+
<div class="page-title">
|
29 |
+
<h1><?php echo $this->__('My Product Reviews') ?></h1>
|
30 |
+
</div>
|
31 |
+
<?php if( $this->getCollection() && $this->count()): ?>
|
32 |
+
<table class="data-table" id="my-reviews-table">
|
33 |
+
<col width="1" />
|
34 |
+
<col width="210" />
|
35 |
+
<col width="1" />
|
36 |
+
<col />
|
37 |
+
<col width="1" />
|
38 |
+
<tbody>
|
39 |
+
<?php foreach ($this->getCollection() as $_review): ?>
|
40 |
+
<tr>
|
41 |
+
<td><span class="nobr"><?php echo $this->dateFormat($_review->getReviewCreatedAt()); ?></span></td>
|
42 |
+
<td><h2 class="product-name"><a href="<?php echo $this->getProductLink() ?>id/<?php echo $_review->getEntityPkValue() ?>"><?php echo $this->escapeHtml($_review->getName()) ?></a></h2></td>
|
43 |
+
<td>
|
44 |
+
<?php if($_review->getSum()): ?>
|
45 |
+
<div class="rating-box">
|
46 |
+
<div class="rating" style="width:<?php echo ( $_review->getSum() / $_review->getCount() ) ?>%;"></div>
|
47 |
+
</div>
|
48 |
+
<?php endif; ?>
|
49 |
+
</td>
|
50 |
+
<td><?php echo $this->helper('review')->getDetailHtml($_review->getDetail()) ?></td>
|
51 |
+
<td><a href="<?php echo $this->getReviewLink() ?>id/<?php echo $_review->getReviewId() ?>" class="nobr"><?php echo $this->__('View Details') ?></a></td>
|
52 |
+
</tr>
|
53 |
+
<?php endforeach; ?>
|
54 |
+
</tbody>
|
55 |
+
</table>
|
56 |
+
<script type="text/javascript">decorateTable('my-reviews-table')</script>
|
57 |
+
<br class="clear"/>
|
58 |
+
<?php echo $this->getToolbarHtml() ?>
|
59 |
+
<?php else: ?>
|
60 |
+
<p><?php echo $this->__('You have submitted no reviews.') ?></p>
|
61 |
+
<?php endif; ?>
|
62 |
+
<div class="buttons-set">
|
63 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
64 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/review/customer/recent.phtml
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if( $this->getCollection() && $this->count()): ?>
|
28 |
+
<div class="box-account box-reviews">
|
29 |
+
<div class="box-head">
|
30 |
+
<h2><?php echo $this->__('My Recent Reviews') ?></h2>
|
31 |
+
<a href="<?php echo $this->getAllReviewsUrl() ?>"><?php echo $this->__('View All Reviews') ?></a>
|
32 |
+
</div>
|
33 |
+
<ol id="my_recent_reviews">
|
34 |
+
<?php $iterator = 0 ?>
|
35 |
+
<?php foreach ($this->getCollection() as $_review): ?>
|
36 |
+
<li class="item">
|
37 |
+
<span class="number"><?php echo ++$iterator ?></span>
|
38 |
+
<div class="details">
|
39 |
+
<h3 class="product-name"><a href="<?php echo $this->getReviewUrl($_review->getReviewId()) ?>"><?php echo $this->escapeHtml($_review->getName()) ?></a></h3>
|
40 |
+
<?php if($_review->getSum()): ?>
|
41 |
+
<div class="ratings">
|
42 |
+
<strong><?php echo $this->__('Rating:') ?></strong>
|
43 |
+
<div class="rating-box">
|
44 |
+
<div class="rating" style="width:<?php echo ( $_review->getSum() / $_review->getCount() ) ?>%;"></div>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
<?php endif; ?>
|
48 |
+
</div>
|
49 |
+
</li>
|
50 |
+
<?php endforeach; ?>
|
51 |
+
</ol>
|
52 |
+
<script type="text/javascript">decorateList('my_recent_reviews');</script>
|
53 |
+
</div>
|
54 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/review/customer/view.phtml
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if($this->getProductData()->getId()): ?>
|
28 |
+
<div class="product-review">
|
29 |
+
<div class="page-title">
|
30 |
+
<h1><?php echo $this->__('Review Details') ?></h1>
|
31 |
+
</div>
|
32 |
+
<div class="product-img-box">
|
33 |
+
<a href="<?php echo $this->getProductData()->getProductUrl() ?>" title="<?php echo $this->escapeHtml($this->getProductData()->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($this->getProductData(), 'small_image')->resize(125, 125); ?>" width="125" height="125" alt="<?php echo $this->escapeHtml($this->getProductData()->getName()) ?>" /></a>
|
34 |
+
<?php if( $this->getRating() && $this->getRating()->getSize()): ?>
|
35 |
+
<p class="label"><?php echo $this->__('Average Customer Rating:') ?></p>
|
36 |
+
<?php echo $this->getReviewsSummaryHtml($this->getProductData()) ?>
|
37 |
+
<?php endif; ?>
|
38 |
+
</div>
|
39 |
+
<div class="product-details">
|
40 |
+
<h2 class="product-name"><?php echo $this->escapeHtml($this->getProductData()->getName()) ?></h2>
|
41 |
+
<?php if( $this->getRating() && $this->getRating()->getSize()): ?>
|
42 |
+
<h3><?php echo ($this->isReviewOwner()) ? $this->__('Your Rating:') : $this->__('Rating:'); ?></h3>
|
43 |
+
<table class="ratings-table">
|
44 |
+
<?php foreach ($this->getRating() as $_rating): ?>
|
45 |
+
<?php if($_rating->getPercent()): ?>
|
46 |
+
<tr>
|
47 |
+
<th><?php echo $this->escapeHtml($_rating->getRatingCode()) ?></th>
|
48 |
+
<td>
|
49 |
+
<div class="rating-box">
|
50 |
+
<div class="rating" style="width:<?php echo ceil($_rating->getPercent()) ?>%;"></div>
|
51 |
+
</div>
|
52 |
+
</td>
|
53 |
+
</tr>
|
54 |
+
<?php endif; ?>
|
55 |
+
<?php endforeach; ?>
|
56 |
+
</table>
|
57 |
+
<?php endif; ?>
|
58 |
+
<dl>
|
59 |
+
<dt>
|
60 |
+
<?php if ($this->isReviewOwner()): ?>
|
61 |
+
<?php echo $this->__('Your Review (submitted on %s):', $this->dateFormat($this->getReviewData()->getCreatedAt())) ?>
|
62 |
+
<?php else :?>
|
63 |
+
<?php echo $this->__('Review (submitted on %s):', $this->dateFormat($this->getReviewData()->getCreatedAt())) ?>
|
64 |
+
<?php endif;?>
|
65 |
+
</dt>
|
66 |
+
<dd>
|
67 |
+
<?php echo nl2br($this->escapeHtml($this->getReviewData()->getDetail())) ?>
|
68 |
+
</dd>
|
69 |
+
</dl>
|
70 |
+
</div>
|
71 |
+
<div class="buttons-set">
|
72 |
+
<p class="back-link"><a href="<?php echo $this->getBackUrl() ?>"><small>« </small><?php echo $this->__('Back to My Reviews') ?></a></p>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/review/form.phtml
ADDED
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package rwd_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="form-add">
|
28 |
+
<h2><?php echo $this->__('Write Your Own Review') ?></h2>
|
29 |
+
<?php if ($this->getAllowWriteReviewFlag()): ?>
|
30 |
+
<form action="<?php echo $this->getAction() ?>" method="post" id="review-form">
|
31 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
32 |
+
<?php echo $this->getChildHtml('form_fields_before')?>
|
33 |
+
<h3><?php echo $this->__("You're reviewing:"); ?>
|
34 |
+
<span><?php echo $this->escapeHtml($this->getProductInfo()->getName()) ?></span>
|
35 |
+
</h3>
|
36 |
+
|
37 |
+
<div class="fieldset">
|
38 |
+
<?php if( $this->getRatings() && $this->getRatings()->getSize()): ?>
|
39 |
+
<h4><?php echo $this->__('How do you rate this product?') ?> <em class="required">*</em></h4>
|
40 |
+
<span id="input-message-box"></span>
|
41 |
+
<table class="data-table review-summary-table ratings" id="product-review-table">
|
42 |
+
<col style="width:30%" />
|
43 |
+
<col style="width:14%" />
|
44 |
+
<col style="width:14%"/>
|
45 |
+
<col style="width:14%"/>
|
46 |
+
<col style="width:14%"/>
|
47 |
+
<col style="width:14%"/>
|
48 |
+
<thead>
|
49 |
+
<tr>
|
50 |
+
<th> </th>
|
51 |
+
<th>
|
52 |
+
<div class="rating-box">
|
53 |
+
<span class="rating-number">1</span>
|
54 |
+
<span class="rating nobr" style="width:20%;"><?php echo $this->__('1 star') ?></span>
|
55 |
+
</div>
|
56 |
+
</th>
|
57 |
+
<th>
|
58 |
+
<div class="rating-box">
|
59 |
+
<span class="rating-number">2</span>
|
60 |
+
<span class="rating nobr" style="width:40%;"><?php echo $this->__('2 star') ?></span>
|
61 |
+
</div>
|
62 |
+
</th>
|
63 |
+
<th>
|
64 |
+
<div class="rating-box">
|
65 |
+
<span class="rating-number">3</span>
|
66 |
+
<span class="rating nobr" style="width:60%;"><?php echo $this->__('3 star') ?></span>
|
67 |
+
</div>
|
68 |
+
</th>
|
69 |
+
<th>
|
70 |
+
<div class="rating-box">
|
71 |
+
<span class="rating-number">4</span>
|
72 |
+
<span class="rating nobr" style="width:80%;"><?php echo $this->__('4 star') ?></span>
|
73 |
+
</div>
|
74 |
+
</th>
|
75 |
+
<th>
|
76 |
+
<div class="rating-box">
|
77 |
+
<span class="rating-number">5</span>
|
78 |
+
<span class="rating nobr" style="width:100%;"><?php echo $this->__('5 star') ?></span>
|
79 |
+
</div>
|
80 |
+
</th>
|
81 |
+
</tr>
|
82 |
+
</thead>
|
83 |
+
<tbody>
|
84 |
+
<?php foreach ($this->getRatings() as $_rating): ?>
|
85 |
+
<tr>
|
86 |
+
<th><?php echo $this->escapeHtml($_rating->getRatingCode()) ?></th>
|
87 |
+
<?php foreach ($_rating->getOptions() as $_option): ?>
|
88 |
+
<td class="value"><label for="<?php echo $this->escapeHtml($_rating->getRatingCode()) ?>_<?php echo $_option->getValue() ?>"><input type="radio" name="ratings[<?php echo $_rating->getId() ?>]" id="<?php echo $this->escapeHtml($_rating->getRatingCode()) ?>_<?php echo $_option->getValue() ?>" value="<?php echo $_option->getId() ?>" class="radio" /></label></td>
|
89 |
+
<?php endforeach; ?>
|
90 |
+
</tr>
|
91 |
+
<?php endforeach; ?>
|
92 |
+
</tbody>
|
93 |
+
</table>
|
94 |
+
<input type="hidden" name="validate_rating" class="validate-rating" value="" />
|
95 |
+
<script type="text/javascript">decorateTable('product-review-table')</script>
|
96 |
+
<?php endif; ?>
|
97 |
+
|
98 |
+
<ul class="form-list">
|
99 |
+
<li>
|
100 |
+
<label for="review_field" class="required"><em>*</em><?php echo $this->__('Let us know your thoughts') ?></label>
|
101 |
+
<div class="input-box">
|
102 |
+
<textarea name="detail" id="review_field" cols="5" rows="3" class="required-entry"><?php echo $this->escapeHtml($data->getDetail()) ?></textarea>
|
103 |
+
</div>
|
104 |
+
</li>
|
105 |
+
|
106 |
+
<li class="inline-label">
|
107 |
+
<label for="summary_field" class="required"><em>*</em><?php echo $this->__('Summary of Your Review') ?></label>
|
108 |
+
<div class="input-box">
|
109 |
+
<input type="text" name="title" id="summary_field" class="input-text required-entry" value="<?php echo $this->escapeHtml($data->getTitle()) ?>" />
|
110 |
+
</div>
|
111 |
+
</li>
|
112 |
+
|
113 |
+
<li class="inline-label">
|
114 |
+
<label for="nickname_field" class="required"><em>*</em><?php echo $this->__("What's your nickname?") ?></label>
|
115 |
+
<div class="input-box">
|
116 |
+
<input type="text" name="nickname" id="nickname_field" class="input-text required-entry" value="<?php echo $this->escapeHtml($data->getNickname()) ?>" />
|
117 |
+
</div>
|
118 |
+
</li>
|
119 |
+
|
120 |
+
</ul>
|
121 |
+
</div>
|
122 |
+
<div class="buttons-set">
|
123 |
+
<button type="submit" title="<?php echo $this->__('Submit Review') ?>" class="button"><span><span><?php echo $this->__('Submit Review') ?></span></span></button>
|
124 |
+
</div>
|
125 |
+
</form>
|
126 |
+
<script type="text/javascript">
|
127 |
+
//<![CDATA[
|
128 |
+
var dataForm = new VarienForm('review-form');
|
129 |
+
Validation.addAllThese(
|
130 |
+
[
|
131 |
+
['validate-rating', '<?php echo $this->__('Please select one of each of the ratings above') ?>', function(v) {
|
132 |
+
var trs = $('product-review-table').select('tr');
|
133 |
+
var inputs;
|
134 |
+
var error = 1;
|
135 |
+
|
136 |
+
for( var j=0; j < trs.length; j++ ) {
|
137 |
+
var tr = trs[j];
|
138 |
+
if( j > 0 ) {
|
139 |
+
inputs = tr.select('input');
|
140 |
+
|
141 |
+
for( i in inputs ) {
|
142 |
+
if( inputs[i].checked == true ) {
|
143 |
+
error = 0;
|
144 |
+
}
|
145 |
+
}
|
146 |
+
|
147 |
+
if( error == 1 ) {
|
148 |
+
return false;
|
149 |
+
} else {
|
150 |
+
error = 1;
|
151 |
+
}
|
152 |
+
}
|
153 |
+
}
|
154 |
+
return true;
|
155 |
+
}]
|
156 |
+
]
|
157 |
+
);
|
158 |
+
//]]>
|
159 |
+
</script>
|
160 |
+
<?php else: ?>
|
161 |
+
<p class="review-nologged" id="review-form">
|
162 |
+
<?php echo $this->__('Only registered users can write reviews. Please, <a href="%s">log in</a> or <a href="%s">register</a>', $this->getLoginLink(), Mage::helper('customer')->getRegisterUrl()) ?>
|
163 |
+
</p>
|
164 |
+
<?php endif ?>
|
165 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/review/helper/summary.phtml
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if ($this->getReviewsCount()): ?>
|
28 |
+
<div class="ratings">
|
29 |
+
<?php if ($this->getRatingSummary()):?>
|
30 |
+
<div class="rating-box">
|
31 |
+
<div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
|
32 |
+
</div>
|
33 |
+
<?php endif;?>
|
34 |
+
<p class="rating-links">
|
35 |
+
<a href="<?php echo $this->getReviewsUrl() ?>"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a>
|
36 |
+
<span class="separator">|</span>
|
37 |
+
<a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Add Your Review') ?></a>
|
38 |
+
</p>
|
39 |
+
</div>
|
40 |
+
<?php elseif ($this->getDisplayIfEmpty()): ?>
|
41 |
+
<p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
|
42 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/review/helper/summary_short.phtml
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if ($this->getReviewsCount()): ?>
|
28 |
+
<div class="ratings">
|
29 |
+
<?php if ($this->getRatingSummary()):?>
|
30 |
+
<div class="rating-box">
|
31 |
+
<div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
|
32 |
+
</div>
|
33 |
+
<?php endif;?>
|
34 |
+
<span class="amount"><a href="#" onclick="var t = opener ? opener.window : window; t.location.href='<?php echo $this->getReviewsUrl() ?>'; return false;"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a></span>
|
35 |
+
</div>
|
36 |
+
<?php elseif ($this->getDisplayIfEmpty()): ?>
|
37 |
+
<p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
|
38 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/review/product/view/count.phtml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if (!empty($count)):?>
|
28 |
+
<a href="#customer-reviews" class="nobr"><?php echo $this->__('%s Review(s)', $count) ?></a>
|
29 |
+
<?php endif;?>
|
app/design/frontend/modulesgarden/minimo/template/review/product/view/list.phtml
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php $_items = $this->getReviewsCollection()->getItems();?>
|
29 |
+
<div class="box-collateral box-reviews" id="customer-reviews">
|
30 |
+
<?php if (count($_items)):?>
|
31 |
+
<h2><?php echo $this->__('Customer Reviews') ?></h2>
|
32 |
+
<dl>
|
33 |
+
<?php foreach ($_items as $_review):?>
|
34 |
+
<dt>
|
35 |
+
<a href="<?php echo $this->getReviewUrl($_review->getId()) ?>"><?php echo $this->escapeHtml($_review->getTitle()) ?></a> <?php echo $this->__('Review by <span>%s</span>', $this->escapeHtml($_review->getNickname())) ?>
|
36 |
+
</dt>
|
37 |
+
<dd>
|
38 |
+
<?php $_votes = $_review->getRatingVotes(); ?>
|
39 |
+
<?php if (count($_votes)): ?>
|
40 |
+
<table class="ratings-table">
|
41 |
+
<col width="1" />
|
42 |
+
<col />
|
43 |
+
<tbody>
|
44 |
+
<?php foreach ($_votes as $_vote): ?>
|
45 |
+
<tr>
|
46 |
+
<th><?php echo $this->escapeHtml($_vote->getRatingCode()) ?></th>
|
47 |
+
<td>
|
48 |
+
<div class="rating-box">
|
49 |
+
<div class="rating" style="width:<?php echo $_vote->getPercent() ?>%;"></div>
|
50 |
+
</div>
|
51 |
+
</td>
|
52 |
+
</tr>
|
53 |
+
<?php endforeach; ?>
|
54 |
+
</tbody>
|
55 |
+
</table>
|
56 |
+
<?php endif; ?>
|
57 |
+
<?php echo nl2br($this->escapeHtml($_review->getDetail())) ?>
|
58 |
+
<small class="date"><?php echo $this->__('(Posted on %s)', $this->formatDate($_review->getCreatedAt()), 'long') ?></small>
|
59 |
+
</dd>
|
60 |
+
<?php endforeach; ?>
|
61 |
+
<?php echo $this->getChildHtml('toolbar') ?>
|
62 |
+
</dl>
|
63 |
+
<?php endif;?>
|
64 |
+
<?php echo $this->getChildHtml('review_form') ?>
|
65 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/review/product/view/other.phtml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<?php $_product = Mage::registry('product'); ?>
|
29 |
+
<div class="buttons-set">
|
30 |
+
<p class="back-link"><a href="<?php echo $_product->getProductUrl() ?>"><small>« </small><?php echo $this->__('Back to Main Product Info') ?></a></p>
|
31 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/review/view.phtml
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php if($this->getProductData()->getId()): ?>
|
28 |
+
<div class="product-review">
|
29 |
+
<div class="page-title">
|
30 |
+
<h1><?php echo $this->__('Review Details') ?></h1>
|
31 |
+
</div>
|
32 |
+
<div class="product-img-box">
|
33 |
+
<a href="<?php echo $this->getProductData()->getProductUrl() ?>" title="<?php echo $this->escapeHtml($this->getProductData()->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($this->getProductData(), 'small_image')->resize(125, 125); ?>" height="125" width="125" alt="<?php echo $this->escapeHtml($this->getProductData()->getName()) ?>" /></a>
|
34 |
+
<?php if( $this->getRating() && $this->getRating()->getSize()): ?>
|
35 |
+
<p class="label"><?php echo $this->__('Average Customer Rating') ?>:</p>
|
36 |
+
<?php echo $this->getReviewsSummaryHtml($this->getProductData()) ?>
|
37 |
+
<?php endif; ?>
|
38 |
+
</div>
|
39 |
+
<div class="product-details">
|
40 |
+
<h2 class="product-name"><?php echo $this->escapeHtml($this->getProductData()->getName()) ?></h2>
|
41 |
+
<?php if( $this->getRating() && $this->getRating()->getSize()): ?>
|
42 |
+
<h3><?php echo $this->__('Product Rating:') ?></h3>
|
43 |
+
<table class="ratings-table">
|
44 |
+
<?php foreach ($this->getRating() as $_rating): ?>
|
45 |
+
<?php if($_rating->getPercent()): ?>
|
46 |
+
<tr>
|
47 |
+
<th><?php echo $this->__($this->escapeHtml($_rating->getRatingCode())) ?></th>
|
48 |
+
<td>
|
49 |
+
<div class="rating-box">
|
50 |
+
<div class="rating" style="width:<?php echo ceil($_rating->getPercent()) ?>%;"></div>
|
51 |
+
</div>
|
52 |
+
</td>
|
53 |
+
</tr>
|
54 |
+
<?php endif; ?>
|
55 |
+
<?php endforeach; ?>
|
56 |
+
</table>
|
57 |
+
</dl>
|
58 |
+
<?php endif; ?>
|
59 |
+
<dl>
|
60 |
+
<dt>
|
61 |
+
<?php echo $this->__('Product Review (submitted on %s):', $this->dateFormat($this->getReviewData()->getCreatedAt())) ?>
|
62 |
+
</dt>
|
63 |
+
<dd>
|
64 |
+
<?php echo nl2br($this->escapeHtml($this->getReviewData()->getDetail())) ?>
|
65 |
+
</dd>
|
66 |
+
</dl>
|
67 |
+
</div>
|
68 |
+
<div class="buttons-set">
|
69 |
+
<p class="back-link"><a href="<?php echo $this->getBackUrl() ?>"><small>« </small><?php echo $this->__('Back to Product Reviews') ?></a></p>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
<?php endif; ?>
|
app/design/frontend/modulesgarden/minimo/template/sales/order/history.phtml
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php echo $this->getMessagesBlock()->toHtml() ?>
|
28 |
+
<?php $_orders = $this->getOrders(); ?>
|
29 |
+
<div class="page-title">
|
30 |
+
<h1><?php echo $this->__('My Orders') ?></h1>
|
31 |
+
</div>
|
32 |
+
<?php if($_orders->getSize()): ?>
|
33 |
+
<table class="data-table" id="my-orders-table">
|
34 |
+
<col width="1" />
|
35 |
+
<col width="1" />
|
36 |
+
<col />
|
37 |
+
<col width="1" />
|
38 |
+
<col width="1" />
|
39 |
+
<col width="1" />
|
40 |
+
<thead>
|
41 |
+
<tr>
|
42 |
+
<th><?php echo $this->__('Order #') ?></th>
|
43 |
+
<th><?php echo $this->__('Date') ?></th>
|
44 |
+
<th><?php echo $this->__('Ship To') ?></th>
|
45 |
+
<th><span class="nobr"><?php echo $this->__('Order Total') ?></span></th>
|
46 |
+
<th><span class="nobr"><?php echo $this->__('Order Status') ?></span></th>
|
47 |
+
<th> </th>
|
48 |
+
</tr>
|
49 |
+
</thead>
|
50 |
+
<tbody>
|
51 |
+
<?php $_odd = ''; ?>
|
52 |
+
<?php foreach ($_orders as $_order): ?>
|
53 |
+
<tr>
|
54 |
+
<td><?php echo $_order->getRealOrderId() ?></td>
|
55 |
+
<td><span class="nobr"><?php echo $this->formatDate($_order->getCreatedAtStoreDate()) ?></span></td>
|
56 |
+
<td><?php echo $_order->getShippingAddress() ? $this->escapeHtml($_order->getShippingAddress()->getName()) : ' ' ?></td>
|
57 |
+
<td><?php echo $_order->formatPrice($_order->getGrandTotal()) ?></td>
|
58 |
+
<td><em><?php echo $_order->getStatusLabel() ?></em></td>
|
59 |
+
<td class="a-center">
|
60 |
+
<span class="nobr"><a href="<?php echo $this->getViewUrl($_order) ?>"><?php echo $this->__('View Order') ?></a>
|
61 |
+
<?php /*<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a> */ ?>
|
62 |
+
<?php if ($this->helper('sales/reorder')->canReorder($_order)) : ?>
|
63 |
+
<span class="separator">|</span> <a href="<?php echo $this->getReorderUrl($_order) ?>" class="link-reorder"><?php echo $this->__('Reorder') ?></a>
|
64 |
+
<?php endif ?>
|
65 |
+
</span>
|
66 |
+
</td>
|
67 |
+
</tr>
|
68 |
+
<?php endforeach; ?>
|
69 |
+
</tbody>
|
70 |
+
</table>
|
71 |
+
<script type="text/javascript">decorateTable('my-orders-table');</script>
|
72 |
+
<br class="clear"/>
|
73 |
+
<?php echo $this->getPagerHtml(); ?>
|
74 |
+
<?php else: ?>
|
75 |
+
<p><?php echo $this->__('You have placed no orders.'); ?></p>
|
76 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/sales/reorder/sidebar.phtml
ADDED
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<?php
|
28 |
+
/**
|
29 |
+
* Last order sidebar
|
30 |
+
*
|
31 |
+
* @see Mage_Sale_Block_Reorder_Sidebar
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<?php $_items = $this->getItems()?>
|
35 |
+
<?php if($_items): ?>
|
36 |
+
<div class="block block-reorder">
|
37 |
+
<div class="block-title">
|
38 |
+
<strong><span><?php echo $this->__('My Orders') ?></span></strong>
|
39 |
+
</div>
|
40 |
+
<form method="post" action="<?php echo $this->getFormActionUrl() ?>" id="reorder-validate-detail">
|
41 |
+
<?php echo $this->getBlockHtml('formkey'); ?>
|
42 |
+
<div class="block-content">
|
43 |
+
<p class="block-subtitle"><?php echo $this->__('Last Ordered Items') ?></p>
|
44 |
+
<ol id="cart-sidebar-reorder">
|
45 |
+
<?php $_showAddButtonFlag = false ?>
|
46 |
+
<?php foreach ($_items as $_item): ?>
|
47 |
+
<li class="item">
|
48 |
+
<?php if ($this->isItemAvailableForReorder($_item)): ?>
|
49 |
+
<?php $_showAddButtonFlag = true ?>
|
50 |
+
<input type="checkbox" name="order_items[]" id="reorder-item-<?php echo $_item->getId() ?>" value="<?php echo $_item->getId() ?>" title="<?php echo $this->__('Add to Cart') ?>" class="checkbox validate-one-required-by-name" />
|
51 |
+
<script type="text/javascript">
|
52 |
+
//<![CDATA[
|
53 |
+
$('reorder-item-<?php echo $_item->getId() ?>').advaiceContainer = 'cart-sidebar-reorder-advice-container';
|
54 |
+
//]]>
|
55 |
+
</script>
|
56 |
+
<?php endif; ?>
|
57 |
+
<p class="product-name"><a href="<?php echo $_item->getProduct()->getProductUrl() ?>"><?php echo $this->escapeHtml($_item->getName()) ?></a></p>
|
58 |
+
</li>
|
59 |
+
<?php endforeach; ?>
|
60 |
+
</ol>
|
61 |
+
<script type="text/javascript">decorateList('cart-sidebar-reorder')</script>
|
62 |
+
<div id="cart-sidebar-reorder-advice-container"></div>
|
63 |
+
<a class="action_link" href="<?php echo $this->getUrl('customer/account') ?>"><?php echo $this->__('View All'); ?></a>
|
64 |
+
<div class="actions">
|
65 |
+
<?php if ($_showAddButtonFlag): ?>
|
66 |
+
<button type="submit" title="<?php echo $this->__('Add to Cart') ?>" class="button_green"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
|
67 |
+
<?php endif; ?>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
</form>
|
71 |
+
</div>
|
72 |
+
<?php echo $this->getPagerHtml(); ?>
|
73 |
+
<script type="text/javascript">
|
74 |
+
//<![CDATA[
|
75 |
+
var reorderFormDetail = new VarienForm('reorder-validate-detail');
|
76 |
+
//]]>
|
77 |
+
</script>
|
78 |
+
<?php endif ?>
|
app/design/frontend/modulesgarden/minimo/template/tag/customer/view.phtml
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="page-title">
|
28 |
+
<h1><?php echo $this->__('My Tags') ?></h1>
|
29 |
+
</div>
|
30 |
+
<?php echo $this->getMessagesBlock()->toHtml() ?>
|
31 |
+
<p class="my-tag-edit">
|
32 |
+
<a href="#" title="<?php echo $this->__('Delete') ?>" onclick="if(confirm('<?php echo $this->__('Are you sure you want to delete this tag?') ?>')) window.location='<?php echo $this->getTagInfo()->getRemoveTagUrl(); ?>'; return false;" class="button btn-remove"><span><?php echo $this->__('Delete') ?></span></a>
|
33 |
+
<?php echo $this->__('<strong>Tag Name:</strong> %s', $this->escapeHtml($this->getTagInfo()->getName())) ?>
|
34 |
+
</p>
|
35 |
+
<div class="clearer"></div>
|
36 |
+
<table class="data-table" id="my-tags-table">
|
37 |
+
<?php if( sizeof($this->getMyProducts()) > 0 ): ?>
|
38 |
+
<col width="1" />
|
39 |
+
<col />
|
40 |
+
<col width="1" />
|
41 |
+
<tbody>
|
42 |
+
<?php $iterator = 0 ?>
|
43 |
+
<?php foreach($this->getMyProducts() as $_product): ?>
|
44 |
+
<tr<?php if($iterator % 2 == 0): ?> class="odd"<?php $iterator++;endif; ?>>
|
45 |
+
<td><a href="<?php echo $_product->getProductUrl(); ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(100, 100); ?>" width="100" height="100" alt="<?php echo $this->escapeHtml($_product->getName()) ?>" /></a></td>
|
46 |
+
<td>
|
47 |
+
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>"><?php echo $this->escapeHtml($_product->getName()) ?></a></h2>
|
48 |
+
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
|
49 |
+
<?php echo $this->getPriceHtml($_product) ?>
|
50 |
+
<?php echo $this->escapeHtml($_product->getDescription()) ?>
|
51 |
+
</td>
|
52 |
+
<td>
|
53 |
+
<?php if($_product->isSaleable()): ?>
|
54 |
+
<?php $params[Mage_Core_Model_Url::FORM_KEY] = Mage::getSingleton('core/session')->getFormKey() ?>
|
55 |
+
<?php $params['product'] = $_product->getId(); ?>
|
56 |
+
<button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getUrl('checkout/cart/add', $params) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
|
57 |
+
<?php endif; ?>
|
58 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
59 |
+
<ul class="add-to-links">
|
60 |
+
<li>
|
61 |
+
<a href="<?php echo $this->getUrl('wishlist/index/add',array('product'=>$_product->getId())) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a>
|
62 |
+
</li>
|
63 |
+
</ul>
|
64 |
+
<?php endif; ?>
|
65 |
+
</td>
|
66 |
+
</tr>
|
67 |
+
<?php endforeach; ?>
|
68 |
+
</tbody>
|
69 |
+
<?php else: ?>
|
70 |
+
<tbody>
|
71 |
+
<tr>
|
72 |
+
<td>
|
73 |
+
<?php echo $this->__("Unable to find any products tagged with '%s' in the current store", $this->escapeHtml($this->getTagInfo()->getName()) ) ?>
|
74 |
+
</td>
|
75 |
+
</tr>
|
76 |
+
</tbody>
|
77 |
+
<?php endif; ?>
|
78 |
+
</table>
|
79 |
+
<script type="text/javascript">decorateTable('my-tags-table')</script>
|
80 |
+
<br class="clear"/>
|
81 |
+
<?php echo $this->getToolbarHtml() ?>
|
82 |
+
<div class="buttons-set">
|
83 |
+
<p class="back-link"><a href="<?php echo $this->getUrl('*/*/')?>"><small>« </small><?php echo $this->__('Back to Tags List')?></a></p>
|
84 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/tag/list.phtml
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="box-collateral box-tags" data-tab="tags" >
|
28 |
+
<h2><?php echo $this->__('Product Tags') ?></h2>
|
29 |
+
<?php echo $this->getChildHtml('list_before')?>
|
30 |
+
<?php if( $this->getCount() ): ?>
|
31 |
+
<h3><?php echo $this->__('Other people marked this product with these tags:') ?></h3>
|
32 |
+
<ul id="<?php echo $this->getUniqueHtmlId('product-tags_'); ?>" class="product-tags">
|
33 |
+
<?php echo $this->renderTags('<li><a href="%1$s">%2$s</a> (%3$s)</li>') ?>
|
34 |
+
</ul>
|
35 |
+
<script type="text/javascript">
|
36 |
+
decorateGeneric($("<?php echo $this->getUniqueHtmlId('product-tags_'); ?>").select('li'), ['first', 'last']);
|
37 |
+
</script>
|
38 |
+
<?php endif; ?>
|
39 |
+
<form id="addTagForm" action="<?php echo $this->getFormAction(); ?>" method="get">
|
40 |
+
<div class="form-add">
|
41 |
+
<label for="productTagName"><?php echo $this->__('Add Your Tags:') ?></label>
|
42 |
+
<div class="input-box">
|
43 |
+
<input type="text" class="input-text required-entry" name="productTagName" id="productTagName" />
|
44 |
+
</div>
|
45 |
+
<button type="button" title="<?php echo $this->__('Add Tags') ?>" class="button_green" onclick="submitTagForm()">
|
46 |
+
<span>
|
47 |
+
<span><?php echo $this->__('Add Tags') ?></span>
|
48 |
+
</span>
|
49 |
+
</button>
|
50 |
+
</div>
|
51 |
+
</form>
|
52 |
+
<p class="note"><?php echo $this->__("Use spaces to separate tags. Use single quotes (') for phrases.") ?></p>
|
53 |
+
<script type="text/javascript">
|
54 |
+
//<![CDATA[
|
55 |
+
var addTagFormJs = new VarienForm('addTagForm');
|
56 |
+
function submitTagForm(){
|
57 |
+
if(addTagFormJs.validator.validate()) {
|
58 |
+
addTagFormJs.form.submit();
|
59 |
+
}
|
60 |
+
}
|
61 |
+
//]]>
|
62 |
+
</script>
|
63 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/tag/popular.phtml
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
<div class="block block-tags">
|
28 |
+
<div class="block-title">
|
29 |
+
<strong><span><?php echo $this->__('Popular Tags'); ?></span></strong>
|
30 |
+
</div>
|
31 |
+
<div class="block-content">
|
32 |
+
<ul class="tags-list">
|
33 |
+
<?php foreach ($this->getTags() as $_tag): ?>
|
34 |
+
<li><a href="<?php echo $_tag->getTaggedProductsUrl() ?>" style="font-size:<?php echo $_tag->getRatio()*70+75 ?>%;"><?php echo $this->escapeHtml($_tag->getName()) ?></a></li>
|
35 |
+
<?php endforeach; ?>
|
36 |
+
</ul>
|
37 |
+
<div class="actions">
|
38 |
+
<a class="button_green" href="<?php echo $this->getUrl('tag/list') ?>"><?php echo $this->__('View All Tags') ?></a>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/wishlist/item/column/cart.phtml
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magento.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/* @var $this Mage_Wishlist_Block_Customer_Wishlist_Item_Column_Cart */
|
28 |
+
/* @var Mage_Wishlist_Model_Item $item */
|
29 |
+
$item = $this->getItem();
|
30 |
+
$product = $item->getProduct();
|
31 |
+
$options = $this->getChild('customer.wishlist.item.options')
|
32 |
+
->setItem($item)
|
33 |
+
->getConfiguredOptions();
|
34 |
+
?>
|
35 |
+
<div class="cart-cell">
|
36 |
+
<?php echo $this->getPriceHtml($product, empty($options));?>
|
37 |
+
<div class="add-to-cart-alt">
|
38 |
+
<?php if ($item->canHaveQty() && $item->getProduct()->isVisibleInSiteVisibility()): ?>
|
39 |
+
<span class="qty-container">
|
40 |
+
<input type="text" class="input-text qty validate-not-negative-number" name="qty[<?php echo $item->getId() ?>]" value="<?php echo $this->getAddToCartQty($item) * 1 ?>" />
|
41 |
+
<i class="fa fa-angle-up"></i>
|
42 |
+
<i class="fa fa-angle-down"></i>
|
43 |
+
</span>
|
44 |
+
<?php endif; ?>
|
45 |
+
<?php if ($product->isSaleable()): ?>
|
46 |
+
<button type="button" title="<?php echo $this->__('Add to Cart') ?>" onclick="addWItemToCart(<?php echo $item->getId()?>);" class="button btn-cart"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
|
47 |
+
<?php else: ?>
|
48 |
+
<?php if ($product->getIsSalable()): ?>
|
49 |
+
<p class="availability in-stock"><span><?php echo $this->__('In stock') ?></span></p>
|
50 |
+
<?php else: ?>
|
51 |
+
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
52 |
+
<?php endif; ?>
|
53 |
+
<?php endif; ?>
|
54 |
+
</div>
|
55 |
+
<?php foreach($this->getSortedChildren() as $childName):?>
|
56 |
+
<?php echo $this->getChildHtml($childName, false);?>
|
57 |
+
<?php endforeach;?>
|
58 |
+
<?php if ($product->isVisibleInSiteVisibility()): ?>
|
59 |
+
<p><a class="link-edit" href="<?php echo $this->getItemConfigureUrl($item) ?>"><?php echo $this->__('Edit') ?></a></p>
|
60 |
+
<?php endif ?>
|
61 |
+
</div>
|
app/design/frontend/modulesgarden/minimo/template/wishlist/view.phtml
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package base_default
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
/* @var $this Mage_Wishlist_Block_Customer_Wishlist */
|
27 |
+
?>
|
28 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
29 |
+
<div class="my-wishlist">
|
30 |
+
<div class="page-title title-buttons">
|
31 |
+
<?php if ($this->helper('wishlist')->isRssAllow() && $this->hasWishlistItems()): ?>
|
32 |
+
<a href="<?php echo $this->helper('wishlist')->getRssUrl($this->getWishlistInstance()->getId()); ?>" class="link-rss"><?php echo $this->__('RSS Feed') ?></a>
|
33 |
+
<?php endif; ?>
|
34 |
+
<h1><?php echo $this->getTitle(); ?></h1>
|
35 |
+
</div>
|
36 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
37 |
+
|
38 |
+
<form id="wishlist-view-form" action="<?php echo $this->getUrl('*/*/update', array('wishlist_id' => $this->getWishlistInstance()->getId())) ?>" method="post">
|
39 |
+
<?php echo $this->getChildHtml('top'); ?>
|
40 |
+
<fieldset>
|
41 |
+
<?php if ($this->hasWishlistItems()): ?>
|
42 |
+
<?php echo $this->getBlockHtml('formkey');?>
|
43 |
+
<?php $this->getChild('items')->setItems($this->getWishlistItems()); ?>
|
44 |
+
<?php echo $this->getChildHtml('items');?>
|
45 |
+
<script type="text/javascript">decorateTable('wishlist-table')</script>
|
46 |
+
<?php else: ?>
|
47 |
+
<p class="wishlist-empty"><?php echo $this->__('You have no items in your wishlist.') ?></p>
|
48 |
+
<?php endif ?>
|
49 |
+
<div class="buttons-set buttons-set2">
|
50 |
+
<?php echo $this->getChild('control_buttons')->toHtml();?>
|
51 |
+
</div>
|
52 |
+
</fieldset>
|
53 |
+
</form>
|
54 |
+
|
55 |
+
<form id="wishlist-allcart-form" action="<?php echo $this->getUrl('*/*/allcart') ?>" method="post">
|
56 |
+
<?php echo $this->getBlockHtml('formkey') ?>
|
57 |
+
<div class="no-display">
|
58 |
+
<input type="hidden" name="wishlist_id" id="wishlist_id" value="<?php echo $this->getWishlistInstance()->getId() ?>" />
|
59 |
+
<input type="hidden" name="qty" id="qty" value="" />
|
60 |
+
</div>
|
61 |
+
</form>
|
62 |
+
|
63 |
+
<script type="text/javascript">
|
64 |
+
//<![CDATA[
|
65 |
+
var wishlistForm = new Validation($('wishlist-view-form'));
|
66 |
+
var wishlistAllCartForm = new Validation($('wishlist-allcart-form'));
|
67 |
+
|
68 |
+
function calculateQty() {
|
69 |
+
var itemQtys = new Array();
|
70 |
+
$$('#wishlist-view-form .qty').each(
|
71 |
+
function (input, index) {
|
72 |
+
var idxStr = input.name;
|
73 |
+
var idx = idxStr.replace( /[^\d.]/g, '' );
|
74 |
+
itemQtys[idx] = input.value;
|
75 |
+
}
|
76 |
+
);
|
77 |
+
|
78 |
+
$$('#qty')[0].value = JSON.stringify(itemQtys);
|
79 |
+
}
|
80 |
+
|
81 |
+
function addAllWItemsToCart() {
|
82 |
+
calculateQty();
|
83 |
+
wishlistAllCartForm.form.submit();
|
84 |
+
}
|
85 |
+
//]]>
|
86 |
+
</script>
|
87 |
+
</div>
|
88 |
+
<?php echo $this->getChildHtml('bottom'); ?>
|
89 |
+
<div class="buttons-set">
|
90 |
+
<p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>« </small><?php echo $this->__('Back') ?></a></p>
|
91 |
+
</div>
|
92 |
+
<?php endif ?>
|
app/etc/modules/Modulesgarden_ThemeMinimo.xml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Modulesgarden_ThemeMinimo>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>community</codePool>
|
7 |
+
</Modulesgarden_ThemeMinimo>
|
8 |
+
</modules>
|
9 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>Modulesgarden_Minimo</name>
|
4 |
+
<version>1.0.0</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license>OSL</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>SUmmary</summary>
|
10 |
+
<description>Description</description>
|
11 |
+
<notes>Initial Release</notes>
|
12 |
+
<authors><author><name>ModulesGarden</name><user>ModulesGarden</user><email>peter@inbsgroup.com</email></author></authors>
|
13 |
+
<date>2015-07-14</date>
|
14 |
+
<time>09:06:23</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Modulesgarden"><dir name="ThemeMinimo"><dir name="Block"><dir name="Html"><file name="Breadcrumbs.php" hash="89cea641fab8210bba57a3a272c1eecb"/><file name="Topmenu.php" hash="c38528d02d04c69126a0d785b5d3206f"/></dir><dir name="Product"><file name="Bestseller.php" hash="1e427386b45a32015d4e92156d81f608"/><file name="Featured.php" hash="3a2364c354cb6896c19ae1293a2a6b4c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="b8bbe03f160f78b3aa5fc2b5ec722793"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Select.php" hash="569265671df060e00c6caf6a22efae48"/></dir></dir></dir></dir><dir name="data"><dir name="mgthememinimo_setup"><file name="data-install-1.0.0.php" hash="a01b487f81c7624dfd8902de610d27b5"/></dir></dir><dir name="etc"><file name="config.xml" hash="594199b034544d18687423886abdacd2"/><file name="system.xml" hash="e24aee8c50e2f7cfa42043ddba890c2c"/></dir><dir name="sql"><dir name="mgthememinimo_setup"><file name="install-1.0.0.php" hash="05354a941184556310ba14719a178ace"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="modulesgarden"><dir name="minimo"><dir name="layout"><file name="catalog.xml" hash="f3c60316b0bd5cfd166bd347b9748ed3"/><file name="catalogsearch.xml" hash="9b97d4fcb2c2d4265e5efb5e3f877be0"/><file name="checkout.xml" hash="eb4a60a14a42b1cf1f3b0a1b81981d98"/><file name="cms.xml" hash="2563b8cda9e485a41aece377d5bfd878"/><file name="customer.xml" hash="d2b9b2e3f2dafd5557bbd347a8e754f1"/><file name="local.xml" hash="3035fbb65bab142056fc7ff7a172df6c"/><file name="newsletter.xml" hash="d651d53837b9ad6cb70102b3e603179b"/><file name="page.xml" hash="2195e1a35e423c70a99c5390c4932627"/><file name="paypal.xml" hash="9c414774a1ad55feed3e6656aa3b77f2"/><file name="poll.xml" hash="2b2dccf513b83cea4ac9e3d9e9a07c4f"/><file name="reports.xml" hash="006dd44fd96bbdc872c4983bab8a2879"/><file name="review.xml" hash="3f86fc3f30c16721ae7888c810bafcd4"/><file name="tag.xml" hash="85dc3d54f65ddcff7ccecf9f8c3df3e4"/><file name="wishlist.xml" hash="85f251609bb45fa1721c5d09b1720436"/></dir><dir name="template"><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="bundle"><dir name="option"><file name="radio.phtml" hash="e26bfd9d877e633de0268fe3022ae64b"/><file name="select.phtml" hash="b80a914c8b813a872330917413569ea8"/></dir></dir></dir></dir></dir></dir></dir><dir name="callouts"><file name="left_col.phtml" hash="0834af473826bb3b948e6d443968d59f"/><file name="right_col.phtml" hash="0834af473826bb3b948e6d443968d59f"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="da8088fd881c776e68f2096e3ccdb515"/><file name="view.phtml" hash="44547b4cda40b3f0e5e8a6e19903043f"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="db7ebf6737ad571c9fdaa0e77029f554"/><file name="link_inline.phtml" hash="a0bf94c67c9b299639f0919945aab2b9"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="b4f2b5f6d761e3dd80ac8766730d7968"/><file name="state.phtml" hash="a027df04a1906a48cdbed3bc2d59c5cf"/><file name="view.phtml" hash="34cadd2da077f4d2180b25d76179befe"/></dir><dir name="navigation"><file name="left.phtml" hash="9c7d8595136b4bcec87eee043582c08c"/><file name="top.phtml" hash="c91ddb53b136b440b3814e926f8d2b2f"/></dir><dir name="product"><file name="bestseller.phtml" hash="5a9e5969dc077d110929576e7fa90388"/><dir name="compare"><file name="list.phtml" hash="b82e9823d91a3bc58dc49f0395960ca7"/><file name="sidebar.phtml" hash="eb95eb9b8ef892e8f097cd3b406da52e"/></dir><file name="featured.phtml" hash="56330c8959cadf294da23391afbb0bd2"/><file name="gallery.phtml" hash="ef28634ad6fa4f1bab2fcfeb22efbece"/><dir name="list"><file name="related.phtml" hash="09ede9b24eea2a416048610d140fff9e"/><file name="toolbar.phtml" hash="0973fc7623d0efc15ba8d9b2101ed54a"/><file name="toolbar_only.phtml" hash="d74d1746cbac33b65d6475d2c241aa80"/><file name="upsell.phtml" hash="08d1cbb67d2be8f8d79fa3b88e106a54"/></dir><file name="list.phtml" hash="6da4a47e5a2b563b7159dea24bd0f01a"/><file name="new.phtml" hash="5ed19380f53ed6bfe314a2fafa5ef994"/><file name="price.phtml" hash="e22f1cc974932565ac45cf4107a2dcd2"/><dir name="view"><file name="additional.phtml" hash="75d35ae44509ed4870d0474d244e1b08"/><file name="addto.phtml" hash="4b90cf9c5d9d0d5d187bf0b27c668d4f"/><file name="addtocart.phtml" hash="59d99e059104cd5ea593f4fabf06dcad"/><file name="attributes.phtml" hash="2c0f5b54ad2e2a23434d407545f352ca"/><file name="description.phtml" hash="d6947fdbdf690f6593bfd8dfa51aaf62"/><file name="media.phtml" hash="54c9c77339b80fe969ab2fc56ddd38c5"/><dir name="options"><file name="js.phtml" hash="cbce4dbf550a285377e912a0d84ffac5"/><dir name="type"><file name="date.phtml" hash="10db5e907373a5dd29aaa6c697fe48ed"/><file name="default.phtml" hash="12ca975f28ceb725c86d88c3b02bfdfd"/><file name="file.phtml" hash="bd76fb7fda5ed6f80e64c019e891283e"/><file name="select.phtml" hash="32f52b09af56e1dba477d510cfdef8b8"/><file name="text.phtml" hash="1c29cdba2a0e0b1f15f68c3fbc3b07eb"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="f74e0101b9348de711673a442a523883"/></dir><file name="wrapper.phtml" hash="deccc0442fcd68885e0ebfeaa91018ea"/></dir><file name="options.phtml" hash="014679e6223efcb1fcaede2b66f0ac7e"/><file name="price.phtml" hash="c55bb537b537845cc22fe46eee32b3f2"/><file name="price_clone.phtml" hash="aca0dd622abfcd04e82407d2b4763c65"/><file name="tierprices.phtml" hash="0105721a68cc8e7210fd6240a8c656bf"/><dir name="type"><file name="configurable.phtml" hash="e0dbac1a30611fa918be451ff274687d"/><file name="default.phtml" hash="07591ae059411e254686c34c81007120"/><file name="grouped.phtml" hash="1027e9a319890399fded19c27f3a1fd3"/><dir name="options"><file name="configurable.phtml" hash="d4d7a289ddcb74624111957fd4440370"/></dir><file name="simple.phtml" hash="e0dbac1a30611fa918be451ff274687d"/><file name="virtual.phtml" hash="e0dbac1a30611fa918be451ff274687d"/></dir></dir><file name="view.phtml" hash="54269effa69196c7e01752c606f99284"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="acb9c13c312a0c94e7961ccab5c65d68"/><file name="link_inline.phtml" hash="3dfa87b0129d802a5c9ea560d1f6acbb"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="dcf590457d8452a484982d92b07d4ddb"/><file name="new_images_list.phtml" hash="3857d8040dc4bdade3bf6f6bf61f7133"/><file name="new_names_list.phtml" hash="f6634f4255ab4cffd99460d9909a59c6"/></dir><dir name="content"><file name="new_grid.phtml" hash="fcc88367a6195d901ac6fd01d2061ac5"/><file name="new_list.phtml" hash="a3942e747640c685bc269b1e6eaa8164"/></dir></dir></dir></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="241e7a915d2cc0c3f0c630955ebf96a5"/><file name="result.phtml" hash="1c0913417f5832f97bc8f3050847397a"/><file name="term.phtml" hash="5845fda49f8df1d31ac7082d0e78cbef"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="ab4d09a164198154f1a0e05b4a794a3b"/><file name="crosssell.phtml" hash="b9762f226ae791c773c921b7096ae0f5"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="65010dd0d9b11354806751c99fd92ad1"/></dir><file name="default.phtml" hash="7b54ba29aa0f4ea1e84e85557460d687"/></dir><file name="noItems.phtml" hash="411c34be69c804d60e0bd5bcae714a9c"/><dir name="render"><file name="default.phtml" hash="0026a8dbae44b9d51e1433244a352e01"/><file name="simple.phtml" hash="949998362f7a559d889b68b6680b30df"/></dir><file name="shipping.phtml" hash="4c3e61c34c4ea4a1785cd3ce7e7f809a"/><dir name="sidebar"><file name="default.phtml" hash="cdee4fc166a08cb8bc67fd3add18185c"/></dir><file name="sidebar.phtml" hash="c2a8d3484529073567a94621bf1a4724"/><file name="totals.phtml" hash="1ef7ee9d74757622950be3c09e6fb907"/></dir><file name="cart.phtml" hash="76471860fc086a1b5b30c61031ab8bb2"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="24e5b3ae470161224b7ec93dfa076d20"/></dir><file name="addresses.phtml" hash="c4a8ddb3f20ec901c128fc53493cbb89"/><file name="agreements.phtml" hash="40405d808754920a21384811150c428a"/><dir name="billing"><file name="items.phtml" hash="dd651dc188bdf99f7e66a8c13c6ac5ff"/></dir><file name="billing.phtml" hash="ba2f65a2005ad5a7e672beb05abb0755"/><dir name="item"><file name="default.phtml" hash="7611ccf607bb1bfa7a6da29d15ab4bde"/></dir><file name="link.phtml" hash="485c52635edde2b20cae0195572c4cf1"/><dir name="overview"><file name="item.phtml" hash="b56df45e1197995f8e4bdecf1a03f475"/></dir><file name="overview.phtml" hash="4ce27089ae1a3c1730e64f17a865e84b"/><file name="shipping.phtml" hash="4b14b9aca6a3f15e341cc35dd66ecfbe"/><file name="state.phtml" hash="70b551955e8039952f7ee34bd8965db1"/><file name="success.phtml" hash="ab59b63b15572789ecb1cb7e3b4632b7"/></dir><dir name="onepage"><file name="link.phtml" hash="7a760608709b3008233161d107b73110"/><file name="login.phtml" hash="828a87a6e8fb700c4f99f4f14ca42b6c"/><dir name="payment"><file name="info.phtml" hash="8e6e9b895acebae19f2cc9109fa72df3"/><file name="methods.phtml" hash="d874f75263e3eb9c7abd28bbe3750a38"/></dir><file name="payment.phtml" hash="1c4bdf5bc24764e63f4f2cf89803cc4f"/><dir name="review"><file name="button.phtml" hash="3b56a08133efff951d10e664f9cc6b07"/><file name="info.phtml" hash="2c2b81a4c2f0457f77bcdc1afe105f5f"/></dir><file name="shipping.phtml" hash="e02b09c52673fe622e36a4707ab6e477"/><file name="shipping_method.phtml" hash="85ab1e9ec901ec385ca1c61e54924ecd"/></dir><file name="onepage.phtml" hash="59c27b03fbd8556e5967526a1ec9648d"/><file name="success.phtml" hash="8bdb46b17a5a5a0cbd36f25ae9acf61f"/><dir name="total"><file name="default.phtml" hash="7ee091bdabdc050724203568cb433eb0"/></dir></dir><dir name="cms"><file name="content.phtml" hash="1dd256bfecd8e159da5750999f692ea0"/><dir name="widget"><dir name="static_block"><file name="default.phtml" hash="f03fd36d42a84f2f1aa2a96c7501a375"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="c6c56fdb8516ad717599285ea044d835"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="bd1d2e0b663af08cb893524cb14a5878"/><file name="hello.phtml" hash="aaf6637cf204354d10ced5975ffa8628"/><file name="info.phtml" hash="d66afd402a82ce5952f7cd10967959fb"/><file name="newsletter.phtml" hash="7a88755792de255d8734420b24aed220"/></dir><file name="dashboard.phtml" hash="138c8acecc3c7a72855d5482c0d41a03"/><dir name="link"><file name="back.phtml" hash="269b03c61ac58ecd42b376da3c4951d6"/></dir><file name="navigation.phtml" hash="d75547015ea2d76b722c1da9b5528d51"/></dir><dir name="address"><file name="book.phtml" hash="e3397c3ceeba1630cabc3037452e5d58"/><file name="edit.phtml" hash="18c163f1c83bc45106dc9c40b44772f9"/></dir><file name="address.phtml" hash="c7d1e96e337bd0f6fd42c619f80cbf45"/><file name="balance.phtml" hash="ffa5f9c1eb242c496867672d79be73e0"/><dir name="form"><file name="address.phtml" hash="e216399279d85465677990bc7494e269"/><file name="changepassword.phtml" hash="6ad2dd980476c29a028027dd41d8303a"/><file name="confirmation.phtml" hash="c39f36698a5c4ecc361abcddccb69d25"/><file name="edit.phtml" hash="4824abf69c20fe13f97b51377a9b08ca"/><file name="forgotpassword.phtml" hash="025f136a7da53f4017fac2e6aa9a2c11"/><file name="login.phtml" hash="a787ec12e5c529a0fc6e3b702a2d7391"/><file name="mini.login.phtml" hash="f1df8f8a52dd3d964731029a171afee8"/><file name="newsletter.phtml" hash="4766be7bd5d3a2ec1c94130ef0e34023"/><file name="register.phtml" hash="4daa8e884978121e4ef96b41be891d68"/><file name="resetforgottenpassword.phtml" hash="daf6afabee59356227af4b5664ad8a03"/></dir><file name="logout.phtml" hash="aa38c8d8147fdfacffecdacf6e09a52a"/><file name="orders.phtml" hash="8d3430d4841209de8267892d42457300"/><dir name="widget"><file name="dob.phtml" hash="af46c6cfb854ad52b892e39ff29388de"/><file name="gender.phtml" hash="594a9f74083e45aa2328a3927534a321"/><file name="name.phtml" hash="9548a15c7e0b8185d694b887f9b96e63"/><file name="taxvat.phtml" hash="7ef67202f72805aa4c30d7e12ba6048a"/></dir><file name="wishlist.phtml" hash="24bae79b660c3aab3d180d93638c4cdd"/></dir><dir name="downloadable"><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="ebb31e3ffc92b094034dc9ceee94d8e7"/></dir></dir></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="e22d592655a56b3950c7a75aed89b7d1"/></dir></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="dca96e0c573ecb6784d494b69142472c"/></dir><dir name="oauth"><dir name="customer"><dir name="token"><file name="list.phtml" hash="4d0442f25a9741e1e2f59a7f715b8ed5"/></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="bf3c870a698d9d69799f34d2806f5e40"/><file name="2columns-left.phtml" hash="c24293c601734cb54ad42813d405dd79"/><file name="2columns-right.phtml" hash="6e25d7acf4acf8f4074af6e0ab1d07da"/><file name="3columns.phtml" hash="671f09d228335c63ed99358775822e45"/><file name="baners.phtml" hash="bc523bc7ff6efa345c5a5a7d8448e092"/><file name="brands.phtml" hash="7fc43bc6feddf79b74f9be642221c8ea"/><file name="breadcrumbsnew.phtml" hash="39d3f5aa76aef5d915404e3804663d54"/><file name="categoryimg.phtml" hash="1d20277c320b64dde513b5d71119f67b"/><dir name="html"><file name="breadcrumbs.phtml" hash="ee1e75cb6e43e97858534d489bd3e921"/><file name="footer.phtml" hash="ad53680f53b9685389a6807569b0f901"/><file name="head.phtml" hash="d6a4b005b0c12e00930a6fcc678ba73f"/><file name="header.phtml" hash="2d90c37fc53b060269c7be6db18bedda"/><file name="notices.phtml" hash="da5ebd928526806c5908e5f53533b774"/><file name="pager.phtml" hash="a4523a1853a5ac8fa0c6e9c7032fce95"/><file name="top.links.phtml" hash="5a2867d7e8e0367c7a5ccd279c6b5f9d"/><file name="topmenu.phtml" hash="52b8fd277313a48828661169085c7266"/><file name="viewpointmeta.phtml" hash="605fe92e7abaa2018e83f09776f18f9e"/><file name="wrapper.phtml" hash="17f11c22d69e9633c2a09f41cc28eaa9"/></dir><file name="newBanerList.phtml" hash="e5800449e6f4f17512c07c707fb1d775"/><dir name="switch"><file name="languages.phtml" hash="4525af0fb579659753db237b4c210714"/></dir><dir name="template"><file name="links.phtml" hash="d96096b9bfca580035b57e85963a3ce4"/><file name="linksblock.phtml" hash="3c0c73c49d39492e7a049f9d6b6f6200"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="486e22cdd97f53d06489250a2d8ba349"/><file name="schedule.phtml" hash="2fecc41bba90f77cabb7ff87eed33c81"/></dir></dir></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="78cfa40ca72015dde7227664c6b35f1b"/><file name="cashondelivery.phtml" hash="50541f512870ae803c04aeb3658a93d7"/><file name="cc.phtml" hash="630581c3d649ee8fe151a36182b6203e"/><file name="ccsave.phtml" hash="4755252df87e17b47b18c6836a69f938"/><file name="checkmo.phtml" hash="eeed7840c16ffbf56addac2588f0dbab"/><file name="purchaseorder.phtml" hash="aadf40ccc3e093874b7b0fe01465e500"/></dir><dir name="info"><file name="banktransfer.phtml" hash="5f4c13e7db3f80164ea73d13eb437bd1"/><file name="checkmo.phtml" hash="ebcdc5ee889dadd063a89dc9702bcb5d"/><file name="default.phtml" hash="45c8c15ae25c36cb2eff916d97ef822d"/><file name="purchaseorder.phtml" hash="c9e165e5f6009b3126e2c0743f1ecd06"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="f026836d3dc175f4b968b33416959ac0"/><file name="login.phtml" hash="91688327b7d92548b17f0910f98b2cd0"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="42b83ae604c19b8ac856f0a6d698b49a"/></dir></dir></dir><dir name="rating"><file name="detailed.phtml" hash="fd0413a654744d23ce6eea412221a2e4"/><file name="empty.phtml" hash="2b5189dccbaa36740993f45bd6f11214"/></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="88c7fe05e5d60ab444c22a739443df77"/><file name="recent.phtml" hash="db2da0952d12c186927fa0e5de73ef92"/><file name="view.phtml" hash="f829a98a214c59676589063ef427aadf"/></dir><file name="form.phtml" hash="567e84b0e7ea69751e317b8c88524bb2"/><dir name="helper"><file name="summary.phtml" hash="7c15b7078c848df9d2346ccd1d13cad5"/><file name="summary_short.phtml" hash="3235ad0cf2262197433a415c30fcadc2"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="4330b226b0de0c1e151ea0e8cfc60bec"/><file name="list.phtml" hash="581e6f2c2198689b86f23f277f93f238"/><file name="other.phtml" hash="0f7a97276b6b495e1b3dedf488018625"/></dir></dir><file name="view.phtml" hash="0aeb91cca40ccadffc2cde36918af5d6"/></dir><dir name="sales"><dir name="order"><file name="history.phtml" hash="f968e82c9baa8c866573632f7abd7e2d"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="ac91918f5063450f491937521c9b1bf9"/></dir></dir><dir name="tag"><dir name="customer"><file name="view.phtml" hash="f37411f086a9ec4ae949343075cd022b"/></dir><file name="list.phtml" hash="72206a445a6af8e6dca7c119bfda7b80"/><file name="popular.phtml" hash="e9b088139e11f865c080f15b9859d02d"/></dir><dir name="wishlist"><dir name="item"><dir name="column"><file name="cart.phtml" hash="84f3053a204a7c62ae905293bfd99df2"/></dir></dir><file name="view.phtml" hash="15959ac531383b9d597e22960d6340c4"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Modulesgarden_ThemeMinimo.xml" hash="1dda7df661c245ab619b0a39d4781f82"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="modulesgarden"><dir name="minimo"><dir name="css"><dir name="bootstrap"><file name="bootstrap.min.css" hash="3ab3438f85ad9f9e27e1af1facf0a9c4"/></dir><file name="color-footer-dark.css" hash="0d2aa6c04d95f8affa85f96af9bdd05f"/><file name="color-footer-lightgray.css" hash="84e8a8757ad41b7e2d9f7fef408d37e2"/><file name="color-footer-white.css" hash="59468d7eecece7569ee483e9263561ad"/><file name="component.css" hash="b073d3010695cddc0a3348957203b8df"/><file name="dcmegamenu.css" hash="e281649a47f8c7e4c207b001951c7d7f"/><dir name="font"><file name="geo.css" hash="b4761d75ccb9d621248ee4e776563d75"/><file name="geogtq-rg.eot" hash="3361a4315c05b157343f173c56d3e106"/><file name="geogtq-rg.svg" hash="2864a70927a7fabf480006611f8ccb3c"/><file name="geogtq-rg.ttf" hash="984981389b4127a9799c4783aae6c4ad"/><file name="geogtq-rg.woff" hash="0aa515f384866e0013f43622c8f783d9"/><file name="geogtq-rg.woff2" hash="97e69966466c8fba4d56b7484a6001eb"/><file name="geogtq-sb.eot" hash="0fd8aa771e2a1d0e87f9291b64db17fb"/><file name="geogtq-sb.svg" hash="3c2c05ae92199f31a61c248df81989f9"/><file name="geogtq-sb.ttf" hash="6d5a624e0a5e31ce5cc2ea3c9f356aab"/><file name="geogtq-sb.woff" hash="be8d871544e0405542debba7cce2bb8c"/><file name="geogtq-sb.woff2" hash="f79e5f048b39dcd9c8034080df9e41d0"/><file name="geogtq-ul.eot" hash="2c1eafa473244f2a7d62ba198f741c53"/><file name="geogtq-ul.svg" hash="4fb92a415cff12d170c1d6c9baac10fa"/><file name="geogtq-ul.ttf" hash="656a4c20e392f437912abff4104f01db"/><file name="geogtq-ul.woff" hash="8ca23148abf618270b62a2f5be35325a"/><file name="geogtq-ul.woff2" hash="b6f15ec745ff10ba76e84dcfec9cf533"/></dir><dir name="font_awesome"><dir name="css"><file name="font-awesome.css" hash="701a716398620a5f24f4b15bd312b934"/><file name="font-awesome.min.css" hash="feda974a77ea5783b8be673f142b7c88"/></dir><dir name="fonts"><file name="FontAwesome.otf" hash="19231917733e2bcdf257c9be99cdbaf1"/><file name="fontawesome-webfont.eot" hash="7149833697a959306ec3012a8588dcfa"/><file name="fontawesome-webfont.svg" hash="65bcbc899f379216109acd0b6c494618"/><file name="fontawesome-webfont.ttf" hash="c4668ed2440df82d3fd2f8be9d31d07d"/><file name="fontawesome-webfont.woff" hash="d95d6f5d5ab7cfefd09651800b69bd54"/></dir><dir name="less"><file name="bordered-pulled.less" hash="5b3f3e1353ea7ab9d10fd7598fbd214b"/><file name="core.less" hash="b5507859b83e01561e0b171a1a8a21a7"/><file name="fixed-width.less" hash="5e07ec001f8d21bd279c12ee542813f7"/><file name="font-awesome.less" hash="65493b74c9bfb5c6942e61239efdb3de"/><file name="icons.less" hash="2e03dd427613acb1f97eb506bcc24c83"/><file name="larger.less" hash="8cb65280c0f889daf72626c21a7c8628"/><file name="list.less" hash="975571323cf880a4a30601998236b027"/><file name="mixins.less" hash="3a0108713f34ca1fcbe22451585886b5"/><file name="path.less" hash="baaf503b6821b49336f242445bcf26ca"/><file name="rotated-flipped.less" hash="a8476cdc50c264abd11ff59d6a9dd025"/><file name="spinning.less" hash="f7ceb182bd98b795cf0a55e90c518a14"/><file name="stacked.less" hash="518e2b2d263982d2caa1e6514b4b4eac"/><file name="variables.less" hash="d40d1e811702269d6aa862070b652a34"/></dir><dir name="scss"><file name="_bordered-pulled.scss" hash="e4f85472a1f6ed0e23a473b8e00ef071"/><file name="_core.scss" hash="5a0ac797103875112d48b5d51f0dc71d"/><file name="_fixed-width.scss" hash="9277ab6964a434d499873687b00be906"/><file name="_icons.scss" hash="18308d3f72183aaad1047e3e4200f7ba"/><file name="_larger.scss" hash="e95931566f6fc6ad5685c4fa9802e206"/><file name="_list.scss" hash="7107e80b053928271d5fcf422dc29490"/><file name="_mixins.scss" hash="e0baf3cfd00f9ba22126d3dfbacbce22"/><file name="_path.scss" hash="ac2a848f68cffed328272615bfca2500"/><file name="_rotated-flipped.scss" hash="9f5d4bc6fadea89328d2aac26574a9d8"/><file name="_spinning.scss" hash="7dcbea35ea3ee2f576354daeb510ab33"/><file name="_stacked.scss" hash="5594237226aedfbca2fa1c7f4604c214"/><file name="_variables.scss" hash="259f90841b8ddd08055d42737acaae95"/><file name="font-awesome.scss" hash="6adfa5c642be301ec4af882faa5cecbf"/></dir></dir><file name="iwd-active.css" hash="8015659e61cc18b3da52348a7baff807"/><file name="iwd-disable.css" hash="d06d6e5bc4ce0444c59b506ea8dc737b"/><file name="lato-font.css" hash="1ec0b077a66134fff4f4d77a21a177f6"/><file name="newhtml.html" hash="cf887a13d6d8c95a1749214bc73a2d90"/><file name="oauth-simple.css" hash="3da633ac3800b0d5a9501e089202c760"/><file name="open-sans-font.css" hash="ce86696f9d8f37570f98adcfc35b6ffd"/><file name="print.css" hash="0931bba935b423c1e1866b4e586de88e"/><file name="raleway-font.css" hash="d068919a46eecf58e3b1b2dc1fb3611c"/><file name="responsive.css" hash="421e2be92a5cabf821dbf5a0f2b6ee72"/><file name="roboto-font.css" hash="8f33a04414ee62900eb1a00facebb819"/><file name="selectric.css" hash="98fe5d00c62b0c6b078867e3dfa70093"/><dir name="skins"><file name="black.css" hash="14b1a3bb77cd42d4f747684a341b493b"/><file name="blue.css" hash="9eadba2e0bddfebcf6a198f6f9764dbd"/><file name="green.css" hash="39405600bc1f26ebc0eb563dfb26c4db"/><file name="grey.css" hash="6a2a37d3e9d0b723ca64a1078309a9d4"/><dir name="images"><file name="Thumbs.db" hash="0d332b18fee34b69b810df734f2ab461"/><file name="arrow.png" hash="7f5050a2ae0dfc56bd79a736aea5bfe6"/><file name="arrow_off.png" hash="9f67854da3a2ba0e841d8266903eee2a"/><file name="arrow_on.png" hash="07c2e2ee88d8caa41fa96c39bfbe6803"/><file name="bg_black.png" hash="8e58688135c52f2779049320b3e85f6a"/><file name="bg_blue.png" hash="69fade31b7063217515e2f817167f368"/><file name="bg_green.png" hash="8dee0d9fdd161c6b0bd788b5b5ea49fd"/><file name="bg_grey.png" hash="3efae0e5949897e28764a1b946d104d3"/><file name="bg_light_blue.png" hash="babdf093f43152d77559392bf79b8e92"/><file name="bg_mega_hdr.png" hash="436d09d2546f8f2e494e3d171dee71e9"/><file name="bg_mega_hdr_full.png" hash="c3517f3c748fb862c42df0c011c7cf33"/><file name="bg_mega_hdr_on.png" hash="bf0f029b394ee430f33212061491f277"/><file name="bg_orange.png" hash="0872763cd1758bb5986060c72f422e51"/><file name="bg_red.png" hash="5058be0a6a6c3c5199c9ab27e62fb44b"/><file name="bg_sub.png" hash="da1cf2f1397f004ca0d1636604973ae7"/><file name="bg_sub_left.png" hash="68a7d0483900089186c62463b9f91b1b"/><file name="bg_white.png" hash="694e8999f9f00f714cdf81623fe38676"/></dir><file name="light_blue.css" hash="fdb355cf1a90d6a50cc0d306b5fa66cb"/><file name="orange.css" hash="db3e3268c67899e8b5e4508143a4de8a"/><file name="red.css" hash="a3b385b6f8224b866aa2e68fede9a80c"/><file name="white.css" hash="bad545651b5044a35db6e44d36364a90"/></dir><file name="styles-ie.css" hash="fd54c1025b9de3cea9002e1d6d8efdaf"/><file name="styles-inversion.css" hash="639c6bfb674e5570252650bed1098a6f"/><file name="styles.css" hash="3b30716da621ee2e8b9d98c1d3207e4a"/><file name="widgets.css" hash="e755828e5680da2e27edecbeafe553fc"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="arrow_carusel.png" hash="dccadf46892fe2bc278e814c2268783f"/><file name="baner1_m.png" hash="a5b965c129242264c0151d9bf6ccbeb0"/><file name="baner2_m.png" hash="e3e5ffc7796f8c6d35a57065a4d97da1"/><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bg.jpg" hash="de3c03a6d63cdefe636011b020a99a0d"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating-green.png" hash="52351ae12d191514b8295430808e9414"/><file name="bkg_rating.png" hash="efd241bcf6c2d0632dcea45000758174"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="94c62137a4d5cfde05e5822e3971c0e0"/><file name="cart.png" hash="4aed591a7e30a96b42d0128f74353d33"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="b4a5dadc397bb143107500313b0ae9bc"/><file name="small_image.jpg" hash="838c6465111754dc57745f0af5c8d842"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="centinel"><file name="sc_learn_62x34.png" hash="7d6ec4b19f8eeb6baa2cddd5d4274f87"/><file name="v_activate_steps.gif" hash="005312b14c6aed41e8a47c4acaac7c1a"/><file name="vbv_ltbg_71x57.png" hash="324e5de7f6c75dc3cecb61646113ac41"/></dir><file name="circle-small_blue.png" hash="4d2ca23b4b612def67bb48e8878d0a7d"/><file name="circle.png" hash="af9fcbd60a64da62fe565f732b6f3a86"/><file name="circle_blue.png" hash="08a653bd76583c789fddb43363cc30c2"/><file name="circle_red.png" hash="96e0ceb02502d210f62fa1ca3ab06f50"/><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="crsl-image.png" hash="e0dfbd3bf979f252d8ffa81d86132195"/><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="eye.png" hash="ac7afaa0316ed806780f6e8386536038"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="grid-blue.png" hash="6d04540caeed6f6234acd82b0cefc634"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="grid-green.png" hash="1f0d3a26a9fd27b87fe3a0717a73e482"/><file name="grid-n.png" hash="c806544c0d1aa6d79d8f14ab6148c391"/><file name="home_left_callout.jpg" hash="ee99a5586cf52e85c986d1275958a7da"/><file name="home_main_callout.jpg" hash="e6d1c119d5b24a5916fe394cb4b5cdc3"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_arrow-top.png" hash="012c2813c8018ec5b58063c06968ba4d"/><file name="i_arrow-top_blue.png" hash="51d5a82d1e54179bebc62b8935bcae7e"/><file name="i_arrow-top_red.png" hash="57cf93591dfc01392fba9a2ecba38172"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asc_arrow.png" hash="cd9a4e7714ce910a55e9de14fee602e1"/><file name="i_asc_arrow_blue.png" hash="0be3f7d691653472390e59b500feedd6"/><file name="i_asc_arrow_red.png" hash="dff87f9eed9f8f6c5b5a2d9d677c22c7"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_desc_arrow.png" hash="0a3989f672be2a9d38d0a5d3273ddb06"/><file name="i_desc_arrow_blue.png" hash="e5540b9e17d5331da2ba003e0dbe1c94"/><file name="i_desc_arrow_red.png" hash="6aabf45cb33b4b72ce5272748c824938"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><dir name="images"><file name="Thumbs.db" hash="abdc16c08142a42fcec3be88d8b496e2"/><file name="baner1.png" hash="73406eb6a82871f0adf60f9615f3a5c4"/><file name="baner2.png" hash="3eed3648e4cdacf710fe466309f3d6c9"/><file name="baner3.png" hash="a166e51f1c8402ce97b2459336e5312b"/><file name="bg-blue.png" hash="d2e62a6e3914a81ea02b0b8d24a69fda"/><file name="bg-header.png" hash="879b8f0b9e67f8f981ea0b9bd73952b0"/><file name="ciecie_lista_kat_03.png" hash="b83034050eeefc69360b7b63e2982559"/><file name="dess2.jpg" hash="1a1412563f2c6650c035c54a1de1033a"/><file name="dess3.jpg" hash="29292e1df55eae17e44271c1c30b8862"/><file name="dress1.jpg" hash="8b8b57d95bfd023bdde41c6b484e4a83"/><file name="dress4.jpg" hash="5f7e069e4d6f18ef1e8dcad849ce4ffa"/></dir><file name="list-blue.png" hash="1592a274b8c6a7af1f94b63f04b11e1e"/><file name="list-green.png" hash="fe403855f499214aa4e89d510fbf8235"/><file name="list-n.png" hash="ab265094a23a60d696bab5acd221f08c"/><file name="logo.gif" hash="48ef3ee4910d0c46b87e148db58bb5f4"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="logo.png" hash="b6b969ca90a3f1586eea6472d61a2259"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><dir name="moneybookers"><file name="banner_120_de.gif" hash="74815117bf378543e5b3496bb5bc4e8a"/><file name="banner_120_de.png" hash="6c3f708fcb6dac92e53472d4c2246c68"/><file name="banner_120_dk.gif" hash="2106bd994d188d40474bf2a2e8d62a8d"/><file name="banner_120_fr.gif" hash="a84241eef7bc38fb38567e7aa8ca245a"/><file name="banner_120_fr.png" hash="8994d1dc3b4f5c9e5efc67ce3f9f55a9"/><file name="banner_120_int.gif" hash="e23ddcf71e15f0a9300062ef9cdea512"/><file name="banner_120_int.png" hash="f9dfbc26041e52b34eea65348707d64f"/><file name="banner_120_pl.gif" hash="44313c7d27cdcf59c2f66708c6c5abd5"/><file name="banner_120_pl.png" hash="67d3385f93bc9113880305ee7c7da9de"/><file name="banner_120_sp.gif" hash="a003ed8db63620672ae945682b1e1e39"/><file name="banner_120_sp.png" hash="f9c4a653d6814ab3f8c535da706f5f77"/><file name="moneybookers_acc.png" hash="a3e639a68fafdffaca81e91985127735"/><file name="moneybookers_csi.gif" hash="4eec4ed7c494d01d518a3c6c691128e9"/><file name="moneybookers_did.gif" hash="6a3a3365894e9cdb199647a5b74ba35b"/><file name="moneybookers_dnk.gif" hash="7d4b8d27784f8a6fa6ef81c4e911831b"/><file name="moneybookers_ebt.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_ent.gif" hash="704e9551ed4aff82b67114242b9fba1a"/><file name="moneybookers_gcb.gif" hash="e2e7c0f501e5ab0136f859ca5f57abc2"/><file name="moneybookers_gir.gif" hash="f16e949bc60bbd812f803d5e377d47f6"/><file name="moneybookers_idl.gif" hash="fe0ad1efc12d43df6c9ff3ffdd9dd59b"/><file name="moneybookers_lsr.gif" hash="58cdadfa20b6d37aeaa19e50995e4baf"/><file name="moneybookers_mae.gif" hash="4d4b5f0cf3377939c7738fc7e416d25f"/><file name="moneybookers_npy.gif" hash="01242c5ad7bc667e7493b550b6397fab"/><file name="moneybookers_obt_de.png" hash="ce44fd2974b8d279401778292e2c4484"/><file name="moneybookers_obt_dk.png" hash="2985e8cb472d1886d584fa31d56bee92"/><file name="moneybookers_obt_ee.png" hash="cb186be1c7595544f61d3737c7bf85aa"/><file name="moneybookers_obt_en.png" hash="eee098a06e3ea34f33e276724b084774"/><file name="moneybookers_obt_fl.png" hash="6c3766df052d875ce399e62ad8a435f8"/><file name="moneybookers_obt_lt.png" hash="adf61f248fc6d5985840db3e0c23391e"/><file name="moneybookers_obt_lv.png" hash="4e7f16b4988ea30f049942d4dcdb5f78"/><file name="moneybookers_obt_pl.png" hash="fb2c43c18ba73d390e5b5f5261261f4a"/><file name="moneybookers_obt_se.png" hash="9028412e9c3f25d114bf40bb2049d225"/><file name="moneybookers_pli.gif" hash="93989e85caff760af7a61838db0300bf"/><file name="moneybookers_psp.gif" hash="7abffc2246f172625be2ce31f4315cb2"/><file name="moneybookers_pwy.gif" hash="b4a0b9db9a031855e6e3899592012fae"/><file name="moneybookers_sft.gif" hash="e9e774163c99a8ab4deb18d37feaf658"/><file name="moneybookers_so2.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_wlt.gif" hash="4b9cbc5aa5c32f3015ce7bec98da2670"/></dir><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader-blue.gif" hash="1206ed1297c02fba633d2f43302214b8"/><file name="opc-ajax-loader-green.gif" hash="68c8a70889b485f1db2de73efeeb8f95"/><file name="opc-ajax-loader.gif" hash="1206ed1297c02fba633d2f43302214b8"/><file name="pager_arrow_left.gif" hash="a212ac6e10e090a94578876cd8dc5a7c"/><file name="pager_arrow_left_blue.gif" hash="778119d8117d58db410b9ffd6d91d3e1"/><file name="pager_arrow_left_red.gif" hash="be12af073dd071ccb1303fd1b577dd58"/><file name="pager_arrow_right.gif" hash="c1e688c63b94fff68eccf2d0c8017b4b"/><file name="pager_arrow_right_blue.gif" hash="2842a34bb79eedeea4fc13c0d5ada48a"/><file name="pager_arrow_right_red.gif" hash="cd8605d7ff3f69fb29b800a0ab234950"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="plus-red.png" hash="cab6e42248c6651dcdfe1f1cc509fc7b"/><file name="plus.png" hash="5713c7c00702781aca68754160253ef3"/><file name="plus_blue.png" hash="51b894cd453d8361a53311e484fbc580"/><file name="plus_red.png" hash="cab6e42248c6651dcdfe1f1cc509fc7b"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><file name="search_button.png" hash="09c93ed5e39dcaae4831052678762324"/><dir name="slider"><file name="baner1.png" hash="73406eb6a82871f0adf60f9615f3a5c4"/><file name="baner2.png" hash="3eed3648e4cdacf710fe466309f3d6c9"/><file name="baner3.png" hash="a166e51f1c8402ce97b2459336e5312b"/><file name="bg-blue.png" hash="d2e62a6e3914a81ea02b0b8d24a69fda"/><file name="ipad.png" hash="bac46a134a5e94326c36ebb524841f4b"/><file name="logo_brands.jpg" hash="8af988cb7043558987db535ce4ff789b"/></dir><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><file name="wish.png" hash="f86cdb4fdfdee5619a2752221d48d347"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><dir name="bootstrap"><file name="bootstrap.min.js" hash="2616d3564578d8f845813483352802a9"/></dir><file name="cbpHorizontalMenu.min.js" hash="7af20a7d184076e33fa879f0ba86c1ad"/><file name="custom.js" hash="cc78597ed8f127faf6a0365f14415230"/><dir name="fancybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/><dir name="helpers"><file name="fancybox_buttons.png" hash="b448080f8615e664b7788c7003803b59"/><file name="jquery.fancybox-buttons.css" hash="cac75538c2e3ddfadef839feaca8e356"/><file name="jquery.fancybox-buttons.js" hash="f53c246661fb995a3f12e67fa38e0fa0"/><file name="jquery.fancybox-media.js" hash="c017067f48d97ec4a077ccdf056e6a2e"/><file name="jquery.fancybox-thumbs.css" hash="52ddd84a9f42c1d4cd86d518a7f7e8bc"/><file name="jquery.fancybox-thumbs.js" hash="cf1fc1df534eede4cb460c5cbd71aba6"/></dir><file name="jquery.fancybox.css" hash="6c55951ce1e3115711f63f99b7501f3a"/><file name="jquery.fancybox.js" hash="ce0e799634e091e39ea6e49b12a95d14"/><file name="jquery.fancybox.pack.js" hash="5c5cfd8f33e8fe13674392eef6ad7a42"/></dir><file name="jquery-1.10.2.min.js" hash="c04fbebacf96da98e82efe1a916c6d29"/><file name="jquery.dcmegamenu.1.3.3.min.js" hash="965b14265c378511b7f09125d0cd828a"/><file name="jquery.flexisel.js" hash="e2b1e9926a23e002e3283df45e47ee8b"/><file name="jquery.hoverIntent.minified.js" hash="bcade1a646d46b19333ed5aa2cfe4cc5"/><file name="jquery.selectric.min.js" hash="22adfe488d9e488b6138de73027a664d"/><dir name="layerslider"><dir name="css"><file name="blank.gif" hash="76084e29cb2cf72b320e888edc583dfb"/><file name="layerslider.css" hash="cff418c08f8f6c03660f90e791beddb5"/></dir><dir name="js"><file name="greensock.js" hash="37b8cf3e6997604340964adb3462b76d"/><file name="jquery.js" hash="562161bd1acad5172cd861f4835a5652"/><file name="layerslider.kreaturamedia.jquery.js" hash="15d2411ac58e00b29bfc552ab6428f54"/><file name="layerslider.transitions.js" hash="33f82fea7aa75721d82fc3cec6d48690"/></dir><dir name="skins"><dir name="borderlessdark"><file name="loading.gif" hash="e82577eeffcfdbb0ee0b96210a4c9afd"/><file name="nothumb.png" hash="575f8a12504e09d515edc26a0fe5eece"/><file name="shadow.png" hash="35a1002c529afb496b5642e8a9b35466"/><file name="skin.css" hash="81f75d27f86e83b442572e9660983df8"/><file name="skin.png" hash="dfc9e677df11103054c1c043ff52a4a9"/></dir><dir name="borderlessdark3d"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="dfc1373cfdc6bcc673ad236d9482cf39"/><file name="skin.css" hash="6c937a06bcac530ed839dc9659891a69"/><file name="skin.png" hash="744e435ecd2a7513fa1cf1e586ecd14a"/></dir><dir name="borderlesslight"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="35a1002c529afb496b5642e8a9b35466"/><file name="skin.css" hash="2473f57f10bd6f0774e269cc7f48154d"/><file name="skin.png" hash="dd7e700c6895505621f0fea9d13dc46e"/></dir><dir name="borderlesslight3d"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="dfc1373cfdc6bcc673ad236d9482cf39"/><file name="skin.css" hash="c08f1c979ba318c785ce9e108a81a0f5"/><file name="skin.png" hash="50031e6021412aa36c2bd19a317c1071"/></dir><dir name="carousel"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="86e04178853cbcb48b2804584b607d2d"/><file name="skin.png" hash="2168ddf8139d2f6e4bfaf5f0288b8137"/></dir><dir name="darkskin"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="575f8a12504e09d515edc26a0fe5eece"/><file name="skin.css" hash="7aa8160d6a51a6644ce5c94b5455683d"/><file name="skin.png" hash="d9ec414f3779a5dc5654403f3c59a7ea"/></dir><dir name="defaultskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="43461c47d6853954b7df5663708077c7"/><file name="skin.png" hash="715012a0ceef20b603c81dede7ad5a65"/></dir><dir name="fullwidth"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="b3f8dbdbfa285ce58cf629f72e93c2ed"/><file name="skin.png" hash="50031e6021412aa36c2bd19a317c1071"/></dir><dir name="fullwidthdark"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="77f91e85513a68c68363ea8f5ce49046"/><file name="skin.png" hash="c2a9f34b086952c71cb599618fc928ba"/></dir><dir name="glass"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="7feecb2e0fe23274fe6a0bda004680fe"/><file name="skin.css" hash="bc481392c81acab1393f11f7736923d0"/><file name="skin.png" hash="a52d3924867a503e3a191affd35af3ce"/></dir><dir name="lightskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="76dd2fcd0e9a152ac268a844249e03b3"/><file name="skin.png" hash="7a7014b8762c5855d4a973ad44b4115b"/></dir><dir name="minimal"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="12a92190387c645598e919df09987d4b"/><file name="skin.png" hash="683ce20cf7650bb023a509b2182a183b"/></dir><dir name="noskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="a7490e3bb30033a37d1fe123c5a675e4"/><file name="skin.png" hash="04b2ee7f7f946c9af534a01bf683505f"/></dir><dir name="v5"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="bc97c95ae9fed681515eb45e119fea31"/><file name="skin.png" hash="04ec18a1e23a9b20cde5575245ebead4"/></dir></dir></dir><file name="opcheckout.extended.js" hash="f7a2b2bed8b6b9ad63754e3c983c2e93"/><dir name="owl-carousel"><file name="AjaxLoader.gif" hash="5b8b06c052cac80413d62e5c45f9f37b"/><file name="Thumbs.db" hash="a222d71aeade05d901cd99b0008ce598"/><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="owl.carousel.css" hash="b51416af9e8adbe3d16f5f2526aba221"/><file name="owl.carousel.js" hash="950cd1fb28bd7d6a678a80de1a2e09a1"/><file name="owl.carousel.min.js" hash="a8933eddce0140ff58bdb697930f8164"/><file name="owl.theme.css" hash="f23cf727e4fcca9a5470658da5e755c9"/><file name="owl.transitions.css" hash="b1bdaeac4065bf67a7d7a06213192964"/></dir></dir><file name="oauth-simple.css" hash="3da633ac3800b0d5a9501e089202c760"/></dir></dir></dir></target></contents>
|
16 |
+
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.13</min><max>5.6.0</max></php><package><name>Modulesgarden_Base</name><channel>community</channel><min>1.0.0</min><max></max></package></required></dependencies>
|
18 |
+
</package>
|
skin/frontend/modulesgarden/minimo/css/bootstrap/bootstrap.min.css
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.1 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2014 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:before,:after{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],input[type=radio].disabled,input[type=checkbox].disabled,fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg,select.form-group-lg .form-control{height:46px;line-height:46px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important;visibility:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
|
skin/frontend/modulesgarden/minimo/css/color-footer-dark.css
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* ============ STYLES FOR FOOTER THEME - LIGHTGRAY =============== */
|
2 |
+
.header_wrapp { background:#383a3c; border-bottom:1px solid #27292a; }
|
3 |
+
.header .welcome-msg { margin:0; color:#fff; }
|
4 |
+
.header .welcome-msg a { color:#fff; }
|
5 |
+
.header .links li a { color:#fff; }
|
6 |
+
.header .form-language select { background:#383a3c !important; }
|
7 |
+
|
8 |
+
.footer-container { background:#383a3c; border-top:1px solid #27292a; border-bottom:1px solid #27292a; }
|
9 |
+
.footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
|
10 |
+
.footer a { color:#ececec; text-decoration:none; }
|
11 |
+
.footer a:hover { text-decoration:underline; }
|
12 |
+
.footer .bugs { margin:13px 0 0; color:#ececec; }
|
13 |
+
.footer .bugs a { color:#ececec; text-decoration:underline; }
|
14 |
+
.footer .bugs a:hover { text-decoration:none; }
|
15 |
+
.footer address { margin:0 0 20px; color:#ececec; }
|
16 |
+
.footer address a { color:#ececec; text-decoration:underline; }
|
17 |
+
.footer address a:hover { text-decoration:none; }
|
18 |
+
.footer .col2 h2, .footer .col3 h2, .footer .col4 span { color:#fff !important; }
|
19 |
+
.footer-container .col1 { background:#313132 !important; border:1px solid #27292a !important; }
|
20 |
+
.col-footer h2 { border-bottom: 1px solid #27292a !important; }
|
21 |
+
.col-footer .block-title { border-bottom: 1px solid #27292a !important; }
|
22 |
+
.footer .col1 h2 { border:none !important; color:#fff; }
|
23 |
+
.footer .col1 ul li { color:#ececec; }
|
24 |
+
.block-subscribe label { color:#ececec !important; }
|
25 |
+
.header .form-language label {
|