Skip to content

Commit

Permalink
added missing block template
Browse files Browse the repository at this point in the history
  • Loading branch information
iesus committed Apr 26, 2018
1 parent 4287280 commit 52653b8
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
/**
* Svea checkout Cart Summary Template
*
* @package Svea_Checkout
* @module Svea
* @author Webbhuset <[email protected]>
* @see Svea_Checkout_Block_Checkout_Cart
*/
?>
<form id="country-form">
<?php
$selectedCountry = $this->getQuote()->getShippingAddress()->getCountryId();
$countryId = ($selectedCountry) ? $selectedCountry : null;
echo Mage::getBlockSingleton('directory/data')->getCountryHtmlSelect($countryId)
?>
</form>

0 comments on commit 52653b8

Please sign in to comment.