Version Notes
Make a downloadable product from a music album that provides each track as a link. Musicplayer is displayed instead of product image and options, using product images to display with individual tracks(same index) or default product image. Product options/links are converted to playlist. Player plays mp3 / ogg sample files from downloadable link sample url.
Download this release
Release Info
| Developer | Dominik Wyss |
| Extension | Wmd_Musicplayer |
| Version | 1.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.0.1
- app/design/frontend/default/musicplayer/template/catalog/product/list.phtml +0 -128
- app/design/frontend/default/musicplayer/template/catalog/product/new.phtml +0 -59
- app/design/frontend/default/musicplayer/template/catalog/product/view.phtml +1 -1
- app/design/frontend/default/musicplayer/template/downloadable/catalog/product/links.phtml +1 -1
- app/design/frontend/default/musicplayer/template/downloadable/catalog/product/samples.phtml +45 -0
- app/etc/modules/{WMD_Musicplayer.xml → Wmd_Musicplayer.xml} +0 -0
- package.xml +4 -4
app/design/frontend/default/musicplayer/template/catalog/product/list.phtml
DELETED
|
@@ -1,128 +0,0 @@
|
|
| 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) 2011 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 |
-
<p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
|
| 40 |
-
<?php else: ?>
|
| 41 |
-
<div class="category-products">
|
| 42 |
-
<?php echo $this->getToolbarHtml() ?>
|
| 43 |
-
<?php // List mode ?>
|
| 44 |
-
<?php if($this->getMode()!='grid'): ?>
|
| 45 |
-
<?php $_iterator = 0; ?>
|
| 46 |
-
<ol class="products-list" id="products-list">
|
| 47 |
-
<?php foreach ($_productCollection as $_product): ?>
|
| 48 |
-
<li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
|
| 49 |
-
<?php // Product Image ?>
|
| 50 |
-
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
|
| 51 |
-
<?php // Product description ?>
|
| 52 |
-
<div class="product-shop">
|
| 53 |
-
<div class="f-fix">
|
| 54 |
-
<?php $_productNameStripped = $this->stripTags($_product->getName(), null, true); ?>
|
| 55 |
-
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a></h2>
|
| 56 |
-
<?php if($_product->getRatingSummary()): ?>
|
| 57 |
-
<?php echo $this->getReviewsSummaryHtml($_product) ?>
|
| 58 |
-
<?php endif; ?>
|
| 59 |
-
<?php //echo $this->getPriceHtml($_product, true) ?>
|
| 60 |
-
<?php if($_product->isSaleable()): ?>
|
| 61 |
-
<p><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></p>
|
| 62 |
-
<?php else: ?>
|
| 63 |
-
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 64 |
-
<?php endif; ?>
|
| 65 |
-
<div class="desc std">
|
| 66 |
-
<?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
|
| 67 |
-
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a>
|
| 68 |
-
</div>
|
| 69 |
-
<ul class="add-to-links">
|
| 70 |
-
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 71 |
-
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
| 72 |
-
<?php endif; ?>
|
| 73 |
-
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 74 |
-
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
| 75 |
-
<?php endif; ?>
|
| 76 |
-
</ul>
|
| 77 |
-
</div>
|
| 78 |
-
</div>
|
| 79 |
-
</li>
|
| 80 |
-
<?php endforeach; ?>
|
| 81 |
-
</ol>
|
| 82 |
-
<script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
|
| 83 |
-
|
| 84 |
-
<?php else: ?>
|
| 85 |
-
|
| 86 |
-
<?php // Grid Mode ?>
|
| 87 |
-
|
| 88 |
-
<?php $_collectionSize = $_productCollection->count() ?>
|
| 89 |
-
<?php $_columnCount = $this->getColumnCount(); ?>
|
| 90 |
-
<?php $i=0; foreach ($_productCollection as $_product): ?>
|
| 91 |
-
<?php if ($i++%$_columnCount==0): ?>
|
| 92 |
-
<ul class="products-grid">
|
| 93 |
-
<?php endif ?>
|
| 94 |
-
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
|
| 95 |
-
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
|
| 96 |
-
<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>
|
| 97 |
-
<?php if($_product->getRatingSummary()): ?>
|
| 98 |
-
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
|
| 99 |
-
<?php endif; ?>
|
| 100 |
-
<?php //echo $this->getPriceHtml($_product, true) ?>
|
| 101 |
-
<div class="actions">
|
| 102 |
-
<?php if($_product->isSaleable()): ?>
|
| 103 |
-
<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>
|
| 104 |
-
<?php else: ?>
|
| 105 |
-
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 106 |
-
<?php endif; ?>
|
| 107 |
-
<ul class="add-to-links">
|
| 108 |
-
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 109 |
-
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
| 110 |
-
<?php endif; ?>
|
| 111 |
-
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 112 |
-
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
| 113 |
-
<?php endif; ?>
|
| 114 |
-
</ul>
|
| 115 |
-
</div>
|
| 116 |
-
</li>
|
| 117 |
-
<?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
|
| 118 |
-
</ul>
|
| 119 |
-
<?php endif ?>
|
| 120 |
-
<?php endforeach ?>
|
| 121 |
-
<script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
|
| 122 |
-
<?php endif; ?>
|
| 123 |
-
|
| 124 |
-
<div class="toolbar-bottom">
|
| 125 |
-
<?php echo $this->getToolbarHtml() ?>
|
| 126 |
-
</div>
|
| 127 |
-
</div>
|
| 128 |
-
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/musicplayer/template/catalog/product/new.phtml
DELETED
|
@@ -1,59 +0,0 @@
|
|
| 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) 2011 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 |
-
<h2 class="subtitle"><?php //echo $this->__('New Products') ?></h2>
|
| 29 |
-
<?php $_columnCount = $this->getColumnCount(); ?>
|
| 30 |
-
<?php $i=0; foreach ($_products->getItems() as $_product): ?>
|
| 31 |
-
<?php if ($i++%$_columnCount==0): ?>
|
| 32 |
-
<ul class="products-grid">
|
| 33 |
-
<?php endif ?>
|
| 34 |
-
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
|
| 35 |
-
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135) ?>" width="135" height="135" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" /></a>
|
| 36 |
-
<h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h3>
|
| 37 |
-
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
|
| 38 |
-
<?php //echo $this->getPriceHtml($_product, true, '-new') ?>
|
| 39 |
-
<div class="actions">
|
| 40 |
-
<?php if($_product->isSaleable()): ?>
|
| 41 |
-
<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>
|
| 42 |
-
<?php else: ?>
|
| 43 |
-
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 44 |
-
<?php endif; ?>
|
| 45 |
-
<ul class="add-to-links">
|
| 46 |
-
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 47 |
-
<li><a href="<?php echo $this->getAddToWishlistUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
| 48 |
-
<?php endif; ?>
|
| 49 |
-
<?php if ($_compareUrl = $this->getAddToCompareUrl($_product)): ?>
|
| 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 if ($i%$_columnCount==0 || $i==count($_products)): ?>
|
| 56 |
-
</ul>
|
| 57 |
-
<?php endif ?>
|
| 58 |
-
<?php endforeach; ?>
|
| 59 |
-
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/musicplayer/template/catalog/product/view.phtml
CHANGED
|
@@ -77,7 +77,7 @@
|
|
| 77 |
</div>
|
| 78 |
<?php endif; ?>
|
| 79 |
|
| 80 |
-
<div class="short-description">
|
| 81 |
<h2><?php echo Mage::helper('musicplayer')->__('Quick select all tracks') ?></h2>
|
| 82 |
<div class="std">
|
| 83 |
<a class="link-wishlist" href="javascript:selectAll('mp3')"><?php echo Mage::helper('musicplayer')->__('mp3') ?></a>
|
| 77 |
</div>
|
| 78 |
<?php endif; ?>
|
| 79 |
|
| 80 |
+
<div class="short-description">
|
| 81 |
<h2><?php echo Mage::helper('musicplayer')->__('Quick select all tracks') ?></h2>
|
| 82 |
<div class="std">
|
| 83 |
<a class="link-wishlist" href="javascript:selectAll('mp3')"><?php echo Mage::helper('musicplayer')->__('mp3') ?></a>
|
app/design/frontend/default/musicplayer/template/downloadable/catalog/product/links.phtml
CHANGED
|
@@ -113,7 +113,7 @@
|
|
| 113 |
|
| 114 |
var dConfig = new Product.Downloadable(<?php echo $this->getJsonConfig() ?>);
|
| 115 |
|
| 116 |
-
//
|
| 117 |
var myPlaylist = [<?php echo Mage::helper('musicplayer')->returnPlaylist(); ?>];
|
| 118 |
var description = '<?php echo $this->getProduct()->getDescription() ?>';
|
| 119 |
var tracksToShow = '<?php echo ($i/2); ?>';
|
| 113 |
|
| 114 |
var dConfig = new Product.Downloadable(<?php echo $this->getJsonConfig() ?>);
|
| 115 |
|
| 116 |
+
// audiosample code
|
| 117 |
var myPlaylist = [<?php echo Mage::helper('musicplayer')->returnPlaylist(); ?>];
|
| 118 |
var description = '<?php echo $this->getProduct()->getDescription() ?>';
|
| 119 |
var tracksToShow = '<?php echo ($i/2); ?>';
|
app/design/frontend/default/musicplayer/template/downloadable/catalog/product/samples.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) 2011 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 |
+
/**
|
| 29 |
+
* Downloadable product links
|
| 30 |
+
*
|
| 31 |
+
* @see Mage_Downloadable_Block_Catalog_Product_Samples
|
| 32 |
+
*/
|
| 33 |
+
?>
|
| 34 |
+
|
| 35 |
+
<?php if ($this->hasSamples()): ?>
|
| 36 |
+
<dl class="item-options">
|
| 37 |
+
<dt><?php echo $this->getSamplesTitle() ?></dt>
|
| 38 |
+
<?php $_samples = $this->getSamples() ?>
|
| 39 |
+
<?php foreach ($_samples as $_sample): ?>
|
| 40 |
+
<dd>
|
| 41 |
+
<a href="<?php echo $this->getSampleUrl($_sample) ?>" <?php echo $this->getIsOpenInNewWindow()?'onclick="this.target=\'_blank\'"':''; ?>><?php echo $_sample->getTitle() ?></a>
|
| 42 |
+
</dd>
|
| 43 |
+
<?php endforeach; ?>
|
| 44 |
+
</dl>
|
| 45 |
+
<?php endif; ?>
|
app/etc/modules/{WMD_Musicplayer.xml → Wmd_Musicplayer.xml}
RENAMED
|
File without changes
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Wmd_Musicplayer</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://wmdextensions.com/WMD-License-Community.txt">EULA</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>Make a downloadable product from a music album that provides each track as a link. Musicplayer is displayed instead of product image and options, using product images to display with individual tracks(same index) or default product image. Product options/links are converted to playlist. Player plays mp3 / ogg sample files from downloadable link sample url.</description>
|
| 11 |
<notes>Make a downloadable product from a music album that provides each track as a link. Musicplayer is displayed instead of product image and options, using product images to display with individual tracks(same index) or default product image. Product options/links are converted to playlist. Player plays mp3 / ogg sample files from downloadable link sample url.</notes>
|
| 12 |
<authors><author><name>Dominik Wyss</name><user>justanother</user><email>info@digiswiss.ch</email></author></authors>
|
| 13 |
-
<date>
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="Wmd"><dir name="Musicplayer"><dir name="Helper"><file name="Data.php" hash="6bf498ee62e209c82ae359ca72c5097e"/></dir><dir name="etc"><file name="config.xml" hash="c5a18442a07fbb21631ae5b8f36d377f"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Wmd_Musicplayer</name>
|
| 4 |
+
<version>1.0.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://wmdextensions.com/WMD-License-Community.txt">EULA</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>Make a downloadable product from a music album that provides each track as a link. Musicplayer is displayed instead of product image and options, using product images to display with individual tracks(same index) or default product image. Product options/links are converted to playlist. Player plays mp3 / ogg sample files from downloadable link sample url.</description>
|
| 11 |
<notes>Make a downloadable product from a music album that provides each track as a link. Musicplayer is displayed instead of product image and options, using product images to display with individual tracks(same index) or default product image. Product options/links are converted to playlist. Player plays mp3 / ogg sample files from downloadable link sample url.</notes>
|
| 12 |
<authors><author><name>Dominik Wyss</name><user>justanother</user><email>info@digiswiss.ch</email></author></authors>
|
| 13 |
+
<date>2013-04-24</date>
|
| 14 |
+
<time>13:36:42</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="Wmd"><dir name="Musicplayer"><dir name="Helper"><file name="Data.php" hash="6bf498ee62e209c82ae359ca72c5097e"/></dir><dir name="etc"><file name="config.xml" hash="c5a18442a07fbb21631ae5b8f36d377f"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Wmd_Musicplayer.xml" hash="7bc0f4d4b941a043726be442720581fe"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="musicplayer"><dir name="layout"><file name="downloadable.xml" hash="90108590699b46d194a4e546cbd825eb"/></dir><dir name="template"><dir name="catalog"><dir name="product"><dir name="view"><dir name="options"><file name="wrapper.phtml" hash="5181059d351a498c842aff27287866a1"/></dir><file name="options.phtml" hash="52098ac0825ce56179ff9952956894e9"/></dir><file name="view.phtml" hash="d49bef63f843073ea3465ff6b9975257"/></dir></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="links.phtml" hash="1b67d22b8ec4f6caf865d365b7d9beab"/><file name="samples.phtml" hash="4bb362041e14ac0764f6d0cdbc3cf539"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir><dir name="js"><dir name="jquery"><file name="jquery-1.6.1.min.js" hash="a34f78c3aecd182144818eb4b7303fda"/><dir name="plugin"><file name="Instructions.txt" hash="71c0c733bc4b72679d0866c724ad0d1a"/><dir name="css"><file name="style.css" hash="15e094c3a1aab2740d2d4b3b1cb27089"/></dir><dir name="images"><file name="album-cover-bg.jpg" hash="a6399ddb2225099628fe2865426a02ce"/><file name="album-cover-highlight.png" hash="92c2f25d0a259bb910fca76fcb8e4df3"/><file name="buy-bg.png" hash="547a4bbb2241f43360d2c0c3aaa9a2a1"/><file name="dark_matter.png" hash="c4d44d7b8e26b821c22c8249a1622358"/><file name="description-more.png" hash="3de7b58a89fceb5d4111524a608d46d7"/><file name="player-bg.png" hash="0a2aed5e3de5f9361f5c054e0152591e"/><file name="player-elapsed.png" hash="ed593b850e7bc3ebca3d576489912e56"/><file name="player-next-hover.png" hash="92fbe56f0a0f2d20dbe418c4ed258c45"/><file name="player-next.png" hash="c993a614ecef0aa23dc980a6b0f2084c"/><file name="player-pause-hover.png" hash="09a9d282631f7f5cd70b73bbfc4f7c02"/><file name="player-pause.png" hash="54763f36d02271f9d04985f9d3e18533"/><file name="player-play-hover.png" hash="9a9dd1ff63345bf82dd6ecd336cad3c0"/><file name="player-play.png" hash="70092fb82711790dfda7eef5d1e7a376"/><file name="player-previous-hover.png" hash="a4c6af0edb3339f0fba464b20029b78b"/><file name="player-previous.png" hash="43e95c8ba45a5c77f3d38f84025bd148"/><file name="player-progress.png" hash="b587091052f9c3acfb6a6b4a9272896e"/><file name="rating-bar-on.png" hash="fd00a5e95897f7b9f1c03ef880e4e053"/><file name="rating-bar.png" hash="20b83e25d53e13ca7292ab23089a6813"/><file name="rating-off.png" hash="09cb14883f52a8336ea8058494fdcb2a"/><file name="rating-on.png" hash="24ec62c11287aec35c436b89a17d2839"/><file name="tracklist-bg.png" hash="0a4c7702ccf35d037d77596e246722e7"/><file name="tracklist-item-bg.png" hash="7fcde394b379c74bd41dbf53878400a5"/><file name="tracklist-more.png" hash="462ff16051835b99cfaef494e8dc04dc"/></dir><dir name="jquery-jplayer"><file name="Jplayer.swf" hash="29f093d52c759a936309f061a06889b7"/><file name="jquery.jplayer.js" hash="7d6e3b24afb43147caeba33494e07577"/></dir><file name="ttw-music-player-min.js" hash="effdc2b12f48c14bbdbfa51b7accd93f"/><file name="ttw-music-player.js" hash="56e058428535b6c92826388e3a7bcabc"/></dir></dir></dir><dir name="tracks"><file name="readme.txt" hash="91509b2549a3bf89dcc7eed38546c643"/></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Wmd_Musicplayer.csv" hash="d0c70e493f8f2ab85c8ed60a306db47c"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
