Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Magento
- *
- * NOTICE OF LICENSE
- *
- * This source file is subject to the Academic Free License (AFL 3.0)
- * that is bundled with this package in the file LICENSE_AFL.txt.
- * It is also available through the world-wide-web at this URL:
- * http://opensource.org/licenses/afl-3.0.php
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to [email protected] so we can send you a copy immediately.
- *
- * DISCLAIMER
- *
- * Do not edit or add to this file if you wish to upgrade Magento to newer
- * versions in the future. If you wish to customize Magento for your
- * needs please refer to http://www.magentocommerce.com for more information.
- *
- * @category design
- * @package base_default
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
- */
- /**
- * Product view template
- *
- * @see Mage_Catalog_Block_Product_View
- * @see Mage_Review_Block_Product_View
- */
- ?>
- <?php $_helper = $this->helper('catalog/output'); ?>
- <?php $_product = $this->getProduct(); ?>
- <script type="text/javascript">
- var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
- </script>
- <div class="container">
- <div class="row">
- <div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
- <div class="product-view">
- <div class="product-essential">
- <form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
- <?php echo $this->getBlockHtml('formkey') ?>
- <div class="no-display">
- <input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
- <input type="hidden" name="related_product" id="related-products-field" value="" />
- </div>
- <div class="col-xs-12 col-sm-5">
- <div class="product-img-box">
- <?php echo $this->getChildHtml('media'); ?>
- <?php echo $this->getChildHtml('related_colors'); ?>
- </div>
- </div>
- <?php
- $addDiscountClass = false;
- if($_product->getPrice() > $_product->getFinalPrice()) : $addDiscountClass = true; endif;
- ?>
- <div class="col-xs-12 col-sm-7">
- <div class="product-shop <?php if(!$addDiscountClass) : echo 'non-discounted'; endif; ?>">
- <div class="product-name">
- <h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
- </div>
- <?php if ($_product->getShortDescription()):?>
- <div class="short-description">
- <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
- <?php $_productCollection=$this->getLoadedProductCollection(); ?>
- </div>
- <?php endif;?>
- <?php echo $this->getChildHtml('alert_urls') ?>
- <?php echo $this->getTierPriceHtml() ?>
- <?php echo $this->getChildHtml('extrahint') ?>
- <?php if (!$this->hasOptions()):?>
- <div class="add-to-box">
- <?php if($_product->isSaleable()): ?>
- <?php echo $this->getChildHtml('addtocart') ?>
- <?php endif; ?>
- </div>
- <?php echo $this->getChildHtml('extra_buttons') ?>
- <?php
- elseif (!$_product->isSaleable()): ?>
- <?php echo $this->getChildHtml('disabledcart') ?>
- <?php endif; ?>
- <?php echo $this->getChildHtml('other');?>
- <?php if ($_product->isSaleable() && $this->hasOptions()):?>
- <?php echo $this->getChildChildHtml('container1', '', true, true); ?>
- <?php endif;?>
- <div class="usp">
- <div class="delivery">
- <div class="usp-icon"><i class="fa fa-truck"></i></div>
- <div class="usp-text">
- Buy now and get it delivered in 4-5 days
- </div>
- </div>
- <div class="contact">
- <div class="usp-icon"><span class="fa fa-phone"></span></div>
- <div class="usp-text">
- Need help? <br/>
- Call <?php echo Mage::getStoreConfig('general/store_information/phone'); ?>
- </div>
- </div>
- </div>
- <div class="clearfix"></div>
- <div class="cod-finder">
- <?php echo $this->getChildHtml('cod.checker'); ?>
- </div>
- <div class="offer-global">
- <?php echo $this->getChildHtml('product_global_offer'); ?>
- </div>
- </div>
- </div>
- <div class="clearer"></div>
- <?php if ($_product->isSaleable() && $this->hasOptions()):?>
- <?php echo $this->getChildChildHtml('container2', '', true, true) ?>
- <?php endif;?>
- </form>
- <script type="text/javascript">
- //<![CDATA[
- var productAddToCartForm = new VarienForm('product_addtocart_form');
- productAddToCartForm.submit = function(button, url) {
- if (this.validator.validate()) {
- var form = this.form;
- var oldUrl = form.action;
- if (url) {
- form.action = url;
- }
- var e = null;
- try {
- this.form.submit();
- } catch (e) {
- }
- this.form.action = oldUrl;
- if (e) {
- throw e;
- }
- if (button && button != 'undefined') {
- button.disabled = true;
- }
- }
- }.bind(productAddToCartForm);
- productAddToCartForm.submitLight = function(button, url){
- if(this.validator) {
- var nv = Validation.methods;
- delete Validation.methods['required-entry'];
- delete Validation.methods['validate-one-required'];
- delete Validation.methods['validate-one-required-by-name'];
- // Remove custom datetime validators
- for (var methodName in Validation.methods) {
- if (methodName.match(/^validate-datetime-.*/i)) {
- delete Validation.methods[methodName];
- }
- }
- if (this.validator.validate()) {
- if (url) {
- this.form.action = url;
- }
- this.form.submit();
- }
- Object.extend(Validation.methods, nv);
- }
- }.bind(productAddToCartForm);
- //]]>
- </script>
- </div>
- </div>
- </div>
- </div>
- <div class="product-reinforcement">
- <div class="container">
- <div class="row">
- <div class="col-xs-12 col-sm-12">
- <img alt="" class="stamp"
- src="<?php echo $this->getSkinUrl('images/catalog/product/stamp.png'); ?>"/>
- <ul>
- <li>100% original</li>
- <li>Flat Rs 50 Shipping</li>
- <li>Easy exchange</li>
- <li>30 day returns</li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <div class="product-collateral">
- <div class="container">
- <div class="row">
- <div class="col-xs-12 col-sm-7 product-attributes">
- <div class="panel-group" id="accordion">
- <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
- <?php echo $html; ?>
- <?php endforeach;?>
- </div>
- </div>
- <div class="col-xs-12 col-sm-4 col-xs-offset-1 product-related">
- <?php echo $this->getChildHtml('related'); ?>
- </div>
- </div>
- </div>
- <div class="container">
- <div class="row">
- <div class="col-xs-12 col-sm-12">
- <?php echo $this->getChildHtml('upsell_products') ?>
- </div>
- </div>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement